return snd_dmaengine_pcm_pointer(substream);
 }
 
-static int dmaengine_copy_user(struct snd_soc_component *component,
-                              struct snd_pcm_substream *substream,
-                              int channel, unsigned long hwoff,
-                              void __user *buf, unsigned long bytes)
+static int dmaengine_copy(struct snd_soc_component *component,
+                         struct snd_pcm_substream *substream,
+                         int channel, unsigned long hwoff,
+                         struct iov_iter *buf, unsigned long bytes)
 {
        struct snd_pcm_runtime *runtime = substream->runtime;
        struct dmaengine_pcm *pcm = soc_component_to_pcm(component);
        bool is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
        void *dma_ptr = runtime->dma_area + hwoff +
                        channel * (runtime->dma_bytes / runtime->channels);
+       void *ptr = (void __force *)iter_iov_addr(buf);
 
        if (is_playback)
-               if (copy_from_user(dma_ptr, buf, bytes))
+               if (copy_from_iter(dma_ptr, bytes, buf) != bytes)
                        return -EFAULT;
 
        if (process) {
-               int ret = process(substream, channel, hwoff, (__force void *)buf, bytes);
+               int ret = process(substream, channel, hwoff, ptr, bytes);
                if (ret < 0)
                        return ret;
        }
 
        if (!is_playback)
-               if (copy_to_user(buf, dma_ptr, bytes))
+               if (copy_to_iter(dma_ptr, bytes, buf) != bytes)
                        return -EFAULT;
 
        return 0;
        .hw_params      = dmaengine_pcm_hw_params,
        .trigger        = dmaengine_pcm_trigger,
        .pointer        = dmaengine_pcm_pointer,
-       .copy_user      = dmaengine_copy_user,
+       .copy           = dmaengine_copy,
        .pcm_construct  = dmaengine_pcm_new,
 };