Blame view

kernel/linux-imx6_3.14.28/sound/soc/atmel/atmel-pcm.c 3.29 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  /*
   * atmel-pcm.c  --  ALSA PCM interface for the Atmel atmel SoC.
   *
   *  Copyright (C) 2005 SAN People
   *  Copyright (C) 2008 Atmel
   *
   * Authors: Sedji Gaouaou <sedji.gaouaou@atmel.com>
   *
   * Based on at91-pcm. by:
   * Frank Mandarino <fmandarino@endrelia.com>
   * Copyright 2006 Endrelia Technologies Inc.
   *
   * Based on pxa2xx-pcm.c by:
   *
   * Author:	Nicolas Pitre
   * Created:	Nov 30, 2004
   * Copyright:	(C) 2004 MontaVista Software, Inc.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   */
  
  #include <linux/module.h>
  #include <linux/dma-mapping.h>
  #include <sound/pcm.h>
  #include <sound/soc.h>
  #include "atmel-pcm.h"
  
  static int atmel_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 = ATMEL_SSC_DMABUF_SIZE;
  
  	buf->dev.type = SNDRV_DMA_TYPE_DEV;
  	buf->dev.dev = pcm->card->dev;
  	buf->private_data = NULL;
  	buf->area = dma_alloc_coherent(pcm->card->dev, size,
  			&buf->addr, GFP_KERNEL);
  	pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%zu
  ",
  			(void *)buf->area, (void *)(long)buf->addr, size);
  
  	if (!buf->area)
  		return -ENOMEM;
  
  	buf->bytes = size;
  	return 0;
  }
  
  int atmel_pcm_mmap(struct snd_pcm_substream *substream,
  	struct vm_area_struct *vma)
  {
  	return remap_pfn_range(vma, vma->vm_start,
  		       substream->dma_buffer.addr >> PAGE_SHIFT,
  		       vma->vm_end - vma->vm_start, vma->vm_page_prot);
  }
  EXPORT_SYMBOL_GPL(atmel_pcm_mmap);
  
  int atmel_pcm_new(struct snd_soc_pcm_runtime *rtd)
  {
  	struct snd_card *card = rtd->card->snd_card;
  	struct snd_pcm *pcm = rtd->pcm;
  	int ret;
  
  	ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32));
  	if (ret)
  		return ret;
  
  	if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  		pr_debug("atmel-pcm: allocating PCM playback DMA buffer
  ");
  		ret = atmel_pcm_preallocate_dma_buffer(pcm,
  			SNDRV_PCM_STREAM_PLAYBACK);
  		if (ret)
  			goto out;
  	}
  
  	if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  		pr_debug("atmel-pcm: allocating PCM capture DMA buffer
  ");
  		ret = atmel_pcm_preallocate_dma_buffer(pcm,
  			SNDRV_PCM_STREAM_CAPTURE);
  		if (ret)
  			goto out;
  	}
   out:
  	return ret;
  }
  EXPORT_SYMBOL_GPL(atmel_pcm_new);
  
  void atmel_pcm_free(struct snd_pcm *pcm)
  {
  	struct snd_pcm_substream *substream;
  	struct snd_dma_buffer *buf;
  	int stream;
  
  	for (stream = 0; stream < 2; stream++) {
  		substream = pcm->streams[stream].substream;
  		if (!substream)
  			continue;
  
  		buf = &substream->dma_buffer;
  		if (!buf->area)
  			continue;
  		dma_free_coherent(pcm->card->dev, buf->bytes,
  				  buf->area, buf->addr);
  		buf->area = NULL;
  	}
  }
  EXPORT_SYMBOL_GPL(atmel_pcm_free);