Re: [PATCH 1/2] x86: enable DMA CMA with swiotlb

2013-12-02 Thread Konrad Rzeszutek Wilk
On Fri, Nov 29, 2013 at 11:51:45PM +0900, Akinobu Mita wrote:
> The DMA Contiguous Memory Allocator support on x86 is disabled when
> swiotlb config option is enabled.  So DMA CMA is always disabled on
> x86_64 because swiotlb is always enabled.  This attempts to support
> for DMA CMA with enabling swiotlb config option.
> 
> The contiguous memory allocator on x86 is integrated in the function
> dma_generic_alloc_coherent() which is .alloc callback in nommu_dma_ops
> for dma_alloc_coherent().
> 
> x86_swiotlb_alloc_coherent() which is .alloc callback in swiotlb_dma_ops
> tries to allocate with dma_generic_alloc_coherent() firstly and then
> swiotlb_alloc_coherent() is called as a fallback.
> 
> The main part of supporting DMA CMA with swiotlb is that changing
> x86_swiotlb_free_coherent() which is .free callback in swiotlb_dma_ops
> for dma_free_coherent() so that it can distinguish memory allocated by
> dma_generic_alloc_coherent() from one allocated by swiotlb_alloc_coherent()
> and release it with dma_generic_free_coherent() which can handle contiguous
> memory.  This change requires making is_swiotlb_buffer() global function.
> 
> This also needs to change .free callback in the dma_map_ops for amd_gart
> and sta2x11, because these dma_ops are also using
> dma_generic_alloc_coherent().
> 

Before I queue it up and start testing it - Peter were your
concerns answered?

