Commit 63d36c95 authored by Christoph Hellwig's avatar Christoph Hellwig

dma-mapping: replace dmam_alloc_noncoherent with dmam_alloc_attrs

dmam_alloc_noncoherent is a trivial wrapper around dmam_alloc_attrs,
that hardcodes one particular flag.  Make the devres code more
flexible by allowing the callers to pass arbitrary flags.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Acked-by: default avatarTejun Heo <tj@kernel.org>
parent 03b64386
...@@ -240,7 +240,7 @@ CLOCK ...@@ -240,7 +240,7 @@ CLOCK
DMA DMA
dmam_alloc_coherent() dmam_alloc_coherent()
dmam_alloc_noncoherent() dmam_alloc_attrs()
dmam_declare_coherent_memory() dmam_declare_coherent_memory()
dmam_free_coherent() dmam_free_coherent()
dmam_pool_create() dmam_pool_create()
......
...@@ -22,20 +22,15 @@ struct dma_devres { ...@@ -22,20 +22,15 @@ struct dma_devres {
size_t size; size_t size;
void *vaddr; void *vaddr;
dma_addr_t dma_handle; dma_addr_t dma_handle;
unsigned long attrs;
}; };
static void dmam_coherent_release(struct device *dev, void *res) static void dmam_release(struct device *dev, void *res)
{ {
struct dma_devres *this = res; struct dma_devres *this = res;
dma_free_coherent(dev, this->size, this->vaddr, this->dma_handle); dma_free_attrs(dev, this->size, this->vaddr, this->dma_handle,
} this->attrs);
static void dmam_noncoherent_release(struct device *dev, void *res)
{
struct dma_devres *this = res;
dma_free_noncoherent(dev, this->size, this->vaddr, this->dma_handle);
} }
static int dmam_match(struct device *dev, void *res, void *match_data) static int dmam_match(struct device *dev, void *res, void *match_data)
...@@ -69,7 +64,7 @@ void *dmam_alloc_coherent(struct device *dev, size_t size, ...@@ -69,7 +64,7 @@ void *dmam_alloc_coherent(struct device *dev, size_t size,
struct dma_devres *dr; struct dma_devres *dr;
void *vaddr; void *vaddr;
dr = devres_alloc(dmam_coherent_release, sizeof(*dr), gfp); dr = devres_alloc(dmam_release, sizeof(*dr), gfp);
if (!dr) if (!dr)
return NULL; return NULL;
...@@ -104,35 +99,35 @@ void dmam_free_coherent(struct device *dev, size_t size, void *vaddr, ...@@ -104,35 +99,35 @@ void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
struct dma_devres match_data = { size, vaddr, dma_handle }; struct dma_devres match_data = { size, vaddr, dma_handle };
dma_free_coherent(dev, size, vaddr, dma_handle); dma_free_coherent(dev, size, vaddr, dma_handle);
WARN_ON(devres_destroy(dev, dmam_coherent_release, dmam_match, WARN_ON(devres_destroy(dev, dmam_release, dmam_match, &match_data));
&match_data));
} }
EXPORT_SYMBOL(dmam_free_coherent); EXPORT_SYMBOL(dmam_free_coherent);
/** /**
* dmam_alloc_non_coherent - Managed dma_alloc_noncoherent() * dmam_alloc_attrs - Managed dma_alloc_attrs()
* @dev: Device to allocate non_coherent memory for * @dev: Device to allocate non_coherent memory for
* @size: Size of allocation * @size: Size of allocation
* @dma_handle: Out argument for allocated DMA handle * @dma_handle: Out argument for allocated DMA handle
* @gfp: Allocation flags * @gfp: Allocation flags
* @attrs: Flags in the DMA_ATTR_* namespace.
* *
* Managed dma_alloc_noncoherent(). Memory allocated using this * Managed dma_alloc_attrs(). Memory allocated using this function will be
* function will be automatically released on driver detach. * automatically released on driver detach.
* *
* RETURNS: * RETURNS:
* Pointer to allocated memory on success, NULL on failure. * Pointer to allocated memory on success, NULL on failure.
*/ */
void *dmam_alloc_noncoherent(struct device *dev, size_t size, void *dmam_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
dma_addr_t *dma_handle, gfp_t gfp) gfp_t gfp, unsigned long attrs)
{ {
struct dma_devres *dr; struct dma_devres *dr;
void *vaddr; void *vaddr;
dr = devres_alloc(dmam_noncoherent_release, sizeof(*dr), gfp); dr = devres_alloc(dmam_release, sizeof(*dr), gfp);
if (!dr) if (!dr)
return NULL; return NULL;
vaddr = dma_alloc_noncoherent(dev, size, dma_handle, gfp); vaddr = dma_alloc_attrs(dev, size, dma_handle, gfp, attrs);
if (!vaddr) { if (!vaddr) {
devres_free(dr); devres_free(dr);
return NULL; return NULL;
...@@ -141,12 +136,13 @@ void *dmam_alloc_noncoherent(struct device *dev, size_t size, ...@@ -141,12 +136,13 @@ void *dmam_alloc_noncoherent(struct device *dev, size_t size,
dr->vaddr = vaddr; dr->vaddr = vaddr;
dr->dma_handle = *dma_handle; dr->dma_handle = *dma_handle;
dr->size = size; dr->size = size;
dr->attrs = attrs;
devres_add(dev, dr); devres_add(dev, dr);
return vaddr; return vaddr;
} }
EXPORT_SYMBOL(dmam_alloc_noncoherent); EXPORT_SYMBOL(dmam_alloc_attrs);
#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT #ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
......
...@@ -1694,9 +1694,10 @@ static int au1200fb_drv_probe(struct platform_device *dev) ...@@ -1694,9 +1694,10 @@ static int au1200fb_drv_probe(struct platform_device *dev)
/* Allocate the framebuffer to the maximum screen size */ /* Allocate the framebuffer to the maximum screen size */
fbdev->fb_len = (win->w[plane].xres * win->w[plane].yres * bpp) / 8; fbdev->fb_len = (win->w[plane].xres * win->w[plane].yres * bpp) / 8;
fbdev->fb_mem = dmam_alloc_noncoherent(&dev->dev, fbdev->fb_mem = dmam_alloc_attrs(&dev->dev,
PAGE_ALIGN(fbdev->fb_len), PAGE_ALIGN(fbdev->fb_len),
&fbdev->fb_phys, GFP_KERNEL); &fbdev->fb_phys, GFP_KERNEL,
DMA_ATTR_NON_CONSISTENT);
if (!fbdev->fb_mem) { if (!fbdev->fb_mem) {
print_err("fail to allocate frambuffer (size: %dK))", print_err("fail to allocate frambuffer (size: %dK))",
fbdev->fb_len / 1024); fbdev->fb_len / 1024);
......
...@@ -734,8 +734,9 @@ extern void *dmam_alloc_coherent(struct device *dev, size_t size, ...@@ -734,8 +734,9 @@ extern void *dmam_alloc_coherent(struct device *dev, size_t size,
dma_addr_t *dma_handle, gfp_t gfp); dma_addr_t *dma_handle, gfp_t gfp);
extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr, extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
dma_addr_t dma_handle); dma_addr_t dma_handle);
extern void *dmam_alloc_noncoherent(struct device *dev, size_t size, extern void *dmam_alloc_attrs(struct device *dev, size_t size,
dma_addr_t *dma_handle, gfp_t gfp); dma_addr_t *dma_handle, gfp_t gfp,
unsigned long attrs);
#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT #ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
extern int dmam_declare_coherent_memory(struct device *dev, extern int dmam_declare_coherent_memory(struct device *dev,
phys_addr_t phys_addr, phys_addr_t phys_addr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment