public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] xen: swiotlb support for Xen dom0
@ 2009-05-08  0:17 Jeremy Fitzhardinge
  2009-05-08  0:17 ` [PATCH 1/9] xen: make sure swiotlb allocation is physically contigious Jeremy Fitzhardinge
                   ` (11 more replies)
  0 siblings, 12 replies; 28+ messages in thread
From: Jeremy Fitzhardinge @ 2009-05-08  0:17 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: FUJITA Tomonori, the arch/x86 maintainers,
	Linux Kernel Mailing List, Xen-devel

Hi Ingo,

This branch adds the swiotlb hooks for Xen dom0.  We use swiotlb to handle
various device drivers which assume that multipage DMA transfers which are
contigious in kernel memory are also contigious in machine memory (mostly
lower-performance devices, as high-performance ones already do a good job
of scatter-gather).

Following Fujita's suggestion, these changes remove a lot of the
placeholder stubs in arch/x86/kernel/pci-swiotlb.c and moves them into
the Xen-specific arch/x86/xen/pci-swiotlb.c.  (It still relies on
overriding the weak functions defined in lib/swiotlb.c.)

The following changes since commit 2af252ab26150b4411889c9eaf1af4c5bf03de78:
  Jeremy Fitzhardinge (1):
        xen: checkpatch cleanups

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git xen-tip/for-ingo/dom0/swiotlb

Ian Campbell (4):
      xen swiotlb: fixup swiotlb is chunks smaller than MAX_CONTIG_ORDER
      xen: add hooks for mapping phys<->bus addresses in swiotlb
      xen/swiotlb: add swiotlb_arch_range_needs_mapping hook for xen
      xen: enable swiotlb for xen domain 0.

Jeremy Fitzhardinge (5):
      xen: make sure swiotlb allocation is physically contigious
      swiotlb: use swiotlb_alloc_boot to allocate emergency pool
      xen/swiotlb: improve comment on gfp flags in xen_alloc_coherent()
      xen/swiotlb: add sync functions
      xen/swiotlb: update to new new dma_ops

 arch/x86/kernel/pci-swiotlb.c |   30 ++--------
 arch/x86/xen/Kconfig          |    1 +
 arch/x86/xen/Makefile         |    1 +
 arch/x86/xen/pci-swiotlb.c    |   53 ++++++++++++++++++
 drivers/pci/xen-iommu.c       |  123 +++++++++++++++++++++++++++++------------
 include/xen/swiotlb.h         |   18 ++++++
 lib/swiotlb.c                 |    3 +-
 7 files changed, 168 insertions(+), 61 deletions(-)
 create mode 100644 arch/x86/xen/pci-swiotlb.c
 create mode 100644 include/xen/swiotlb.h

Thanks,
	J

^ permalink raw reply	[flat|nested] 28+ messages in thread
* [PATCH] swiotlb updates for Xen dom0
@ 2009-03-31 22:52 Jeremy Fitzhardinge
  2009-03-31 22:52 ` [PATCH 5/9] xen: enable swiotlb for xen domain 0 Jeremy Fitzhardinge
  0 siblings, 1 reply; 28+ messages in thread
From: Jeremy Fitzhardinge @ 2009-03-31 22:52 UTC (permalink / raw)
  To: FUJITA Tomonori
  Cc: the arch/x86 maintainers, Ingo Molnar, Linux Kernel Mailing List


Hi Fujita,

This series adds Xen support to x86 swiotlb.  This is mostly a matter of
adding some Xen code into the existing hooks in pci-swiotlb_64.c:
  - swiotlb_alloc_boot
  - swiotlb_arch_range_needs_mapping
  - swiotlb_phys_to_bus/bus_to_phys

These hooks are conditional on xen_pv_domain(), which compiles to a
constant 0 when CONFIG_XEN is not enabled (and is a simple variable
read when it is).

All the Xen-specific code is in xen-iommu.c.

This series is just the patches which touch lib/swiotlb.c or
pci-swiotlb_64.c.  You can see them with more context in:
   git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git for-linus/xen/dom0/swiotlb

Thanks,
	J

 arch/x86/kernel/pci-swiotlb_64.c |   31 ++++++++++++++++-
 arch/x86/xen/Kconfig             |    1 
 drivers/pci/xen-iommu.c          |   68 ++++++++++++++++++++++++++++++++++++---
 include/xen/swiotlb.h            |   38 +++++++++++++++++++++
 lib/swiotlb.c                    |    3 +
 5 files changed, 133 insertions(+), 8 deletions(-)



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

end of thread, other threads:[~2009-05-11 22:47 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-08  0:17 [GIT PULL] xen: swiotlb support for Xen dom0 Jeremy Fitzhardinge
2009-05-08  0:17 ` [PATCH 1/9] xen: make sure swiotlb allocation is physically contigious Jeremy Fitzhardinge
2009-05-08  7:47   ` [Xen-devel] [PATCH 1/9] xen: make sure swiotlb allocation isphysically contigious Jan Beulich
2009-05-08 15:51     ` Jeremy Fitzhardinge
2009-05-11  3:40   ` [PATCH 1/9] xen: make sure swiotlb allocation is physically contigious FUJITA Tomonori
2009-05-11 13:55   ` Joerg Roedel
2009-05-11 18:42     ` Jeremy Fitzhardinge
2009-05-08  0:17 ` [PATCH 2/9] xen swiotlb: fixup swiotlb is chunks smaller than MAX_CONTIG_ORDER Jeremy Fitzhardinge
2009-05-08  0:17 ` [PATCH 3/9] xen: add hooks for mapping phys<->bus addresses in swiotlb Jeremy Fitzhardinge
2009-05-11  3:40   ` FUJITA Tomonori
2009-05-11 14:11   ` Joerg Roedel
2009-05-08  0:17 ` [PATCH 4/9] xen/swiotlb: add swiotlb_arch_range_needs_mapping hook for xen Jeremy Fitzhardinge
2009-05-11  3:40   ` FUJITA Tomonori
2009-05-11 14:16   ` Joerg Roedel
2009-05-08  0:17 ` [PATCH 5/9] xen: enable swiotlb for xen domain 0 Jeremy Fitzhardinge
2009-05-11  3:40   ` FUJITA Tomonori
2009-05-11 14:21   ` Joerg Roedel
2009-05-08  0:17 ` [PATCH 6/9] swiotlb: use swiotlb_alloc_boot to allocate emergency pool Jeremy Fitzhardinge
2009-05-08  0:17 ` [PATCH 7/9] xen/swiotlb: improve comment on gfp flags in xen_alloc_coherent() Jeremy Fitzhardinge
2009-05-08  0:17 ` [PATCH 8/9] xen/swiotlb: add sync functions Jeremy Fitzhardinge
2009-05-08  0:17 ` [PATCH 9/9] xen/swiotlb: update to new new dma_ops Jeremy Fitzhardinge
2009-05-08 11:19 ` [GIT PULL] xen: swiotlb support for Xen dom0 Ingo Molnar
2009-05-11  3:40 ` FUJITA Tomonori
2009-05-11 16:59   ` Jeremy Fitzhardinge
2009-05-11 22:45     ` FUJITA Tomonori
2009-05-11 13:04 ` Ingo Molnar
2009-05-11 16:57   ` Jeremy Fitzhardinge
  -- strict thread matches above, loose matches on Subject: below --
2009-03-31 22:52 [PATCH] swiotlb updates " Jeremy Fitzhardinge
2009-03-31 22:52 ` [PATCH 5/9] xen: enable swiotlb for xen domain 0 Jeremy Fitzhardinge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox