Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1283707

Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for DMA_MEMORY_MAP

From Catalin Marinas <catalin.marinas@arm.com>
Newsgroups linux.kernel
Subject Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for DMA_MEMORY_MAP
Date 2015-12-04 12:00 +0100
Message-ID <qBWfM-1AF-15@gated-at.bofh.it> (permalink)
References <qwURk-8na-37@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Fri, Nov 20, 2015 at 02:20:26PM +0000, Brian Starkey wrote:
> When the DMA_MEMORY_MAP flag is used, memory which can be accessed
> directly should be returned, so use ioremap_wc() instead of ioremap().
> Also, ensure that the correct memset operation is used in
> dma_alloc_from_coherent() with respect to the region's flags.
> 
> This fixes the below alignment fault on arm64, caused by invalid use
> of memset() on Device memory.

This is indeed affecting both arm32 and arm64 systems.

> diff --git a/drivers/base/dma-coherent.c b/drivers/base/dma-coherent.c
> index 55b8398..45358d0 100644
> --- a/drivers/base/dma-coherent.c
> +++ b/drivers/base/dma-coherent.c
> @@ -31,7 +31,10 @@ static int dma_init_coherent_memory(phys_addr_t phys_addr, dma_addr_t device_add
>  	if (!size)
>  		goto out;
>  
> -	mem_base = ioremap(phys_addr, size);
> +	if (flags & DMA_MEMORY_MAP)
> +		mem_base = ioremap_wc(phys_addr, size);
> +	else
> +		mem_base = ioremap(phys_addr, size);

I wonder whether a memremap() approach for the DMA_MEMORY_MAP case would
be better. This API was added recently by commit 92281dee825f ("arch:
introduce memremap()"). It only supports write-back and write-through
but we could add a MEMREMAP_WC flag for this case.

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

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for  DMA_MEMORY_MAP Catalin Marinas <catalin.marinas@arm.com> - 2015-12-04 12:00 +0100
  Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for DMA_MEMORY_MAP Dan Williams <dan.j.williams@intel.com> - 2015-12-04 18:00 +0100
    Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for  DMA_MEMORY_MAP Catalin Marinas <catalin.marinas@arm.com> - 2015-12-04 18:20 +0100
      Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for  DMA_MEMORY_MAP Brian Starkey <brian.starkey@arm.com> - 2015-12-07 14:30 +0100
        Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for DMA_MEMORY_MAP Dan Williams <dan.j.williams@intel.com> - 2015-12-07 17:20 +0100
          Re: [PATCH] drivers: dma-coherent: use ioremap_wc() for  DMA_MEMORY_MAP Catalin Marinas <catalin.marinas@arm.com> - 2015-12-07 17:50 +0100

csiph-web