qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [V9 0/4] AMD IOMMU
@ 2016-04-24 22:12 David Kiarie
  2016-04-24 22:12 ` [Qemu-devel] [V9 1/4] hw/i386: Introduce " David Kiarie
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: David Kiarie @ 2016-04-24 22:12 UTC (permalink / raw)
  To: qemu-devel
  Cc: valentine.sinitsyn, marcel, mst, jan.kizska, imammedo,
	David Kiarie

Hi all, 

The current AMD IOMMU patches that fixes Igor's comments. I got rid of structs and instead 
added individual integer fields into the table data directly, as suggested.

I have also got rid of some un-used macros and fixed a few other miscellaneous things.

David Kiarie (4):
  hw/i386: Introduce AMD IOMMU
  hw/i386: ACPI table for AMD IOMMU
  hw/core: Add AMD IOMMU to machine properties
  hw/pci-host: Emulate AMD IOMMU

 hw/acpi/aml-build.c           |    2 +-
 hw/acpi/core.c                |   13 -
 hw/core/machine.c             |   32 +-
 hw/i386/Makefile.objs         |    1 +
 hw/i386/acpi-build.c          |  101 ++-
 hw/i386/amd_iommu.c           | 1426 +++++++++++++++++++++++++++++++++++++++++
 hw/i386/amd_iommu.h           |  398 ++++++++++++
 hw/pci-host/q35.c             |   21 +-
 include/hw/acpi/acpi-defs.h   |   14 +
 include/hw/acpi/acpi.h        |   16 +
 include/hw/acpi/aml-build.h   |    1 +
 include/hw/boards.h           |    1 +
 include/hw/i386/intel_iommu.h |    1 +
 include/hw/pci/pci.h          |    2 +
 qemu-options.hx               |    7 +-
 util/qemu-config.c            |    8 +-
 16 files changed, 2010 insertions(+), 34 deletions(-)
 create mode 100644 hw/i386/amd_iommu.c
 create mode 100644 hw/i386/amd_iommu.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [V9 0/4] AMD IOMMU
@ 2016-04-29 22:42 David Kiarie
       [not found] ` <1461969763-5193-5-git-send-email-davidkiarie4@gmail.com>
  0 siblings, 1 reply; 15+ messages in thread
From: David Kiarie @ 2016-04-29 22:42 UTC (permalink / raw)
  To: qemu-devel
  Cc: jan.kiszka, valentine.sinitsyn, imammedo, mst, marcel, peterx,
	David Kiarie

These series adds AMD IOMMU support to Qemu. It's currently in the 9th version.

In this series I have (hopefully) addressed all the comments made in the previous version.
I have also tested and successfully passed-through PCI device 'ac97' with more devices to be tested.


David Kiarie (4):
  hw/i386: Introduce AMD IOMMU
  hw/i386: ACPI table for AMD IOMMU
  hw/core: Add AMD IOMMU to machine properties
  hw/pci-host: Emulate AMD IOMMU

 hw/acpi/aml-build.c           |    2 +-
 hw/acpi/core.c                |   13 -
 hw/core/machine.c             |   33 +-
 hw/i386/Makefile.objs         |    1 +
 hw/i386/acpi-build.c          |   93 ++-
 hw/i386/amd_iommu.c           | 1426 +++++++++++++++++++++++++++++++++++++++++
 hw/i386/amd_iommu.h           |  398 ++++++++++++
 hw/pci-host/q35.c             |   25 +-
 include/hw/acpi/acpi-defs.h   |   14 +
 include/hw/acpi/acpi.h        |   16 +
 include/hw/acpi/aml-build.h   |    1 +
 include/hw/boards.h           |    7 +
 include/hw/i386/intel_iommu.h |    1 +
 include/hw/pci/pci.h          |    2 +
 qemu-options.hx               |    7 +-
 util/qemu-config.c            |    8 +-
 16 files changed, 2012 insertions(+), 35 deletions(-)
 create mode 100644 hw/i386/amd_iommu.c
 create mode 100644 hw/i386/amd_iommu.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2016-05-04  7:50 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-24 22:12 [Qemu-devel] [V9 0/4] AMD IOMMU David Kiarie
2016-04-24 22:12 ` [Qemu-devel] [V9 1/4] hw/i386: Introduce " David Kiarie
2016-04-24 22:12 ` [Qemu-devel] [V9 2/4] hw/i386: ACPI table for " David Kiarie
2016-04-29  6:09   ` Jan Kiszka
2016-04-29  8:28     ` David Kiarie
2016-05-04  7:50       ` Valentine Sinitsyn
2016-05-04  7:45     ` Valentine Sinitsyn
2016-04-24 22:12 ` [Qemu-devel] [V9 3/4] hw/core: Add AMD IOMMU to machine properties David Kiarie
2016-04-25  3:00   ` Peter Xu
2016-04-24 22:12 ` [Qemu-devel] [V9 4/4] hw/pci-host: Emulate AMD IOMMU David Kiarie
2016-04-25  3:06   ` Peter Xu
2016-04-24 22:16 ` [Qemu-devel] [V9 0/4] " David Kiarie
2016-04-25  7:13   ` Jan Kiszka
2016-04-25 12:53 ` Marcel Apfelbaum
  -- strict thread matches above, loose matches on Subject: below --
2016-04-29 22:42 David Kiarie
     [not found] ` <1461969763-5193-5-git-send-email-davidkiarie4@gmail.com>
2016-05-01  9:15   ` [Qemu-devel] [V9 4/4] hw/pci-host: Emulate " Marcel Apfelbaum

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).