qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/21] Memory/IOMMU patches, part 3: IOMMU implementation
@ 2013-05-30 21:16 Paolo Bonzini
  2013-05-30 21:16 ` [Qemu-devel] [PATCH 01/21] memory: Introduce address_space_lookup_region Paolo Bonzini
                   ` (20 more replies)
  0 siblings, 21 replies; 46+ messages in thread
From: Paolo Bonzini @ 2013-05-30 21:16 UTC (permalink / raw)
  To: qemu-devel

This part includes Jan's subpage reorganization (needed to unify MMIO
and PIO dispatch) and the implementation of IOMMU regions.  Compared to
previous submissions, there is full support for 64-bit-sized IOMMU
regions, so I'm reverting the patches from part 1 that reduced the
maximum size of sections to 62 bits.

Patches 1-10 are the new ones.

Alexey Kardashevskiy (1):
  memory: give name to every AddressSpace

Avi Kivity (3):
  memory: iommu support
  vfio: abort if an emulated iommu is used
  pci: use memory core for iommu support

David Gibson (1):
  memory: Add iommu map/unmap notifiers

Jan Kiszka (4):
  memory: Introduce address_space_lookup_region
  exec: Allow unaligned address_space_rw
  exec: Resolve subpages in one step except for IOTLB fills
  exec: Implement subpage_read/write via address_space_rw

Paolo Bonzini (12):
  memory: move private types to exec.c
  exec: return MemoryRegion from address_space_translate
  Revert "memory: limit sections in the radix tree to the actual address
    space size"
  Revert "s390x: reduce TARGET_PHYS_ADDR_SPACE_BITS to 62"
  exec: reorganize mem_add to match Int128 version
  memory: make section size a 128-bit integer
  spapr: convert TCE API to use an opaque type
  spapr: make IOMMU translation go through IOMMUTLBEntry
  spapr: use memory core for iommu support
  dma: eliminate old-style IOMMU support
  spapr_vio: take care of creating our own AddressSpace/DMAContext
  dma: eliminate DMAContext

 cputlb.c                       |   4 +-
 dma-helpers.c                  | 190 +----------------
 exec.c                         | 456 ++++++++++++++++++++++-------------------
 hw/core/loader.c               |   2 +-
 hw/display/exynos4210_fimd.c   |   4 +-
 hw/display/framebuffer.c       |   3 +-
 hw/dma/pl330.c                 |   8 +-
 hw/ide/ahci.c                  |  18 +-
 hw/ide/ahci.h                  |   4 +-
 hw/ide/ich.c                   |   2 +-
 hw/ide/macio.c                 |   4 +-
 hw/misc/vfio.c                 |   6 +-
 hw/pci/pci.c                   |  44 ++--
 hw/ppc/spapr_iommu.c           | 119 ++++++-----
 hw/ppc/spapr_pci.c             |  16 +-
 hw/ppc/spapr_vio.c             |  13 +-
 hw/scsi/megasas.c              |   4 +-
 hw/scsi/virtio-scsi.c          |   2 +-
 hw/scsi/vmw_pvscsi.c           |   2 +-
 hw/sd/sdhci.c                  |  22 +-
 hw/usb/hcd-ehci-pci.c          |   4 +-
 hw/usb/hcd-ehci-sysbus.c       |   2 +-
 hw/usb/hcd-ehci.c              |  12 +-
 hw/usb/hcd-ehci.h              |   2 +-
 hw/usb/hcd-ohci.c              |  30 +--
 hw/usb/libhw.c                 |   4 +-
 hw/virtio/dataplane/hostmem.c  |   2 +-
 hw/virtio/vhost.c              |   4 +-
 hw/virtio/virtio-balloon.c     |   2 +-
 include/exec/cputlb.h          |   4 +
 include/exec/memory-internal.h |  15 --
 include/exec/memory.h          | 114 ++++++++++-
 include/hw/pci-host/spapr.h    |   3 +-
 include/hw/pci/pci.h           |  21 +-
 include/hw/pci/pci_bus.h       |   4 +-
 include/hw/ppc/spapr.h         |  12 +-
 include/hw/ppc/spapr_vio.h     |  21 +-
 include/qemu/int128.h          |  10 +
 include/sysemu/dma.h           | 144 ++++---------
 kvm-all.c                      |  23 ++-
 memory.c                       |  56 +++--
 target-s390x/cpu.h             |   5 +-
 xen-all.c                      |   6 +-
 43 files changed, 671 insertions(+), 752 deletions(-)

