aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2013-12-19 10:55:02 -0500
committerMark Brown <broonie@linaro.org>2014-01-07 10:37:19 -0500
commit609a3050b8a516d12cf6dc0e8beb5875ededad3d (patch)
treed600134f933de19a7cb85757a1299a6f5e3769cc /sound
parentae276e93b8ccb933c8cfca368427d1eafd07128d (diff)
ASoC: ux500_pcm: Stop pretending that we support varying address widths
The Slave Config's addr_width attribute is populated by data_width of dma_cfg, which in turn is derived from dma_params' data_size attribute and that comes from the slot_width which is always 16 bits (2 Bytes). We're cutting out the middle man here and just setting the DMA Slave Config directly. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/ux500/ux500_pcm.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sound/soc/ux500/ux500_pcm.c b/sound/soc/ux500/ux500_pcm.c
index ce554de5d9dc..32d457232110 100644
--- a/sound/soc/ux500/ux500_pcm.c
+++ b/sound/soc/ux500/ux500_pcm.c
@@ -109,20 +109,19 @@ static int ux500_pcm_prepare_slave_config(struct snd_pcm_substream *substream,
109{ 109{
110 struct snd_soc_pcm_runtime *rtd = substream->private_data; 110 struct snd_soc_pcm_runtime *rtd = substream->private_data;
111 struct ux500_msp_dma_params *dma_params; 111 struct ux500_msp_dma_params *dma_params;
112 struct stedma40_chan_cfg *dma_cfg;
113 int ret; 112 int ret;
114 113
115 dma_params = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); 114 dma_params = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
116 dma_cfg = dma_params->dma_cfg;
117 115
118 ret = snd_hwparams_to_dma_slave_config(substream, params, slave_config); 116 ret = snd_hwparams_to_dma_slave_config(substream, params, slave_config);
119 if (ret) 117 if (ret)
120 return ret; 118 return ret;
121 119
122 slave_config->dst_maxburst = 4; 120 slave_config->dst_maxburst = 4;
123 slave_config->dst_addr_width = dma_cfg->dst_info.data_width;
124 slave_config->src_maxburst = 4; 121 slave_config->src_maxburst = 4;
125 slave_config->src_addr_width = dma_cfg->src_info.data_width; 122
123 slave_config->src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
124 slave_config->dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
126 125
127 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 126 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
128 slave_config->dst_addr = dma_params->tx_rx_addr; 127 slave_config->dst_addr = dma_params->tx_rx_addr;