All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
To: joro@8bytes.org
Cc: paul@codesourcery.com, blauwirbel@gmail.com,
	anthony@codemonkey.ws, avi@redhat.com, kvm@vger.kernel.org,
	qemu-devel@nongnu.org,
	Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Subject: [PATCH 0/7] AMD IOMMU emulation patches v3
Date: Sun, 15 Aug 2010 22:27:15 +0300	[thread overview]
Message-ID: <1281900442-29971-1-git-send-email-eduard.munteanu@linux360.ro> (raw)

Hi,

Please have a look at these and merge if you wish. I hope I've addressed the
issues people have raised.

Some changes from the previous RFC:
- included and updated the other two device patches
- moved map registration and invalidation management into PCI code
- AMD IOMMU emulation is always enabled (no more configure options)
- cleaned up code, I now use typedefs as suggested
- event logging cleanups

BTW, the change to pci_regs.h is properly aligned but the original file contains
tabs.


        Cheers,
        Eduard

Eduard - Gabriel Munteanu (7):
  pci: add range_covers_range()
  pci: memory access API and IOMMU support
  AMD IOMMU emulation
  ide: use the PCI memory access interface
  rtl8139: use the PCI memory access interface
  eepro100: use the PCI memory access interface
  ac97: use the PCI memory access interface

 Makefile.target   |    2 +
 dma-helpers.c     |   46 ++++-
 dma.h             |   21 ++-
 hw/ac97.c         |    6 +-
 hw/amd_iommu.c    |  688 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 hw/eepro100.c     |   78 ++++---
 hw/ide/core.c     |   15 +-
 hw/ide/internal.h |   39 +++
 hw/ide/pci.c      |    7 +
 hw/pc.c           |    2 +
 hw/pci.c          |  197 +++++++++++++++-
 hw/pci.h          |   84 +++++++
 hw/pci_ids.h      |    2 +
 hw/pci_regs.h     |    1 +
 hw/rtl8139.c      |   99 +++++----
 qemu-common.h     |    1 +
 16 files changed, 1191 insertions(+), 97 deletions(-)
 create mode 100644 hw/amd_iommu.c


WARNING: multiple messages have this Message-ID (diff)
From: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
To: joro@8bytes.org
Cc: kvm@vger.kernel.org, qemu-devel@nongnu.org, blauwirbel@gmail.com,
	paul@codesourcery.com,
	Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>,
	avi@redhat.com
Subject: [Qemu-devel] [PATCH 0/7] AMD IOMMU emulation patches v3
Date: Sun, 15 Aug 2010 22:27:15 +0300	[thread overview]
Message-ID: <1281900442-29971-1-git-send-email-eduard.munteanu@linux360.ro> (raw)

Hi,

Please have a look at these and merge if you wish. I hope I've addressed the
issues people have raised.

Some changes from the previous RFC:
- included and updated the other two device patches
- moved map registration and invalidation management into PCI code
- AMD IOMMU emulation is always enabled (no more configure options)
- cleaned up code, I now use typedefs as suggested
- event logging cleanups

BTW, the change to pci_regs.h is properly aligned but the original file contains
tabs.


        Cheers,
        Eduard

Eduard - Gabriel Munteanu (7):
  pci: add range_covers_range()
  pci: memory access API and IOMMU support
  AMD IOMMU emulation
  ide: use the PCI memory access interface
  rtl8139: use the PCI memory access interface
  eepro100: use the PCI memory access interface
  ac97: use the PCI memory access interface

 Makefile.target   |    2 +
 dma-helpers.c     |   46 ++++-
 dma.h             |   21 ++-
 hw/ac97.c         |    6 +-
 hw/amd_iommu.c    |  688 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 hw/eepro100.c     |   78 ++++---
 hw/ide/core.c     |   15 +-
 hw/ide/internal.h |   39 +++
 hw/ide/pci.c      |    7 +
 hw/pc.c           |    2 +
 hw/pci.c          |  197 +++++++++++++++-
 hw/pci.h          |   84 +++++++
 hw/pci_ids.h      |    2 +
 hw/pci_regs.h     |    1 +
 hw/rtl8139.c      |   99 +++++----
 qemu-common.h     |    1 +
 16 files changed, 1191 insertions(+), 97 deletions(-)
 create mode 100644 hw/amd_iommu.c

             reply	other threads:[~2010-08-15 19:30 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-15 19:27 Eduard - Gabriel Munteanu [this message]
2010-08-15 19:27 ` [Qemu-devel] [PATCH 0/7] AMD IOMMU emulation patches v3 Eduard - Gabriel Munteanu
2010-08-15 19:27 ` [PATCH 1/7] pci: add range_covers_range() Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-18  4:39   ` Isaku Yamahata
2010-08-18  4:39     ` Isaku Yamahata
2010-08-15 19:27 ` [PATCH 2/7] pci: memory access API and IOMMU support Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-18  5:02   ` Isaku Yamahata
2010-08-18  5:02     ` Isaku Yamahata
2010-08-15 19:27 ` [PATCH 3/7] AMD IOMMU emulation Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-16 17:57   ` Blue Swirl
2010-08-16 17:57     ` [Qemu-devel] " Blue Swirl
2010-08-15 19:27 ` [PATCH 4/7] ide: use the PCI memory access interface Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-15 19:27 ` [PATCH 5/7] rtl8139: " Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-15 19:27 ` [PATCH 6/7] eepro100: " Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-15 19:27 ` [PATCH 7/7] ac97: " Eduard - Gabriel Munteanu
2010-08-15 19:27   ` [Qemu-devel] " Eduard - Gabriel Munteanu
2010-08-15 20:42   ` malc
2010-08-15 20:42     ` malc
2010-08-16  1:47 ` [PATCH 0/7] AMD IOMMU emulation patches v3 Anthony Liguori
2010-08-16  1:47   ` [Qemu-devel] " Anthony Liguori

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=1281900442-29971-1-git-send-email-eduard.munteanu@linux360.ro \
    --to=eduard.munteanu@linux360.ro \
    --cc=anthony@codemonkey.ws \
    --cc=avi@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=joro@8bytes.org \
    --cc=kvm@vger.kernel.org \
    --cc=paul@codesourcery.com \
    --cc=qemu-devel@nongnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.