Thanks!
> Cc: Marek Szyprowski 
> Cc: Konrad Rzeszutek Wilk 
> Cc: Thomas Gleixner 
> Cc: Ingo Molnar 
> Cc: "H. Peter Anvin" 
> Cc: x...@kernel.org
> Cc: Andi Kleen 
> Signed-off-by: Akinobu Mita 
> Acked-by: Marek Szyprowski 
> ---
> No change from the previous version
> 
>  arch/x86/Kconfig   | 2 +-
>  arch/x86/include/asm/swiotlb.h | 7 +++
>  arch/x86/kernel/amd_gart_64.c  | 2 +-
>  arch/x86/kernel/pci-swiotlb.c  | 9 ++---
>  arch/x86/pci/sta2x11-fixup.c   | 6 ++
>  include/linux/swiotlb.h| 2 ++
>  lib/swiotlb.c  | 2 +-
>  7 files changed, 20 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
> index e903c71..b15df8b 100644
> --- a/arch/x86/Kconfig
> +++ b/arch/x86/Kconfig
> @@ -39,7 +39,7 @@ config X86
>   select ARCH_WANT_OPTIONAL_GPIOLIB
>   select ARCH_WANT_FRAME_POINTERS
>   select HAVE_DMA_ATTRS
> - select HAVE_DMA_CONTIGUOUS if !SWIOTLB
> + select HAVE_DMA_CONTIGUOUS
>   select HAVE_KRETPROBES
>   select HAVE_OPTPROBES
>   select HAVE_KPROBES_ON_FTRACE
> diff --git a/arch/x86/include/asm/swiotlb.h b/arch/x86/include/asm/swiotlb.h
> index 977f176..ab05d73 100644
> --- a/arch/x86/include/asm/swiotlb.h
> +++ b/arch/x86/include/asm/swiotlb.h
> @@ -29,4 +29,11 @@ static inline void pci_swiotlb_late_init(void)
>  
>  static inline void dma_mark_clean(void *addr, size_t size) {}
>  
> +extern void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
> + dma_addr_t *dma_handle, gfp_t flags,
> + struct dma_attrs *attrs);
> +extern void x86_swiotlb_free_coherent(struct device *dev, size_t size,
> + void *vaddr, dma_addr_t dma_addr,
> + struct dma_attrs *attrs);
> +
>  #endif /* _ASM_X86_SWIOTLB_H */
> diff --git a/arch/x86/kernel/amd_gart_64.c b/arch/x86/kernel/amd_gart_64.c
> index b574b29..8e3842f 100644
> --- a/arch/x86/kernel/amd_gart_64.c
> +++ b/arch/x86/kernel/amd_gart_64.c
> @@ -512,7 +512,7 @@ gart_free_coherent(struct device *dev, size_t size, void 
> *vaddr,
>  dma_addr_t dma_addr, struct dma_attrs *attrs)
>  {
>   gart_unmap_page(dev, dma_addr, size, DMA_BIDIRECTIONAL, NULL);
> - free_pages((unsigned long)vaddr, get_order(size));
> + dma_generic_free_coherent(dev, size, vaddr, dma_addr, attrs);
>  }
>  
>  static int gart_mapping_error(struct device *dev, dma_addr_t dma_addr)
> diff --git a/arch/x86/kernel/pci-swiotlb.c b/arch/x86/kernel/pci-swiotlb.c
> index 6c483ba..77dd0ad 100644
> --- a/arch/x86/kernel/pci-swiotlb.c
> +++ b/arch/x86/kernel/pci-swiotlb.c
> @@ -14,7 +14,7 @@
>  #include 
>  int swiotlb __read_mostly;
>  
> -static void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
> +void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
>   dma_addr_t *dma_handle, gfp_t flags,
>   struct dma_attrs *attrs)
>  {
> @@ -28,11 +28,14 @@ static void *x86_swiotlb_alloc_coherent(struct device 
> *hwdev, size_t size,
>   return swiotlb_alloc_coherent(hwdev, size, dma_handle, flags);
>  }
>  
> -static void x86_swiotlb_free_coherent(struct device *dev, size_t size,
> +void x86_swiotlb_free_coherent(struct device *dev, size_t size,
> void *vaddr, dma_addr_t dma_addr,
> struct dma_attrs *attrs)
>  {
> - swiotlb_free_coherent(dev, size, vaddr, dma_addr);
> + if 

Re: [PATCH 1/2] x86: enable DMA CMA with swiotlb

2013-12-02 Thread Konrad Rzeszutek Wilk
On Fri, Nov 29, 2013 at 11:51:45PM +0900, Akinobu Mita wrote:
 The DMA Contiguous Memory Allocator support on x86 is disabled when
 swiotlb config option is enabled.  So DMA CMA is always disabled on
 x86_64 because swiotlb is always enabled.  This attempts to support
 for DMA CMA with enabling swiotlb config option.
 
 The contiguous memory allocator on x86 is integrated in the function
 dma_generic_alloc_coherent() which is .alloc callback in nommu_dma_ops
 for dma_alloc_coherent().
 
 x86_swiotlb_alloc_coherent() which is .alloc callback in swiotlb_dma_ops
 tries to allocate with dma_generic_alloc_coherent() firstly and then
 swiotlb_alloc_coherent() is called as a fallback.
 
 The main part of supporting DMA CMA with swiotlb is that changing
 x86_swiotlb_free_coherent() which is .free callback in swiotlb_dma_ops
 for dma_free_coherent() so that it can distinguish memory allocated by
 dma_generic_alloc_coherent() from one allocated by swiotlb_alloc_coherent()
 and release it with dma_generic_free_coherent() which can handle contiguous
 memory.  This change requires making is_swiotlb_buffer() global function.
 
 This also needs to change .free callback in the dma_map_ops for amd_gart
 and sta2x11, because these dma_ops are also using
 dma_generic_alloc_coherent().
 

Before I queue it up and start testing it - Peter were your
concerns answered?

Thanks!
 Cc: Marek Szyprowski m.szyprow...@samsung.com
 Cc: Konrad Rzeszutek Wilk konrad.w...@oracle.com
 Cc: Thomas Gleixner t...@linutronix.de
 Cc: Ingo Molnar mi...@redhat.com
 Cc: H. Peter Anvin h...@zytor.com
 Cc: x...@kernel.org
 Cc: Andi Kleen a...@firstfloor.org
 Signed-off-by: Akinobu Mita akinobu.m...@gmail.com
 Acked-by: Marek Szyprowski m.szyprow...@samsung.com
 ---
 No change from the previous version
 
  arch/x86/Kconfig   | 2 +-
  arch/x86/include/asm/swiotlb.h | 7 +++
  arch/x86/kernel/amd_gart_64.c  | 2 +-
  arch/x86/kernel/pci-swiotlb.c  | 9 ++---
  arch/x86/pci/sta2x11-fixup.c   | 6 ++
  include/linux/swiotlb.h| 2 ++
  lib/swiotlb.c  | 2 +-
  7 files changed, 20 insertions(+), 10 deletions(-)
 
 diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
 index e903c71..b15df8b 100644
 --- a/arch/x86/Kconfig
 +++ b/arch/x86/Kconfig
 @@ -39,7 +39,7 @@ config X86
   select ARCH_WANT_OPTIONAL_GPIOLIB
   select ARCH_WANT_FRAME_POINTERS
   select HAVE_DMA_ATTRS
 - select HAVE_DMA_CONTIGUOUS if !SWIOTLB
 + select HAVE_DMA_CONTIGUOUS
   select HAVE_KRETPROBES
   select HAVE_OPTPROBES
   select HAVE_KPROBES_ON_FTRACE
 diff --git a/arch/x86/include/asm/swiotlb.h b/arch/x86/include/asm/swiotlb.h
 index 977f176..ab05d73 100644
 --- a/arch/x86/include/asm/swiotlb.h
 +++ b/arch/x86/include/asm/swiotlb.h
 @@ -29,4 +29,11 @@ static inline void pci_swiotlb_late_init(void)
  
  static inline void dma_mark_clean(void *addr, size_t size) {}
  
 +extern void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
 + dma_addr_t *dma_handle, gfp_t flags,
 + struct dma_attrs *attrs);
 +extern void x86_swiotlb_free_coherent(struct device *dev, size_t size,
 + void *vaddr, dma_addr_t dma_addr,
 + struct dma_attrs *attrs);
 +
  #endif /* _ASM_X86_SWIOTLB_H */
 diff --git a/arch/x86/kernel/amd_gart_64.c b/arch/x86/kernel/amd_gart_64.c
 index b574b29..8e3842f 100644
 --- a/arch/x86/kernel/amd_gart_64.c
 +++ b/arch/x86/kernel/amd_gart_64.c
 @@ -512,7 +512,7 @@ gart_free_coherent(struct device *dev, size_t size, void 
 *vaddr,
  dma_addr_t dma_addr, struct dma_attrs *attrs)
  {
   gart_unmap_page(dev, dma_addr, size, DMA_BIDIRECTIONAL, NULL);
 - free_pages((unsigned long)vaddr, get_order(size));
 + dma_generic_free_coherent(dev, size, vaddr, dma_addr, attrs);
  }
  
  static int gart_mapping_error(struct device *dev, dma_addr_t dma_addr)
 diff --git a/arch/x86/kernel/pci-swiotlb.c b/arch/x86/kernel/pci-swiotlb.c
 index 6c483ba..77dd0ad 100644
 --- a/arch/x86/kernel/pci-swiotlb.c
 +++ b/arch/x86/kernel/pci-swiotlb.c
 @@ -14,7 +14,7 @@
  #include asm/iommu_table.h
  int swiotlb __read_mostly;
  
 -static void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
 +void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
   dma_addr_t *dma_handle, gfp_t flags,
   struct dma_attrs *attrs)
  {
 @@ -28,11 +28,14 @@ static void *x86_swiotlb_alloc_coherent(struct device 
 *hwdev, size_t size,
   return swiotlb_alloc_coherent(hwdev, size, dma_handle, flags);
  }
  
 -static void x86_swiotlb_free_coherent(struct device *dev, size_t size,
 +void x86_swiotlb_free_coherent(struct device *dev, size_t size,
 void *vaddr, dma_addr_t dma_addr,
 struct dma_attrs *attrs)
  {
 - 

Re: [PATCH 1/2] x86: enable DMA CMA with swiotlb

2013-11-29 Thread Andi Kleen
> This also needs to change .free callback in the dma_map_ops for amd_gart
> and sta2x11, because these dma_ops are also using
> dma_generic_alloc_coherent().

Looks good to me from a quick read.

-Andi

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 1/2] x86: enable DMA CMA with swiotlb

2013-11-29 Thread Andi Kleen
 This also needs to change .free callback in the dma_map_ops for amd_gart
 and sta2x11, because these dma_ops are also using
 dma_generic_alloc_coherent().

Looks good to me from a quick read.

-Andi

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/