hw/ppc/spapr: Move code related to "ibm,pa-features" to a separate function
[qemu/kevin.git] / hw / intc / arm_gicv3_its_kvm.c
blobfc246e0cb506e9aa230925f9e23ac0740e2ab5a9
1 /*
2 * KVM-based ITS implementation for a GICv3-based system
4 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
5 * Written by Pavel Fedin <p.fedin@samsung.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "qapi/error.h"
23 #include "hw/intc/arm_gicv3_its_common.h"
24 #include "sysemu/sysemu.h"
25 #include "sysemu/kvm.h"
26 #include "kvm_arm.h"
27 #include "migration/migration.h"
29 #define TYPE_KVM_ARM_ITS "arm-its-kvm"
30 #define KVM_ARM_ITS(obj) OBJECT_CHECK(GICv3ITSState, (obj), TYPE_KVM_ARM_ITS)
32 static int kvm_its_send_msi(GICv3ITSState *s, uint32_t value, uint16_t devid)
34 struct kvm_msi msi;
36 if (unlikely(!s->translater_gpa_known)) {
37 MemoryRegion *mr = &s->iomem_its_translation;
38 MemoryRegionSection mrs;
40 mrs = memory_region_find(mr, 0, 1);
41 memory_region_unref(mrs.mr);
42 s->gits_translater_gpa = mrs.offset_within_address_space + 0x40;
43 s->translater_gpa_known = true;
46 msi.address_lo = extract64(s->gits_translater_gpa, 0, 32);
47 msi.address_hi = extract64(s->gits_translater_gpa, 32, 32);
48 msi.data = le32_to_cpu(value);
49 msi.flags = KVM_MSI_VALID_DEVID;
50 msi.devid = devid;
51 memset(msi.pad, 0, sizeof(msi.pad));
53 return kvm_vm_ioctl(kvm_state, KVM_SIGNAL_MSI, &msi);
56 static void kvm_arm_its_realize(DeviceState *dev, Error **errp)
58 GICv3ITSState *s = ARM_GICV3_ITS_COMMON(dev);
60 s->dev_fd = kvm_create_device(kvm_state, KVM_DEV_TYPE_ARM_VGIC_ITS, false);
61 if (s->dev_fd < 0) {
62 error_setg_errno(errp, -s->dev_fd, "error creating in-kernel ITS");
63 return;
66 /* explicit init of the ITS */
67 kvm_device_access(s->dev_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
68 KVM_DEV_ARM_VGIC_CTRL_INIT, NULL, true);
70 /* register the base address */
71 kvm_arm_register_device(&s->iomem_its_cntrl, -1, KVM_DEV_ARM_VGIC_GRP_ADDR,
72 KVM_VGIC_ITS_ADDR_TYPE, s->dev_fd);
74 gicv3_its_init_mmio(s, NULL);
77 * Block migration of a KVM GICv3 ITS device: the API for saving and
78 * restoring the state in the kernel is not yet available
80 error_setg(&s->migration_blocker, "vITS migration is not implemented");
81 migrate_add_blocker(s->migration_blocker);
83 kvm_msi_use_devid = true;
84 kvm_gsi_direct_mapping = false;
85 kvm_msi_via_irqfd_allowed = kvm_irqfds_enabled();
88 static void kvm_arm_its_init(Object *obj)
90 GICv3ITSState *s = KVM_ARM_ITS(obj);
92 object_property_add_link(obj, "parent-gicv3",
93 "kvm-arm-gicv3", (Object **)&s->gicv3,
94 object_property_allow_set_link,
95 OBJ_PROP_LINK_UNREF_ON_RELEASE,
96 &error_abort);
99 static void kvm_arm_its_class_init(ObjectClass *klass, void *data)
101 DeviceClass *dc = DEVICE_CLASS(klass);
102 GICv3ITSCommonClass *icc = ARM_GICV3_ITS_COMMON_CLASS(klass);
104 dc->realize = kvm_arm_its_realize;
105 icc->send_msi = kvm_its_send_msi;
108 static const TypeInfo kvm_arm_its_info = {
109 .name = TYPE_KVM_ARM_ITS,
110 .parent = TYPE_ARM_GICV3_ITS_COMMON,
111 .instance_size = sizeof(GICv3ITSState),
112 .instance_init = kvm_arm_its_init,
113 .class_init = kvm_arm_its_class_init,
116 static void kvm_arm_its_register_types(void)
118 type_register_static(&kvm_arm_its_info);
121 type_init(kvm_arm_its_register_types)