arm_coherent_dma_alloc
Catalin Marinas
catalin.marinas at arm.com
Fri Sep 4 06:26:05 PDT 2015
On Thu, Sep 03, 2015 at 04:50:56AM +0000, Aggrwal Poonam wrote:
> I am looking at the file: "arch/arm/mm/dma-mapping.c"
>
> static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
> dma_addr_t *handle, gfp_t gfp, struct dma_attrs *attrs)
> {
> pgprot_t prot = __get_dma_pgprot(attrs, pgprot_kernel);
> void *memory;
>
> if (dma_alloc_from_coherent(dev, size, handle, &memory))
> return memory;
>
> return __dma_alloc(dev, size, handle, gfp, prot, true,
> __builtin_return_address(0));
> }
>
> I want to understand the attributes of memory allocated using
> __dma_alloc, in terms of cacheable.
If is_coherent == true (for __dma_alloc), the attributes are Normal
Cacheable (the case above).
If __dma_alloc() is called with is_coherent == false, the attributes are
given by __get_dma_pgprot() and they would be Normal Non-cacheable.
--
Catalin
More information about the linux-arm-kernel
mailing list