-- 
1.8.1.4

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

end of thread, other threads:[~2013-06-07  2:39 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-30 21:16 [Qemu-devel] [PATCH 00/21] Memory/IOMMU patches, part 3: IOMMU implementation Paolo Bonzini
2013-05-30 21:16 ` [Qemu-devel] [PATCH 01/21] memory: Introduce address_space_lookup_region Paolo Bonzini
2013-05-31 21:56   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 02/21] memory: move private types to exec.c Paolo Bonzini
2013-05-31 21:57   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 03/21] exec: Allow unaligned address_space_rw Paolo Bonzini
2013-05-31 21:57   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 04/21] exec: Resolve subpages in one step except for IOTLB fills Paolo Bonzini
2013-05-31 21:58   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 05/21] exec: Implement subpage_read/write via address_space_rw Paolo Bonzini
2013-05-31 21:59   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 06/21] exec: return MemoryRegion from address_space_translate Paolo Bonzini
2013-05-31 22:00   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 07/21] Revert "memory: limit sections in the radix tree to the actual address space size" Paolo Bonzini
2013-05-31 22:04   ` Richard Henderson
2013-06-01  6:29     ` Paolo Bonzini
2013-05-30 21:16 ` [Qemu-devel] [PATCH 08/21] Revert "s390x: reduce TARGET_PHYS_ADDR_SPACE_BITS to 62" Paolo Bonzini
2013-05-30 21:16 ` [Qemu-devel] [PATCH 09/21] exec: reorganize mem_add to match Int128 version Paolo Bonzini
2013-05-31 22:42   ` Richard Henderson
2013-05-30 21:16 ` [Qemu-devel] [PATCH 10/21] memory: make section size a 128-bit integer Paolo Bonzini
2013-05-31  6:56   ` Alexey Kardashevskiy
2013-05-31  7:12     ` Paolo Bonzini
2013-05-31 22:18   ` Richard Henderson
2013-06-02 14:03     ` Paolo Bonzini
2013-06-02 14:18     ` Peter Maydell
2013-06-02 14:36       ` Paolo Bonzini
2013-06-02 14:50         ` Peter Maydell
2013-06-02 19:52           ` Paolo Bonzini
2013-06-06  8:36   ` Alexey Kardashevskiy
2013-06-07  1:09     ` Paolo Bonzini
2013-06-07  1:23       ` Alexey Kardashevskiy
2013-06-07  2:39         ` Paolo Bonzini
2013-05-30 21:16 ` [Qemu-devel] [PATCH 11/21] memory: iommu support Paolo Bonzini
2013-05-31 22:54   ` Richard Henderson
2013-05-30 21:17 ` [Qemu-devel] [PATCH 12/21] memory: Add iommu map/unmap notifiers Paolo Bonzini
2013-05-31 22:56   ` Richard Henderson
2013-05-30 21:17 ` [Qemu-devel] [PATCH 13/21] vfio: abort if an emulated iommu is used Paolo Bonzini
2013-05-31 22:57   ` Richard Henderson
2013-05-30 21:17 ` [Qemu-devel] [PATCH 14/21] spapr: convert TCE API to use an opaque type Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 15/21] spapr: make IOMMU translation go through IOMMUTLBEntry Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 16/21] spapr: use memory core for iommu support Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 17/21] dma: eliminate old-style IOMMU support Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 18/21] pci: use memory core for iommu support Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 19/21] spapr_vio: take care of creating our own AddressSpace/DMAContext Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 20/21] dma: eliminate DMAContext Paolo Bonzini
2013-05-30 21:17 ` [Qemu-devel] [PATCH 21/21] memory: give name to every AddressSpace Paolo Bonzini

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