From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmLfD-0003Oo-W3 for qemu-devel@nongnu.org; Wed, 14 Oct 2015 09:00:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmLf8-0004oC-J6 for qemu-devel@nongnu.org; Wed, 14 Oct 2015 09:00:15 -0400 Received: from mailout2.w1.samsung.com ([210.118.77.12]:52626) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmLf8-0004nt-Eg for qemu-devel@nongnu.org; Wed, 14 Oct 2015 09:00:10 -0400 Received: from eucpsbgm2.samsung.com (unknown [203.254.199.245]) by mailout2.w1.samsung.com (Oracle Communications Messaging Server 7.0.5.31.0 64bit (built May 5 2014)) with ESMTP id <0NW700N3GO470J70@mailout2.w1.samsung.com> for qemu-devel@nongnu.org; Wed, 14 Oct 2015 14:00:07 +0100 (BST) From: Pavel Fedin Date: Wed, 14 Oct 2015 15:59:56 +0300 Message-id: Subject: [Qemu-devel] [PATCH v3 0/3] Make KVM/MSI code device-ID-aware List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Paolo Bonzini , "Michael S. Tsirkin" On ARM architecture ITS (Interrupt Translation Service), additionally to normal MSI data, uses also side-band device IDs. This series prepares the infrastructure to handling them. This small series is actually an extraction from vITS support RFC (https://lists.gnu.org/archive/html/qemu-devel/2015-09/msg07074.html). Nobody reviewed it so far, however some bits of it could actually be applied early. This series consists only of those parts, which do not depend on any new unreleased kernel APIs. v2 => v3: - Use official "requester ID" denotion everywhere. Renamed getter function and MemTxAttrs field. v1 => v2: - Improved commit messages, more explanations - msi_device_id() function made architecture-specific Pavel Fedin (3): kvm: Make KVM_CAP_SIGNAL_MSI globally available hw/pci: Introduce msi_requester_id() kvm: Pass PCI device pointer to MSI routing functions hw/i386/kvm/pci-assign.c | 9 +++++---- hw/pci/msi.c | 2 +- hw/vfio/pci.c | 11 ++++++----- hw/virtio/virtio-pci.c | 5 +++-- include/exec/memattrs.h | 4 ++-- include/hw/pci/msi.h | 1 + include/sysemu/kvm.h | 14 ++++++++++++-- kvm-all.c | 15 ++++++++------- kvm-stub.c | 5 +++-- stubs/Makefile.objs | 1 + stubs/msi.c | 16 ++++++++++++++++ target-arm/Makefile.objs | 1 + target-arm/msi.c | 16 ++++++++++++++++ 13 files changed, 75 insertions(+), 25 deletions(-) create mode 100644 stubs/msi.c create mode 100644 target-arm/msi.c -- 2.4.4