qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Alex Williamson <alex.williamson@redhat.com>
To: torvalds@linux-foundation.org
Cc: B07421@freescale.com, kvm@vger.kernel.org, aik@ozlabs.ru,
	qemu-devel@nongnu.org, aafabbri@cisco.com, ddutile@redhat.com,
	agraf@suse.de, avi@redhat.com, linux-pci@vger.kernel.org,
	konrad.wilk@oracle.com, joerg.roedel@amd.com,
	chrisw@sous-sol.org, B08248@freescale.com,
	alex.williamson@redhat.com, bhelgaas@google.com,
	david@gibson.dropbear.id.au, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, iommu@lists.linux-foundation.org,
	dwmw2@infradead.org, benve@cisco.com
Subject: [Qemu-devel] [GIT PULL (PATCH 0/4)] VFIO driver for v3.6
Date: Wed, 25 Jul 2012 08:53:06 -0600	[thread overview]
Message-ID: <20120725142254.12800.61860.stgit@bling.home> (raw)

Hi Linus,

This series includes the VFIO userspace driver interface for the
3.6 kernel merge window.  This driver is intended to provide a
secure interface for device access using IOMMU protection for
applications like assignment of physical devices to virtual
machines.  Qemu will be the first user of this interface, enabling
assignment of PCI devices to Qemu guests.  This interface is
intended to eventually replace the x86-specific assignment mechanism
currently available in KVM.  This interface has the advantage of
being more secure, by working with IOMMU groups to ensure device
isolation and providing it's own filtered resource access mechanism,
and also more flexible, in not being x86 or KVM specific (extensions
to enable POWER are already working).

As a new driver, I'm including both the individual patches in email,
as well as a branch to pull from:

git://github.com/awilliam/linux-vfio.git for-linus

This driver is originally the work of Tom Lyon, but has since been
handed over to me and gone through a complete overhaul thanks to the
input from David Gibson, Ben Herrenschmidt, Chris Wright, Joerg
Roedel, and others.  This driver has been available in linux-next for
the last month.  Thanks,

Alex

---

Alex Williamson (4):
      vfio: Add PCI device driver
      vfio: Type1 IOMMU implementation
      vfio: Add documentation
      vfio: VFIO core


 Documentation/ioctl/ioctl-number.txt |    1 
 Documentation/vfio.txt               |  314 +++++++
 MAINTAINERS                          |    8 
 drivers/Kconfig                      |    2 
 drivers/Makefile                     |    1 
 drivers/vfio/Kconfig                 |   16 
 drivers/vfio/Makefile                |    3 
 drivers/vfio/pci/Kconfig             |    8 
 drivers/vfio/pci/Makefile            |    4 
 drivers/vfio/pci/vfio_pci.c          |  579 +++++++++++++
 drivers/vfio/pci/vfio_pci_config.c   | 1540 ++++++++++++++++++++++++++++++++++
 drivers/vfio/pci/vfio_pci_intrs.c    |  740 ++++++++++++++++
 drivers/vfio/pci/vfio_pci_private.h  |   91 ++
 drivers/vfio/pci/vfio_pci_rdwr.c     |  269 ++++++
 drivers/vfio/vfio.c                  | 1420 +++++++++++++++++++++++++++++++
 drivers/vfio/vfio_iommu_type1.c      |  753 +++++++++++++++++
 include/linux/vfio.h                 |  445 ++++++++++
 17 files changed, 6194 insertions(+)
 create mode 100644 Documentation/vfio.txt
 create mode 100644 drivers/vfio/Kconfig
 create mode 100644 drivers/vfio/Makefile
 create mode 100644 drivers/vfio/pci/Kconfig
 create mode 100644 drivers/vfio/pci/Makefile
 create mode 100644 drivers/vfio/pci/vfio_pci.c
 create mode 100644 drivers/vfio/pci/vfio_pci_config.c
 create mode 100644 drivers/vfio/pci/vfio_pci_intrs.c
 create mode 100644 drivers/vfio/pci/vfio_pci_private.h
 create mode 100644 drivers/vfio/pci/vfio_pci_rdwr.c
 create mode 100644 drivers/vfio/vfio.c
 create mode 100644 drivers/vfio/vfio_iommu_type1.c
 create mode 100644 include/linux/vfio.h

             reply	other threads:[~2012-07-25 14:53 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-25 14:53 Alex Williamson [this message]
2012-07-25 14:53 ` [Qemu-devel] [PATCH 1/4] vfio: VFIO core Alex Williamson
2012-07-25 14:53 ` [Qemu-devel] [PATCH 2/4] vfio: Add documentation Alex Williamson
2012-07-25 14:53 ` [Qemu-devel] [PATCH 3/4] vfio: Type1 IOMMU implementation Alex Williamson
2012-07-25 14:53 ` [Qemu-devel] [PATCH 4/4] vfio: Add PCI device driver Alex Williamson
2012-07-26 16:14 ` [Qemu-devel] [GIT PULL (PATCH 0/4) v2] VFIO driver for v3.6 Alex Williamson
2012-07-27  5:32 ` [Qemu-devel] [GIT PULL (PATCH 0/4)] " Paul Mackerras
2012-07-30 23:17   ` Alex Williamson
2012-07-31  5:11     ` Linus Torvalds
2012-07-31 14:53       ` Alex Williamson
2012-07-31 16:33         ` Alex Williamson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120725142254.12800.61860.stgit@bling.home \
    --to=alex.williamson@redhat.com \
    --cc=B07421@freescale.com \
    --cc=B08248@freescale.com \
    --cc=aafabbri@cisco.com \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=avi@redhat.com \
    --cc=benve@cisco.com \
    --cc=bhelgaas@google.com \
    --cc=chrisw@sous-sol.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=ddutile@redhat.com \
    --cc=dwmw2@infradead.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=iommu@lists.linux-foundation.org \
    --cc=joerg.roedel@amd.com \
    --cc=konrad.wilk@oracle.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).