hw/intc/loongarch_ipi: Rename as loongson_ipi
This device will be shared among LoongArch and MIPS based Loongson machine, rename it as loongson_ipi to reflect this nature. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20240508-loongson3-ipi-v1-2-1a7b67704664@flygoat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
39b3ae11b0
commit
b4a12dfc21
@ -1242,7 +1242,9 @@ F: configs/devices/loongarch64-softmmu/default.mak
|
||||
F: hw/loongarch/
|
||||
F: include/hw/loongarch/virt.h
|
||||
F: include/hw/intc/loongarch_*.h
|
||||
F: include/hw/intc/loongson_ipi.h
|
||||
F: hw/intc/loongarch_*.c
|
||||
F: hw/intc/loongson_ipi.c
|
||||
F: include/hw/pci-host/ls7a.h
|
||||
F: hw/rtc/ls7a_rtc.c
|
||||
F: gdb-xml/loongarch*.xml
|
||||
@ -1376,10 +1378,12 @@ Loongson-3 virtual platforms
|
||||
M: Huacai Chen <chenhuacai@kernel.org>
|
||||
R: Jiaxun Yang <jiaxun.yang@flygoat.com>
|
||||
S: Maintained
|
||||
F: hw/intc/loongson_ipi.c
|
||||
F: hw/intc/loongson_liointc.c
|
||||
F: hw/mips/loongson3_bootp.c
|
||||
F: hw/mips/loongson3_bootp.h
|
||||
F: hw/mips/loongson3_virt.c
|
||||
F: include/hw/intc/loongson_ipi.h
|
||||
F: include/hw/intc/loongson_liointc.h
|
||||
F: tests/avocado/machine_mips_loongson3v.py
|
||||
|
||||
|
@ -87,7 +87,7 @@ config GOLDFISH_PIC
|
||||
config M68K_IRQC
|
||||
bool
|
||||
|
||||
config LOONGARCH_IPI
|
||||
config LOONGSON_IPI
|
||||
bool
|
||||
|
||||
config LOONGARCH_PCH_PIC
|
||||
|
347
hw/intc/loongson_ipi.c
Normal file
347
hw/intc/loongson_ipi.c
Normal file
@ -0,0 +1,347 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* Loongson ipi interrupt support
|
||||
*
|
||||
* Copyright (C) 2021 Loongson Technology Corporation Limited
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "hw/boards.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/intc/loongson_ipi.h"
|
||||
#include "hw/irq.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qemu/log.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "migration/vmstate.h"
|
||||
#include "target/loongarch/cpu.h"
|
||||
#include "trace.h"
|
||||
|
||||
static MemTxResult loongson_ipi_readl(void *opaque, hwaddr addr,
|
||||
uint64_t *data,
|
||||
unsigned size, MemTxAttrs attrs)
|
||||
{
|
||||
IPICore *s;
|
||||
LoongsonIPI *ipi = opaque;
|
||||
uint64_t ret = 0;
|
||||
int index = 0;
|
||||
|
||||
s = &ipi->cpu[attrs.requester_id];
|
||||
addr &= 0xff;
|
||||
switch (addr) {
|
||||
case CORE_STATUS_OFF:
|
||||
ret = s->status;
|
||||
break;
|
||||
case CORE_EN_OFF:
|
||||
ret = s->en;
|
||||
break;
|
||||
case CORE_SET_OFF:
|
||||
ret = 0;
|
||||
break;
|
||||
case CORE_CLEAR_OFF:
|
||||
ret = 0;
|
||||
break;
|
||||
case CORE_BUF_20 ... CORE_BUF_38 + 4:
|
||||
index = (addr - CORE_BUF_20) >> 2;
|
||||
ret = s->buf[index];
|
||||
break;
|
||||
default:
|
||||
qemu_log_mask(LOG_UNIMP, "invalid read: %x", (uint32_t)addr);
|
||||
break;
|
||||
}
|
||||
|
||||
trace_loongson_ipi_read(size, (uint64_t)addr, ret);
|
||||
*data = ret;
|
||||
return MEMTX_OK;
|
||||
}
|
||||
|
||||
static void send_ipi_data(CPULoongArchState *env, uint64_t val, hwaddr addr,
|
||||
MemTxAttrs attrs)
|
||||
{
|
||||
int i, mask = 0, data = 0;
|
||||
|
||||
/*
|
||||
* bit 27-30 is mask for byte writing,
|
||||
* if the mask is 0, we need not to do anything.
|
||||
*/
|
||||
if ((val >> 27) & 0xf) {
|
||||
data = address_space_ldl(env->address_space_iocsr, addr,
|
||||
attrs, NULL);
|
||||
for (i = 0; i < 4; i++) {
|
||||
/* get mask for byte writing */
|
||||
if (val & (0x1 << (27 + i))) {
|
||||
mask |= 0xff << (i * 8);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
data &= mask;
|
||||
data |= (val >> 32) & ~mask;
|
||||
address_space_stl(env->address_space_iocsr, addr,
|
||||
data, attrs, NULL);
|
||||
}
|
||||
|
||||
static int archid_cmp(const void *a, const void *b)
|
||||
{
|
||||
CPUArchId *archid_a = (CPUArchId *)a;
|
||||
CPUArchId *archid_b = (CPUArchId *)b;
|
||||
|
||||
return archid_a->arch_id - archid_b->arch_id;
|
||||
}
|
||||
|
||||
static CPUArchId *find_cpu_by_archid(MachineState *ms, uint32_t id)
|
||||
{
|
||||
CPUArchId apic_id, *found_cpu;
|
||||
|
||||
apic_id.arch_id = id;
|
||||
found_cpu = bsearch(&apic_id, ms->possible_cpus->cpus,
|
||||
ms->possible_cpus->len, sizeof(*ms->possible_cpus->cpus),
|
||||
archid_cmp);
|
||||
|
||||
return found_cpu;
|
||||
}
|
||||
|
||||
static CPUState *ipi_getcpu(int arch_id)
|
||||
{
|
||||
MachineState *machine = MACHINE(qdev_get_machine());
|
||||
CPUArchId *archid;
|
||||
|
||||
archid = find_cpu_by_archid(machine, arch_id);
|
||||
if (archid) {
|
||||
return CPU(archid->cpu);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static MemTxResult mail_send(uint64_t val, MemTxAttrs attrs)
|
||||
{
|
||||
uint32_t cpuid;
|
||||
hwaddr addr;
|
||||
CPUState *cs;
|
||||
|
||||
cpuid = extract32(val, 16, 10);
|
||||
cs = ipi_getcpu(cpuid);
|
||||
if (cs == NULL) {
|
||||
return MEMTX_DECODE_ERROR;
|
||||
}
|
||||
|
||||
/* override requester_id */
|
||||
addr = SMP_IPI_MAILBOX + CORE_BUF_20 + (val & 0x1c);
|
||||
attrs.requester_id = cs->cpu_index;
|
||||
send_ipi_data(&LOONGARCH_CPU(cs)->env, val, addr, attrs);
|
||||
return MEMTX_OK;
|
||||
}
|
||||
|
||||
static MemTxResult any_send(uint64_t val, MemTxAttrs attrs)
|
||||
{
|
||||
uint32_t cpuid;
|
||||
hwaddr addr;
|
||||
CPUState *cs;
|
||||
|
||||
cpuid = extract32(val, 16, 10);
|
||||
cs = ipi_getcpu(cpuid);
|
||||
if (cs == NULL) {
|
||||
return MEMTX_DECODE_ERROR;
|
||||
}
|
||||
|
||||
/* override requester_id */
|
||||
addr = val & 0xffff;
|
||||
attrs.requester_id = cs->cpu_index;
|
||||
send_ipi_data(&LOONGARCH_CPU(cs)->env, val, addr, attrs);
|
||||
return MEMTX_OK;
|
||||
}
|
||||
|
||||
static MemTxResult loongson_ipi_writel(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned size, MemTxAttrs attrs)
|
||||
{
|
||||
LoongsonIPI *ipi = opaque;
|
||||
IPICore *s;
|
||||
int index = 0;
|
||||
uint32_t cpuid;
|
||||
uint8_t vector;
|
||||
CPUState *cs;
|
||||
|
||||
s = &ipi->cpu[attrs.requester_id];
|
||||
addr &= 0xff;
|
||||
trace_loongson_ipi_write(size, (uint64_t)addr, val);
|
||||
switch (addr) {
|
||||
case CORE_STATUS_OFF:
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "can not be written");
|
||||
break;
|
||||
case CORE_EN_OFF:
|
||||
s->en = val;
|
||||
break;
|
||||
case CORE_SET_OFF:
|
||||
s->status |= val;
|
||||
if (s->status != 0 && (s->status & s->en) != 0) {
|
||||
qemu_irq_raise(s->irq);
|
||||
}
|
||||
break;
|
||||
case CORE_CLEAR_OFF:
|
||||
s->status &= ~val;
|
||||
if (s->status == 0 && s->en != 0) {
|
||||
qemu_irq_lower(s->irq);
|
||||
}
|
||||
break;
|
||||
case CORE_BUF_20 ... CORE_BUF_38 + 4:
|
||||
index = (addr - CORE_BUF_20) >> 2;
|
||||
s->buf[index] = val;
|
||||
break;
|
||||
case IOCSR_IPI_SEND:
|
||||
cpuid = extract32(val, 16, 10);
|
||||
/* IPI status vector */
|
||||
vector = extract8(val, 0, 5);
|
||||
cs = ipi_getcpu(cpuid);
|
||||
if (cs == NULL) {
|
||||
return MEMTX_DECODE_ERROR;
|
||||
}
|
||||
|
||||
/* override requester_id */
|
||||
attrs.requester_id = cs->cpu_index;
|
||||
loongson_ipi_writel(ipi, CORE_SET_OFF, BIT(vector), 4, attrs);
|
||||
break;
|
||||
default:
|
||||
qemu_log_mask(LOG_UNIMP, "invalid write: %x", (uint32_t)addr);
|
||||
break;
|
||||
}
|
||||
|
||||
return MEMTX_OK;
|
||||
}
|
||||
|
||||
static const MemoryRegionOps loongson_ipi_ops = {
|
||||
.read_with_attrs = loongson_ipi_readl,
|
||||
.write_with_attrs = loongson_ipi_writel,
|
||||
.impl.min_access_size = 4,
|
||||
.impl.max_access_size = 4,
|
||||
.valid.min_access_size = 4,
|
||||
.valid.max_access_size = 8,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
/* mail send and any send only support writeq */
|
||||
static MemTxResult loongson_ipi_writeq(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned size, MemTxAttrs attrs)
|
||||
{
|
||||
MemTxResult ret = MEMTX_OK;
|
||||
|
||||
addr &= 0xfff;
|
||||
switch (addr) {
|
||||
case MAIL_SEND_OFFSET:
|
||||
ret = mail_send(val, attrs);
|
||||
break;
|
||||
case ANY_SEND_OFFSET:
|
||||
ret = any_send(val, attrs);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const MemoryRegionOps loongson_ipi64_ops = {
|
||||
.write_with_attrs = loongson_ipi_writeq,
|
||||
.impl.min_access_size = 8,
|
||||
.impl.max_access_size = 8,
|
||||
.valid.min_access_size = 8,
|
||||
.valid.max_access_size = 8,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
static void loongson_ipi_realize(DeviceState *dev, Error **errp)
|
||||
{
|
||||
LoongsonIPI *s = LOONGSON_IPI(dev);
|
||||
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
||||
int i;
|
||||
|
||||
if (s->num_cpu == 0) {
|
||||
error_setg(errp, "num-cpu must be at least 1");
|
||||
return;
|
||||
}
|
||||
|
||||
memory_region_init_io(&s->ipi_iocsr_mem, OBJECT(dev), &loongson_ipi_ops,
|
||||
s, "loongson_ipi_iocsr", 0x48);
|
||||
|
||||
/* loongson_ipi_iocsr performs re-entrant IO through ipi_send */
|
||||
s->ipi_iocsr_mem.disable_reentrancy_guard = true;
|
||||
|
||||
sysbus_init_mmio(sbd, &s->ipi_iocsr_mem);
|
||||
|
||||
memory_region_init_io(&s->ipi64_iocsr_mem, OBJECT(dev),
|
||||
&loongson_ipi64_ops,
|
||||
s, "loongson_ipi64_iocsr", 0x118);
|
||||
sysbus_init_mmio(sbd, &s->ipi64_iocsr_mem);
|
||||
|
||||
s->cpu = g_new0(IPICore, s->num_cpu);
|
||||
if (s->cpu == NULL) {
|
||||
error_setg(errp, "Memory allocation for ExtIOICore faile");
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < s->num_cpu; i++) {
|
||||
qdev_init_gpio_out(dev, &s->cpu[i].irq, 1);
|
||||
}
|
||||
}
|
||||
|
||||
static const VMStateDescription vmstate_ipi_core = {
|
||||
.name = "ipi-single",
|
||||
.version_id = 2,
|
||||
.minimum_version_id = 2,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT32(status, IPICore),
|
||||
VMSTATE_UINT32(en, IPICore),
|
||||
VMSTATE_UINT32(set, IPICore),
|
||||
VMSTATE_UINT32(clear, IPICore),
|
||||
VMSTATE_UINT32_ARRAY(buf, IPICore, IPI_MBX_NUM * 2),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static const VMStateDescription vmstate_loongson_ipi = {
|
||||
.name = TYPE_LOONGSON_IPI,
|
||||
.version_id = 2,
|
||||
.minimum_version_id = 2,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_STRUCT_VARRAY_POINTER_UINT32(cpu, LoongsonIPI, num_cpu,
|
||||
vmstate_ipi_core, IPICore),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static Property ipi_properties[] = {
|
||||
DEFINE_PROP_UINT32("num-cpu", LoongsonIPI, num_cpu, 1),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static void loongson_ipi_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
|
||||
dc->realize = loongson_ipi_realize;
|
||||
device_class_set_props(dc, ipi_properties);
|
||||
dc->vmsd = &vmstate_loongson_ipi;
|
||||
}
|
||||
|
||||
static void loongson_ipi_finalize(Object *obj)
|
||||
{
|
||||
LoongsonIPI *s = LOONGSON_IPI(obj);
|
||||
|
||||
g_free(s->cpu);
|
||||
}
|
||||
|
||||
static const TypeInfo loongson_ipi_info = {
|
||||
.name = TYPE_LOONGSON_IPI,
|
||||
.parent = TYPE_SYS_BUS_DEVICE,
|
||||
.instance_size = sizeof(LoongsonIPI),
|
||||
.class_init = loongson_ipi_class_init,
|
||||
.instance_finalize = loongson_ipi_finalize,
|
||||
};
|
||||
|
||||
static void loongson_ipi_register_types(void)
|
||||
{
|
||||
type_register_static(&loongson_ipi_info);
|
||||
}
|
||||
|
||||
type_init(loongson_ipi_register_types)
|
@ -68,7 +68,7 @@ specific_ss.add(when: 'CONFIG_XIVE', if_true: files('xive.c'))
|
||||
specific_ss.add(when: ['CONFIG_KVM', 'CONFIG_XIVE'],
|
||||
if_true: files('spapr_xive_kvm.c'))
|
||||
specific_ss.add(when: 'CONFIG_M68K_IRQC', if_true: files('m68k_irqc.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_IPI', if_true: files('loongarch_ipi.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGSON_IPI', if_true: files('loongson_ipi.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_PCH_PIC', if_true: files('loongarch_pch_pic.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'))
|
||||
|
@ -291,9 +291,9 @@ sh_intc_read(unsigned size, uint64_t offset, unsigned long val) "size %u 0x%" PR
|
||||
sh_intc_write(unsigned size, uint64_t offset, unsigned long val) "size %u 0x%" PRIx64 " <- 0x%lx"
|
||||
sh_intc_set(int id, int enable) "setting interrupt group %d to %d"
|
||||
|
||||
# loongarch_ipi.c
|
||||
loongarch_ipi_read(unsigned size, uint64_t addr, uint64_t val) "size: %u addr: 0x%"PRIx64 "val: 0x%"PRIx64
|
||||
loongarch_ipi_write(unsigned size, uint64_t addr, uint64_t val) "size: %u addr: 0x%"PRIx64 "val: 0x%"PRIx64
|
||||
# loongson_ipi.c
|
||||
loongson_ipi_read(unsigned size, uint64_t addr, uint64_t val) "size: %u addr: 0x%"PRIx64 "val: 0x%"PRIx64
|
||||
loongson_ipi_write(unsigned size, uint64_t addr, uint64_t val) "size: %u addr: 0x%"PRIx64 "val: 0x%"PRIx64
|
||||
# loongarch_pch_pic.c
|
||||
loongarch_pch_pic_irq_handler(int irq, int level) "irq %d level %d"
|
||||
loongarch_pch_pic_low_readw(unsigned size, uint64_t addr, uint64_t val) "size: %u addr: 0x%"PRIx64 "val: 0x%" PRIx64
|
||||
|
@ -10,7 +10,7 @@ config LOONGARCH_VIRT
|
||||
select SERIAL
|
||||
select VIRTIO_PCI
|
||||
select PLATFORM_BUS
|
||||
select LOONGARCH_IPI
|
||||
select LOONGSON_IPI
|
||||
select LOONGARCH_PCH_PIC
|
||||
select LOONGARCH_PCH_MSI
|
||||
select LOONGARCH_EXTIOI
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "net/net.h"
|
||||
#include "hw/loader.h"
|
||||
#include "elf.h"
|
||||
#include "hw/intc/loongarch_ipi.h"
|
||||
#include "hw/intc/loongson_ipi.h"
|
||||
#include "hw/intc/loongarch_extioi.h"
|
||||
#include "hw/intc/loongarch_pch_pic.h"
|
||||
#include "hw/intc/loongarch_pch_msi.h"
|
||||
@ -695,7 +695,7 @@ static void virt_irq_init(LoongArchVirtMachineState *lvms)
|
||||
*/
|
||||
|
||||
/* Create IPI device */
|
||||
ipi = qdev_new(TYPE_LOONGARCH_IPI);
|
||||
ipi = qdev_new(TYPE_LOONGSON_IPI);
|
||||
qdev_prop_set_uint32(ipi, "num-cpu", ms->smp.cpus);
|
||||
sysbus_realize_and_unref(SYS_BUS_DEVICE(ipi), &error_fatal);
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* LoongArch ipi interrupt header files
|
||||
* Loongson ipi interrupt header files
|
||||
*
|
||||
* Copyright (C) 2021 Loongson Technology Corporation Limited
|
||||
*/
|
||||
|
||||
#ifndef HW_LOONGARCH_IPI_H
|
||||
#define HW_LOONGARCH_IPI_H
|
||||
#ifndef HW_LOONGSON_IPI_H
|
||||
#define HW_LOONGSON_IPI_H
|
||||
|
||||
#include "hw/sysbus.h"
|
||||
|
||||
@ -30,8 +30,8 @@
|
||||
|
||||
#define IPI_MBX_NUM 4
|
||||
|
||||
#define TYPE_LOONGARCH_IPI "loongarch_ipi"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(LoongArchIPI, LOONGARCH_IPI)
|
||||
#define TYPE_LOONGSON_IPI "loongson_ipi"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(LoongsonIPI, LOONGSON_IPI)
|
||||
|
||||
typedef struct IPICore {
|
||||
uint32_t status;
|
||||
@ -43,7 +43,7 @@ typedef struct IPICore {
|
||||
qemu_irq irq;
|
||||
} IPICore;
|
||||
|
||||
struct LoongArchIPI {
|
||||
struct LoongsonIPI {
|
||||
SysBusDevice parent_obj;
|
||||
MemoryRegion ipi_iocsr_mem;
|
||||
MemoryRegion ipi64_iocsr_mem;
|
@ -11,7 +11,7 @@
|
||||
#include "target/loongarch/cpu.h"
|
||||
#include "hw/boards.h"
|
||||
#include "qemu/queue.h"
|
||||
#include "hw/intc/loongarch_ipi.h"
|
||||
#include "hw/intc/loongson_ipi.h"
|
||||
#include "hw/block/flash.h"
|
||||
#include "hw/loongarch/boot.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user