ALSA: memalloc: Allow NULL device for SNDRV_DMA_TYPE_CONTINUOUS type
authorTakashi Iwai <tiwai@suse.de>
Tue, 5 Nov 2019 08:01:35 +0000 (09:01 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 6 Nov 2019 14:43:18 +0000 (15:43 +0100)
Currently we pass the artificial device pointer to the allocation
helper in the case of SNDRV_DMA_TYPE_CONTINUOUS for passing the GFP
flags.  But all common cases are the allocations with GFP_KERNEL, and
it's messy to put this in each place.

In this patch, the memalloc core helper is changed to accept the NULL
device pointer and it treats as the default mode, GFP_KERNEL, so that
all callers can omit the complex argument but just leave NULL.

Link: https://lore.kernel.org/r/20191105080138.1260-2-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Documentation/sound/kernel-api/writing-an-alsa-driver.rst
sound/core/memalloc.c

index 132f5eb9b530e9c443712b14d28661eff76be7d4..5385618fd881433ff969078278d1f5a4e5e06ca5 100644 (file)
@@ -3523,12 +3523,14 @@ The second argument (type) and the third argument (device pointer) are
 dependent on the bus. For normal devices, pass the device pointer
 (typically identical as ``card->dev``) to the third argument with
 ``SNDRV_DMA_TYPE_DEV`` type. For the continuous buffer unrelated to the
 dependent on the bus. For normal devices, pass the device pointer
 (typically identical as ``card->dev``) to the third argument with
 ``SNDRV_DMA_TYPE_DEV`` type. For the continuous buffer unrelated to the
-bus can be pre-allocated with ``SNDRV_DMA_TYPE_CONTINUOUS`` type and the
-``snd_dma_continuous_data(GFP_KERNEL)`` device pointer, where
-``GFP_KERNEL`` is the kernel allocation flag to use. For the
-scatter-gather buffers, use ``SNDRV_DMA_TYPE_DEV_SG`` with the device
-pointer (see the `Non-Contiguous Buffers`_
-section).
+bus can be pre-allocated with ``SNDRV_DMA_TYPE_CONTINUOUS`` type.
+You can pass NULL to the device pointer in that case, which is the
+default mode implying to allocate with ``GFP_KRENEL`` flag.
+If you need a different GFP flag, you can pass it by encoding the flag
+into the device pointer via a special macro
+:c:func:`snd_dma_continuous_data()`.
+For the scatter-gather buffers, use ``SNDRV_DMA_TYPE_DEV_SG`` with the
+device pointer (see the `Non-Contiguous Buffers`_ section).
 
 Once the buffer is pre-allocated, you can use the allocator in the
 ``hw_params`` callback:
 
 Once the buffer is pre-allocated, you can use the allocator in the
 ``hw_params`` callback:
index 6850d13aa98c5ae4f1ef318618757a3c53fef84f..1b1c7620cbdac292ecada6ad22085acbe81aa784 100644 (file)
@@ -99,6 +99,13 @@ static void snd_free_dev_iram(struct snd_dma_buffer *dmab)
  *
  */
 
  *
  */
 
+static inline gfp_t snd_mem_get_gfp_flags(const struct device *dev)
+{
+       if (!dev)
+               return GFP_KERNEL;
+       else
+               return (__force gfp_t)(unsigned long)dev;
+}
 
 /**
  * snd_dma_alloc_pages - allocate the buffer area according to the given type
 
 /**
  * snd_dma_alloc_pages - allocate the buffer area according to the given type
@@ -120,8 +127,6 @@ int snd_dma_alloc_pages(int type, struct device *device, size_t size,
                return -ENXIO;
        if (WARN_ON(!dmab))
                return -ENXIO;
                return -ENXIO;
        if (WARN_ON(!dmab))
                return -ENXIO;
-       if (WARN_ON(!device))
-               return -EINVAL;
 
        dmab->dev.type = type;
        dmab->dev.dev = device;
 
        dmab->dev.type = type;
        dmab->dev.dev = device;
@@ -129,7 +134,7 @@ int snd_dma_alloc_pages(int type, struct device *device, size_t size,
        switch (type) {
        case SNDRV_DMA_TYPE_CONTINUOUS:
                dmab->area = alloc_pages_exact(size,
        switch (type) {
        case SNDRV_DMA_TYPE_CONTINUOUS:
                dmab->area = alloc_pages_exact(size,
-                                              (__force gfp_t)(unsigned long)device);
+                                              snd_mem_get_gfp_flags(device));
                dmab->addr = 0;
                break;
 #ifdef CONFIG_HAS_DMA
                dmab->addr = 0;
                break;
 #ifdef CONFIG_HAS_DMA