| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/sound/arm/pxa2xx-pcm.c -- ALSA PCM interface for the Intel PXA2xx chip | 
|  | 3 | * | 
|  | 4 | * Author:	Nicolas Pitre | 
|  | 5 | * Created:	Nov 30, 2004 | 
|  | 6 | * Copyright:	(C) 2004 MontaVista Software, Inc. | 
|  | 7 | * | 
|  | 8 | * This program is free software; you can redistribute it and/or modify | 
|  | 9 | * it under the terms of the GNU General Public License version 2 as | 
|  | 10 | * published by the Free Software Foundation. | 
|  | 11 | */ | 
|  | 12 |  | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 13 | #include <linux/dma-mapping.h> | 
|  | 14 |  | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 15 | #include <sound/core.h> | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 16 | #include <sound/soc.h> | 
| Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 17 | #include <sound/pxa2xx-lib.h> | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 18 |  | 
|  | 19 | #include "pxa2xx-pcm.h" | 
| Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 20 | #include "../../arm/pxa2xx-pcm.h" | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 21 |  | 
|  | 22 | static int pxa2xx_pcm_hw_params(struct snd_pcm_substream *substream, | 
|  | 23 | struct snd_pcm_hw_params *params) | 
|  | 24 | { | 
|  | 25 | struct snd_pcm_runtime *runtime = substream->runtime; | 
|  | 26 | struct pxa2xx_runtime_data *prtd = runtime->private_data; | 
|  | 27 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 
| Andrew Johnson | a8f5d0a | 2007-02-02 17:21:50 +0100 | [diff] [blame] | 28 | struct pxa2xx_pcm_dma_params *dma = rtd->dai->cpu_dai->dma_data; | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 29 | int ret; | 
|  | 30 |  | 
| Andrew Johnson | a8f5d0a | 2007-02-02 17:21:50 +0100 | [diff] [blame] | 31 | /* return if this is a bufferless transfer e.g. | 
|  | 32 | * codec <--> BT codec or GSM modem -- lg FIXME */ | 
| Mark Brown | b32432e | 2008-04-23 15:14:18 +0200 | [diff] [blame] | 33 | if (!dma) | 
|  | 34 | return 0; | 
| Andrew Johnson | a8f5d0a | 2007-02-02 17:21:50 +0100 | [diff] [blame] | 35 |  | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 36 | /* this may get called several times by oss emulation | 
|  | 37 | * with different params */ | 
|  | 38 | if (prtd->params == NULL) { | 
|  | 39 | prtd->params = dma; | 
|  | 40 | ret = pxa_request_dma(prtd->params->name, DMA_PRIO_LOW, | 
|  | 41 | pxa2xx_pcm_dma_irq, substream); | 
|  | 42 | if (ret < 0) | 
|  | 43 | return ret; | 
|  | 44 | prtd->dma_ch = ret; | 
|  | 45 | } else if (prtd->params != dma) { | 
|  | 46 | pxa_free_dma(prtd->dma_ch); | 
|  | 47 | prtd->params = dma; | 
|  | 48 | ret = pxa_request_dma(prtd->params->name, DMA_PRIO_LOW, | 
|  | 49 | pxa2xx_pcm_dma_irq, substream); | 
|  | 50 | if (ret < 0) | 
|  | 51 | return ret; | 
|  | 52 | prtd->dma_ch = ret; | 
|  | 53 | } | 
|  | 54 |  | 
| Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 55 | return __pxa2xx_pcm_hw_params(substream, params); | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 56 | } | 
|  | 57 |  | 
|  | 58 | static int pxa2xx_pcm_hw_free(struct snd_pcm_substream *substream) | 
|  | 59 | { | 
|  | 60 | struct pxa2xx_runtime_data *prtd = substream->runtime->private_data; | 
|  | 61 |  | 
| Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 62 | __pxa2xx_pcm_hw_free(substream); | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 63 |  | 
|  | 64 | if (prtd->dma_ch) { | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 65 | pxa_free_dma(prtd->dma_ch); | 
|  | 66 | prtd->dma_ch = 0; | 
|  | 67 | } | 
|  | 68 |  | 
|  | 69 | return 0; | 
|  | 70 | } | 
|  | 71 |  | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 72 | struct snd_pcm_ops pxa2xx_pcm_ops = { | 
| Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 73 | .open		= __pxa2xx_pcm_open, | 
|  | 74 | .close		= __pxa2xx_pcm_close, | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 75 | .ioctl		= snd_pcm_lib_ioctl, | 
|  | 76 | .hw_params	= pxa2xx_pcm_hw_params, | 
|  | 77 | .hw_free	= pxa2xx_pcm_hw_free, | 
| Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 78 | .prepare	= __pxa2xx_pcm_prepare, | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 79 | .trigger	= pxa2xx_pcm_trigger, | 
|  | 80 | .pointer	= pxa2xx_pcm_pointer, | 
|  | 81 | .mmap		= pxa2xx_pcm_mmap, | 
|  | 82 | }; | 
|  | 83 |  | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 84 | static u64 pxa2xx_pcm_dmamask = DMA_32BIT_MASK; | 
|  | 85 |  | 
| Dmitry Baryshkov | 8a33de9 | 2008-07-29 11:42:24 +0100 | [diff] [blame] | 86 | static int pxa2xx_soc_pcm_new(struct snd_card *card, struct snd_soc_dai *dai, | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 87 | struct snd_pcm *pcm) | 
|  | 88 | { | 
|  | 89 | int ret = 0; | 
|  | 90 |  | 
|  | 91 | if (!card->dev->dma_mask) | 
|  | 92 | card->dev->dma_mask = &pxa2xx_pcm_dmamask; | 
|  | 93 | if (!card->dev->coherent_dma_mask) | 
|  | 94 | card->dev->coherent_dma_mask = DMA_32BIT_MASK; | 
|  | 95 |  | 
|  | 96 | if (dai->playback.channels_min) { | 
|  | 97 | ret = pxa2xx_pcm_preallocate_dma_buffer(pcm, | 
|  | 98 | SNDRV_PCM_STREAM_PLAYBACK); | 
|  | 99 | if (ret) | 
|  | 100 | goto out; | 
|  | 101 | } | 
|  | 102 |  | 
|  | 103 | if (dai->capture.channels_min) { | 
|  | 104 | ret = pxa2xx_pcm_preallocate_dma_buffer(pcm, | 
|  | 105 | SNDRV_PCM_STREAM_CAPTURE); | 
|  | 106 | if (ret) | 
|  | 107 | goto out; | 
|  | 108 | } | 
|  | 109 | out: | 
|  | 110 | return ret; | 
|  | 111 | } | 
|  | 112 |  | 
|  | 113 | struct snd_soc_platform pxa2xx_soc_platform = { | 
|  | 114 | .name		= "pxa2xx-audio", | 
|  | 115 | .pcm_ops 	= &pxa2xx_pcm_ops, | 
| Dmitry Baryshkov | 8a33de9 | 2008-07-29 11:42:24 +0100 | [diff] [blame] | 116 | .pcm_new	= pxa2xx_soc_pcm_new, | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 117 | .pcm_free	= pxa2xx_pcm_free_dma_buffers, | 
|  | 118 | }; | 
| Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 119 | EXPORT_SYMBOL_GPL(pxa2xx_soc_platform); | 
|  | 120 |  | 
|  | 121 | MODULE_AUTHOR("Nicolas Pitre"); | 
|  | 122 | MODULE_DESCRIPTION("Intel PXA2xx PCM DMA module"); | 
|  | 123 | MODULE_LICENSE("GPL"); |