2019-05-27 08:55:05 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2007-10-15 09:50:19 +02:00
|
|
|
* Copyright (c) by Jaroslav Kysela <perex@perex.cz>
|
2005-04-17 00:20:36 +02:00
|
|
|
* Takashi Iwai <tiwai@suse.de>
|
|
|
|
*
|
|
|
|
* Generic memory allocators
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
2013-10-23 05:47:43 +02:00
|
|
|
#include <linux/genalloc.h>
|
2018-08-08 17:01:00 +02:00
|
|
|
#ifdef CONFIG_X86
|
|
|
|
#include <asm/set_memory.h>
|
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <sound/memalloc.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Bus-specific memory allocators
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-07-26 18:59:36 +02:00
|
|
|
#ifdef CONFIG_HAS_DMA
|
2005-04-17 00:20:36 +02:00
|
|
|
/* allocate the coherent DMA pages */
|
2018-08-10 14:43:37 +02:00
|
|
|
static void snd_malloc_dev_pages(struct snd_dma_buffer *dmab, size_t size)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-10-21 09:22:18 +02:00
|
|
|
gfp_t gfp_flags;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
gfp_flags = GFP_KERNEL
|
2005-11-22 06:32:22 +01:00
|
|
|
| __GFP_COMP /* compound page lets parts be mapped */
|
2005-04-17 00:20:36 +02:00
|
|
|
| __GFP_NORETRY /* don't trigger OOM-killer */
|
|
|
|
| __GFP_NOWARN; /* no stack trace print - this call is non-critical */
|
2018-08-10 14:43:37 +02:00
|
|
|
dmab->area = dma_alloc_coherent(dmab->dev.dev, size, &dmab->addr,
|
|
|
|
gfp_flags);
|
2018-08-08 17:01:00 +02:00
|
|
|
#ifdef CONFIG_X86
|
|
|
|
if (dmab->area && dmab->dev.type == SNDRV_DMA_TYPE_DEV_UC)
|
|
|
|
set_memory_wc((unsigned long)dmab->area,
|
|
|
|
PAGE_ALIGN(size) >> PAGE_SHIFT);
|
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* free the coherent DMA pages */
|
2018-08-10 14:43:37 +02:00
|
|
|
static void snd_free_dev_pages(struct snd_dma_buffer *dmab)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2018-08-08 17:01:00 +02:00
|
|
|
#ifdef CONFIG_X86
|
|
|
|
if (dmab->dev.type == SNDRV_DMA_TYPE_DEV_UC)
|
|
|
|
set_memory_wb((unsigned long)dmab->area,
|
|
|
|
PAGE_ALIGN(dmab->bytes) >> PAGE_SHIFT);
|
|
|
|
#endif
|
2018-08-10 14:43:37 +02:00
|
|
|
dma_free_coherent(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2013-10-23 05:47:43 +02:00
|
|
|
|
2013-10-28 16:08:27 +01:00
|
|
|
#ifdef CONFIG_GENERIC_ALLOCATOR
|
2013-10-23 05:47:43 +02:00
|
|
|
/**
|
|
|
|
* snd_malloc_dev_iram - allocate memory from on-chip internal ram
|
|
|
|
* @dmab: buffer allocation record to store the allocated data
|
|
|
|
* @size: number of bytes to allocate from the iram
|
|
|
|
*
|
|
|
|
* This function requires iram phandle provided via of_node
|
|
|
|
*/
|
2013-10-29 11:56:21 +01:00
|
|
|
static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size)
|
2013-10-23 05:47:43 +02:00
|
|
|
{
|
|
|
|
struct device *dev = dmab->dev.dev;
|
|
|
|
struct gen_pool *pool = NULL;
|
|
|
|
|
2013-10-29 11:59:31 +01:00
|
|
|
dmab->area = NULL;
|
|
|
|
dmab->addr = 0;
|
|
|
|
|
2013-10-23 05:47:43 +02:00
|
|
|
if (dev->of_node)
|
2015-07-01 00:00:07 +02:00
|
|
|
pool = of_gen_pool_get(dev->of_node, "iram", 0);
|
2013-10-23 05:47:43 +02:00
|
|
|
|
|
|
|
if (!pool)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Assign the pool into private_data field */
|
|
|
|
dmab->private_data = pool;
|
|
|
|
|
2013-11-14 23:32:15 +01:00
|
|
|
dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr);
|
2013-10-23 05:47:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* snd_free_dev_iram - free allocated specific memory from on-chip internal ram
|
|
|
|
* @dmab: buffer allocation record to store the allocated data
|
|
|
|
*/
|
2013-10-29 11:56:21 +01:00
|
|
|
static void snd_free_dev_iram(struct snd_dma_buffer *dmab)
|
2013-10-23 05:47:43 +02:00
|
|
|
{
|
|
|
|
struct gen_pool *pool = dmab->private_data;
|
|
|
|
|
|
|
|
if (pool && dmab->area)
|
|
|
|
gen_pool_free(pool, (unsigned long)dmab->area, dmab->bytes);
|
|
|
|
}
|
2013-10-28 16:08:27 +01:00
|
|
|
#endif /* CONFIG_GENERIC_ALLOCATOR */
|
2007-07-26 18:59:36 +02:00
|
|
|
#endif /* CONFIG_HAS_DMA */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* ALSA generic memory management
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* snd_dma_alloc_pages - allocate the buffer area according to the given type
|
|
|
|
* @type: the DMA buffer type
|
|
|
|
* @device: the device pointer
|
|
|
|
* @size: the buffer size to allocate
|
|
|
|
* @dmab: buffer allocation record to store the allocated data
|
|
|
|
*
|
|
|
|
* Calls the memory-allocator function for the corresponding
|
|
|
|
* buffer type.
|
2013-03-11 22:05:14 +01:00
|
|
|
*
|
|
|
|
* Return: Zero if the buffer with the given size is allocated successfully,
|
|
|
|
* otherwise a negative value on error.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
int snd_dma_alloc_pages(int type, struct device *device, size_t size,
|
|
|
|
struct snd_dma_buffer *dmab)
|
|
|
|
{
|
2008-08-08 17:09:09 +02:00
|
|
|
if (WARN_ON(!size))
|
|
|
|
return -ENXIO;
|
|
|
|
if (WARN_ON(!dmab))
|
|
|
|
return -ENXIO;
|
2019-02-04 14:34:00 +01:00
|
|
|
if (WARN_ON(!device))
|
|
|
|
return -EINVAL;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
dmab->dev.type = type;
|
|
|
|
dmab->dev.dev = device;
|
|
|
|
dmab->bytes = 0;
|
|
|
|
switch (type) {
|
|
|
|
case SNDRV_DMA_TYPE_CONTINUOUS:
|
2018-11-23 19:38:13 +01:00
|
|
|
dmab->area = alloc_pages_exact(size,
|
|
|
|
(__force gfp_t)(unsigned long)device);
|
2005-04-17 00:20:36 +02:00
|
|
|
dmab->addr = 0;
|
|
|
|
break;
|
2007-07-26 18:59:36 +02:00
|
|
|
#ifdef CONFIG_HAS_DMA
|
2013-10-24 14:25:32 +02:00
|
|
|
#ifdef CONFIG_GENERIC_ALLOCATOR
|
2013-10-23 05:47:43 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_IRAM:
|
|
|
|
snd_malloc_dev_iram(dmab, size);
|
|
|
|
if (dmab->area)
|
|
|
|
break;
|
|
|
|
/* Internal memory might have limited size and no enough space,
|
|
|
|
* so if we fail to malloc, try to fetch memory traditionally.
|
|
|
|
*/
|
|
|
|
dmab->dev.type = SNDRV_DMA_TYPE_DEV;
|
2013-10-24 14:25:32 +02:00
|
|
|
#endif /* CONFIG_GENERIC_ALLOCATOR */
|
2018-10-04 19:54:51 +02:00
|
|
|
/* fall through */
|
2005-04-17 00:20:36 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV:
|
2018-08-08 17:01:00 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_UC:
|
2018-08-10 14:43:37 +02:00
|
|
|
snd_malloc_dev_pages(dmab, size);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
2008-06-17 16:39:06 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_DMA_SGBUF
|
2005-04-17 00:20:36 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_SG:
|
2018-08-08 17:01:00 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_UC_SG:
|
2005-04-17 00:20:36 +02:00
|
|
|
snd_malloc_sgbuf_pages(device, size, dmab, NULL);
|
|
|
|
break;
|
2007-07-26 18:59:36 +02:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
default:
|
2014-02-04 18:21:03 +01:00
|
|
|
pr_err("snd-malloc: invalid device type %d\n", type);
|
2005-04-17 00:20:36 +02:00
|
|
|
dmab->area = NULL;
|
|
|
|
dmab->addr = 0;
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
|
|
|
if (! dmab->area)
|
|
|
|
return -ENOMEM;
|
|
|
|
dmab->bytes = size;
|
|
|
|
return 0;
|
|
|
|
}
|
2017-06-16 16:16:33 +02:00
|
|
|
EXPORT_SYMBOL(snd_dma_alloc_pages);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback
|
|
|
|
* @type: the DMA buffer type
|
|
|
|
* @device: the device pointer
|
|
|
|
* @size: the buffer size to allocate
|
|
|
|
* @dmab: buffer allocation record to store the allocated data
|
|
|
|
*
|
|
|
|
* Calls the memory-allocator function for the corresponding
|
|
|
|
* buffer type. When no space is left, this function reduces the size and
|
|
|
|
* tries to allocate again. The size actually allocated is stored in
|
|
|
|
* res_size argument.
|
2013-03-11 22:05:14 +01:00
|
|
|
*
|
|
|
|
* Return: Zero if the buffer with the given size is allocated successfully,
|
|
|
|
* otherwise a negative value on error.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size,
|
|
|
|
struct snd_dma_buffer *dmab)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) {
|
|
|
|
if (err != -ENOMEM)
|
|
|
|
return err;
|
|
|
|
if (size <= PAGE_SIZE)
|
|
|
|
return -ENOMEM;
|
2018-07-19 11:01:04 +02:00
|
|
|
size >>= 1;
|
|
|
|
size = PAGE_SIZE << get_order(size);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
if (! dmab->area)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
2017-06-16 16:16:33 +02:00
|
|
|
EXPORT_SYMBOL(snd_dma_alloc_pages_fallback);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* snd_dma_free_pages - release the allocated buffer
|
|
|
|
* @dmab: the buffer allocation record to release
|
|
|
|
*
|
|
|
|
* Releases the allocated buffer via snd_dma_alloc_pages().
|
|
|
|
*/
|
|
|
|
void snd_dma_free_pages(struct snd_dma_buffer *dmab)
|
|
|
|
{
|
|
|
|
switch (dmab->dev.type) {
|
|
|
|
case SNDRV_DMA_TYPE_CONTINUOUS:
|
2018-11-23 19:38:13 +01:00
|
|
|
free_pages_exact(dmab->area, dmab->bytes);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
2007-07-26 18:59:36 +02:00
|
|
|
#ifdef CONFIG_HAS_DMA
|
2013-10-24 14:25:32 +02:00
|
|
|
#ifdef CONFIG_GENERIC_ALLOCATOR
|
2013-10-23 05:47:43 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_IRAM:
|
|
|
|
snd_free_dev_iram(dmab);
|
|
|
|
break;
|
2013-10-24 14:25:32 +02:00
|
|
|
#endif /* CONFIG_GENERIC_ALLOCATOR */
|
2005-04-17 00:20:36 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV:
|
2018-08-08 17:01:00 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_UC:
|
2018-08-10 14:43:37 +02:00
|
|
|
snd_free_dev_pages(dmab);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
2008-06-17 16:39:06 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_DMA_SGBUF
|
2005-04-17 00:20:36 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_SG:
|
2018-08-08 17:01:00 +02:00
|
|
|
case SNDRV_DMA_TYPE_DEV_UC_SG:
|
2005-04-17 00:20:36 +02:00
|
|
|
snd_free_sgbuf_pages(dmab);
|
|
|
|
break;
|
2007-07-26 18:59:36 +02:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
default:
|
2014-02-04 18:21:03 +01:00
|
|
|
pr_err("snd-malloc: invalid device type %d\n", dmab->dev.type);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(snd_dma_free_pages);
|