[PATCH V2 01/10] ASoc: mxs: add mxs-pcm driver
Dong Aisheng-B29396
B29396 at freescale.com
Wed Jul 13 04:17:07 EDT 2011
> -----Original Message-----
> From: Russell King - ARM Linux [mailto:linux at arm.linux.org.uk]
> Sent: Wednesday, July 13, 2011 3:45 PM
> To: Dong Aisheng-B29396
> Cc: alsa-devel at alsa-project.org; s.hauer at pengutronix.de;
> broonie at opensource.wolfsonmicro.com; lrg at ti.com; linux-arm-
> kernel at lists.infradead.org; u.kleine-koenig at pengutronix.de
> Subject: Re: [PATCH V2 01/10] ASoc: mxs: add mxs-pcm driver
>
> On Tue, Jul 12, 2011 at 11:04:36PM +0800, Dong Aisheng wrote:
> > +static int mxs_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int
> > +stream) {
> > + struct snd_pcm_substream *substream = pcm-
> >streams[stream].substream;
> > + struct snd_dma_buffer *buf = &substream->dma_buffer;
> > + size_t size = 64 * 1024;
> > +
> > + buf->dev.type = SNDRV_DMA_TYPE_DEV;
> > + buf->dev.dev = pcm->card->dev;
> > + buf->private_data = NULL;
> > + buf->area = dma_alloc_writecombine(pcm->card->dev, size,
> > + &buf->addr, GFP_KERNEL);
> ...
> > +static int snd_mxs_pcm_mmap(struct snd_pcm_substream *substream,
> > + struct vm_area_struct *vma)
> > +{
> > + struct snd_pcm_runtime *runtime = substream->runtime;
> > + int ret;
> > +
> > + ret = dma_mmap_coherent(NULL, vma, runtime->dma_area,
> > + runtime->dma_addr, runtime->dma_bytes);
>
> This is wrong. Hint 1:
>
> int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma,
> void *cpu_addr, dma_addr_t dma_addr, size_t
> size)
>
> Hint 2: struct device *dev - you have one above.
Got it.
Thanks for the reminder.
Regards
Dong Aisheng
More information about the linux-arm-kernel
mailing list