blob: f50a5abb470f8a82b57edde12db21e32eb0a274f [file] [log] [blame]
Jarkko Nikula2e747962008-04-25 13:55:19 +02001/*
2 * omap-mcbsp.c -- OMAP ALSA SoC DAI driver using McBSP port
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
Jarkko Nikulab08f7a62009-04-17 14:42:26 +03006 * Contact: Jarkko Nikula <jhnikula@gmail.com>
7 * Peter Ujfalusi <peter.ujfalusi@nokia.com>
Jarkko Nikula2e747962008-04-25 13:55:19 +02008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/device.h>
28#include <sound/core.h>
29#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/initval.h>
32#include <sound/soc.h>
33
Tony Lindgrence491cf2009-10-20 09:40:47 -070034#include <plat/control.h>
35#include <plat/dma.h>
36#include <plat/mcbsp.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020037#include "omap-mcbsp.h"
38#include "omap-pcm.h"
39
Jarkko Nikula0b604852008-11-12 17:05:51 +020040#define OMAP_MCBSP_RATES (SNDRV_PCM_RATE_8000_96000)
Jarkko Nikula2e747962008-04-25 13:55:19 +020041
Ilkka Koskinen83905c12010-02-22 12:21:12 +000042#define OMAP_MCBSP_SOC_SINGLE_S16_EXT(xname, xmin, xmax, \
43 xhandler_get, xhandler_put) \
44{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
45 .info = omap_mcbsp_st_info_volsw, \
46 .get = xhandler_get, .put = xhandler_put, \
47 .private_value = (unsigned long) &(struct soc_mixer_control) \
48 {.min = xmin, .max = xmax} }
49
Jarkko Nikula2e747962008-04-25 13:55:19 +020050struct omap_mcbsp_data {
51 unsigned int bus_id;
52 struct omap_mcbsp_reg_cfg regs;
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +030053 unsigned int fmt;
Jarkko Nikula2e747962008-04-25 13:55:19 +020054 /*
55 * Flags indicating is the bus already activated and configured by
56 * another substream
57 */
58 int active;
59 int configured;
Graeme Gregory5f63ef92009-11-09 19:02:15 +000060 unsigned int in_freq;
61 int clk_div;
Peter Ujfalusi3f024032010-06-03 07:39:35 +030062 int wlen;
Jarkko Nikula2e747962008-04-25 13:55:19 +020063};
64
65#define to_mcbsp(priv) container_of((priv), struct omap_mcbsp_data, bus_id)
66
67static struct omap_mcbsp_data mcbsp_data[NUM_LINKS];
68
69/*
70 * Stream DMA parameters. DMA request line and port address are set runtime
71 * since they are different between OMAP1 and later OMAPs
72 */
Jarkko Nikula2e897132008-10-09 15:57:21 +030073static struct omap_pcm_dma_data omap_mcbsp_dai_dma_params[NUM_LINKS][2];
Jarkko Nikula2e747962008-04-25 13:55:19 +020074
75#if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX)
76static const int omap1_dma_reqs[][2] = {
77 { OMAP_DMA_MCBSP1_TX, OMAP_DMA_MCBSP1_RX },
78 { OMAP_DMA_MCBSP2_TX, OMAP_DMA_MCBSP2_RX },
79 { OMAP_DMA_MCBSP3_TX, OMAP_DMA_MCBSP3_RX },
80};
81static const unsigned long omap1_mcbsp_port[][2] = {
82 { OMAP1510_MCBSP1_BASE + OMAP_MCBSP_REG_DXR1,
83 OMAP1510_MCBSP1_BASE + OMAP_MCBSP_REG_DRR1 },
84 { OMAP1510_MCBSP2_BASE + OMAP_MCBSP_REG_DXR1,
85 OMAP1510_MCBSP2_BASE + OMAP_MCBSP_REG_DRR1 },
86 { OMAP1510_MCBSP3_BASE + OMAP_MCBSP_REG_DXR1,
87 OMAP1510_MCBSP3_BASE + OMAP_MCBSP_REG_DRR1 },
88};
89#else
90static const int omap1_dma_reqs[][2] = {};
91static const unsigned long omap1_mcbsp_port[][2] = {};
92#endif
Jarkko Nikula406e2c42008-10-09 15:57:20 +030093
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080094#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Jarkko Nikula406e2c42008-10-09 15:57:20 +030095static const int omap24xx_dma_reqs[][2] = {
Jarkko Nikula2e747962008-04-25 13:55:19 +020096 { OMAP24XX_DMA_MCBSP1_TX, OMAP24XX_DMA_MCBSP1_RX },
97 { OMAP24XX_DMA_MCBSP2_TX, OMAP24XX_DMA_MCBSP2_RX },
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080098#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3)
Jarkko Nikula406e2c42008-10-09 15:57:20 +030099 { OMAP24XX_DMA_MCBSP3_TX, OMAP24XX_DMA_MCBSP3_RX },
100 { OMAP24XX_DMA_MCBSP4_TX, OMAP24XX_DMA_MCBSP4_RX },
101 { OMAP24XX_DMA_MCBSP5_TX, OMAP24XX_DMA_MCBSP5_RX },
102#endif
Jarkko Nikula2e747962008-04-25 13:55:19 +0200103};
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300104#else
105static const int omap24xx_dma_reqs[][2] = {};
106#endif
107
108#if defined(CONFIG_ARCH_OMAP2420)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200109static const unsigned long omap2420_mcbsp_port[][2] = {
110 { OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DXR1,
111 OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DRR1 },
112 { OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR1,
113 OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR1 },
114};
115#else
Jarkko Nikula2e747962008-04-25 13:55:19 +0200116static const unsigned long omap2420_mcbsp_port[][2] = {};
117#endif
118
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300119#if defined(CONFIG_ARCH_OMAP2430)
120static const unsigned long omap2430_mcbsp_port[][2] = {
121 { OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DXR,
122 OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DRR },
123 { OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR,
124 OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR },
125 { OMAP2430_MCBSP3_BASE + OMAP_MCBSP_REG_DXR,
126 OMAP2430_MCBSP3_BASE + OMAP_MCBSP_REG_DRR },
127 { OMAP2430_MCBSP4_BASE + OMAP_MCBSP_REG_DXR,
128 OMAP2430_MCBSP4_BASE + OMAP_MCBSP_REG_DRR },
129 { OMAP2430_MCBSP5_BASE + OMAP_MCBSP_REG_DXR,
130 OMAP2430_MCBSP5_BASE + OMAP_MCBSP_REG_DRR },
131};
132#else
133static const unsigned long omap2430_mcbsp_port[][2] = {};
134#endif
135
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800136#if defined(CONFIG_ARCH_OMAP3)
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300137static const unsigned long omap34xx_mcbsp_port[][2] = {
138 { OMAP34XX_MCBSP1_BASE + OMAP_MCBSP_REG_DXR,
139 OMAP34XX_MCBSP1_BASE + OMAP_MCBSP_REG_DRR },
140 { OMAP34XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR,
141 OMAP34XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR },
142 { OMAP34XX_MCBSP3_BASE + OMAP_MCBSP_REG_DXR,
143 OMAP34XX_MCBSP3_BASE + OMAP_MCBSP_REG_DRR },
144 { OMAP34XX_MCBSP4_BASE + OMAP_MCBSP_REG_DXR,
145 OMAP34XX_MCBSP4_BASE + OMAP_MCBSP_REG_DRR },
146 { OMAP34XX_MCBSP5_BASE + OMAP_MCBSP_REG_DXR,
147 OMAP34XX_MCBSP5_BASE + OMAP_MCBSP_REG_DRR },
148};
149#else
150static const unsigned long omap34xx_mcbsp_port[][2] = {};
151#endif
152
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300153static void omap_mcbsp_set_threshold(struct snd_pcm_substream *substream)
154{
155 struct snd_soc_pcm_runtime *rtd = substream->private_data;
156 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
157 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300158 struct omap_pcm_dma_data *dma_data;
Eduardo Valentina0a499c2009-08-20 16:18:26 +0300159 int dma_op_mode = omap_mcbsp_get_dma_op_mode(mcbsp_data->bus_id);
Peter Ujfalusi3f024032010-06-03 07:39:35 +0300160 int words;
Eduardo Valentina0a499c2009-08-20 16:18:26 +0300161
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300162 dma_data = snd_soc_dai_get_dma_data(rtd->dai->cpu_dai, substream);
163
Eduardo Valentina0a499c2009-08-20 16:18:26 +0300164 /* TODO: Currently, MODE_ELEMENT == MODE_FRAME */
165 if (dma_op_mode == MCBSP_DMA_MODE_THRESHOLD)
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300166 /*
167 * Configure McBSP threshold based on either:
168 * packet_size, when the sDMA is in packet mode, or
169 * based on the period size.
170 */
171 if (dma_data->packet_size)
172 words = dma_data->packet_size;
173 else
174 words = snd_pcm_lib_period_bytes(substream) /
Peter Ujfalusi3f024032010-06-03 07:39:35 +0300175 (mcbsp_data->wlen / 8);
Eduardo Valentina0a499c2009-08-20 16:18:26 +0300176 else
Peter Ujfalusi3f024032010-06-03 07:39:35 +0300177 words = 1;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300178
179 /* Configure McBSP internal buffer usage */
180 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Peter Ujfalusi3f024032010-06-03 07:39:35 +0300181 omap_mcbsp_set_tx_threshold(mcbsp_data->bus_id, words);
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300182 else
Peter Ujfalusi3f024032010-06-03 07:39:35 +0300183 omap_mcbsp_set_rx_threshold(mcbsp_data->bus_id, words);
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300184}
185
Peter Ujfalusiddc29b02010-06-03 07:39:36 +0300186static int omap_mcbsp_hwrule_min_buffersize(struct snd_pcm_hw_params *params,
187 struct snd_pcm_hw_rule *rule)
188{
189 struct snd_interval *buffer_size = hw_param_interval(params,
190 SNDRV_PCM_HW_PARAM_BUFFER_SIZE);
191 struct snd_interval *channels = hw_param_interval(params,
192 SNDRV_PCM_HW_PARAM_CHANNELS);
193 struct omap_mcbsp_data *mcbsp_data = rule->private;
194 struct snd_interval frames;
195 int size;
196
197 snd_interval_any(&frames);
198 size = omap_mcbsp_get_fifo_size(mcbsp_data->bus_id);
199
200 frames.min = size / channels->min;
201 frames.integer = 1;
202 return snd_interval_refine(buffer_size, &frames);
203}
204
Mark Browndee89c42008-11-18 22:11:38 +0000205static int omap_mcbsp_dai_startup(struct snd_pcm_substream *substream,
206 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200207{
208 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100209 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200210 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300211 int bus_id = mcbsp_data->bus_id;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200212 int err = 0;
213
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300214 if (!cpu_dai->active)
215 err = omap_mcbsp_request(bus_id);
216
Peter Ujfalusiddc29b02010-06-03 07:39:36 +0300217 /*
218 * OMAP3 McBSP FIFO is word structured.
219 * McBSP2 has 1024 + 256 = 1280 word long buffer,
220 * McBSP1,3,4,5 has 128 word long buffer
221 * This means that the size of the FIFO depends on the sample format.
222 * For example on McBSP3:
223 * 16bit samples: size is 128 * 2 = 256 bytes
224 * 32bit samples: size is 128 * 4 = 512 bytes
225 * It is simpler to place constraint for buffer and period based on
226 * channels.
227 * McBSP3 as example again (16 or 32 bit samples):
228 * 1 channel (mono): size is 128 frames (128 words)
229 * 2 channels (stereo): size is 128 / 2 = 64 frames (2 * 64 words)
230 * 4 channels: size is 128 / 4 = 32 frames (4 * 32 words)
231 */
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300232 if (cpu_is_omap343x()) {
Jarkko Nikula69849922009-03-27 15:32:01 +0200233 /*
Peter Ujfalusi998a8a62010-07-29 09:51:28 +0300234 * Rule for the buffer size. We should not allow
Peter Ujfalusiddc29b02010-06-03 07:39:36 +0300235 * smaller buffer than the FIFO size to avoid underruns
236 */
237 snd_pcm_hw_rule_add(substream->runtime, 0,
238 SNDRV_PCM_HW_PARAM_CHANNELS,
239 omap_mcbsp_hwrule_min_buffersize,
240 mcbsp_data,
241 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, -1);
242
Peter Ujfalusi998a8a62010-07-29 09:51:28 +0300243 /* Make sure, that the period size is always even */
244 snd_pcm_hw_constraint_step(substream->runtime, 0,
245 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 2);
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300246 }
Jarkko Nikula2e747962008-04-25 13:55:19 +0200247
248 return err;
249}
250
Mark Browndee89c42008-11-18 22:11:38 +0000251static void omap_mcbsp_dai_shutdown(struct snd_pcm_substream *substream,
252 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200253{
254 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100255 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200256 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
257
258 if (!cpu_dai->active) {
259 omap_mcbsp_free(mcbsp_data->bus_id);
260 mcbsp_data->configured = 0;
261 }
262}
263
Mark Browndee89c42008-11-18 22:11:38 +0000264static int omap_mcbsp_dai_trigger(struct snd_pcm_substream *substream, int cmd,
265 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200266{
267 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100268 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200269 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300270 int err = 0, play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200271
272 switch (cmd) {
273 case SNDRV_PCM_TRIGGER_START:
274 case SNDRV_PCM_TRIGGER_RESUME:
275 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300276 mcbsp_data->active++;
277 omap_mcbsp_start(mcbsp_data->bus_id, play, !play);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200278 break;
279
280 case SNDRV_PCM_TRIGGER_STOP:
281 case SNDRV_PCM_TRIGGER_SUSPEND:
282 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300283 omap_mcbsp_stop(mcbsp_data->bus_id, play, !play);
284 mcbsp_data->active--;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200285 break;
286 default:
287 err = -EINVAL;
288 }
289
290 return err;
291}
292
Peter Ujfalusi75581d22010-03-03 15:08:09 +0200293static snd_pcm_sframes_t omap_mcbsp_dai_delay(
294 struct snd_pcm_substream *substream,
295 struct snd_soc_dai *dai)
296{
297 struct snd_soc_pcm_runtime *rtd = substream->private_data;
298 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
299 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
300 u16 fifo_use;
301 snd_pcm_sframes_t delay;
302
303 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
304 fifo_use = omap_mcbsp_get_tx_delay(mcbsp_data->bus_id);
305 else
306 fifo_use = omap_mcbsp_get_rx_delay(mcbsp_data->bus_id);
307
308 /*
309 * Divide the used locations with the channel count to get the
310 * FIFO usage in samples (don't care about partial samples in the
311 * buffer).
312 */
313 delay = fifo_use / substream->runtime->channels;
314
315 return delay;
316}
317
Jarkko Nikula2e747962008-04-25 13:55:19 +0200318static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000319 struct snd_pcm_hw_params *params,
320 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200321{
322 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100323 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200324 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
325 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
Peter Ujfalusi81ec0272010-07-29 09:51:26 +0300326 struct omap_pcm_dma_data *dma_data;
327 int dma, bus_id = mcbsp_data->bus_id;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300328 int wlen, channels, wpf, sync_mode = OMAP_DMA_SYNC_ELEMENT;
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300329 int pkt_size = 0;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200330 unsigned long port;
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000331 unsigned int format, div, framesize, master;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200332
Peter Ujfalusi81ec0272010-07-29 09:51:26 +0300333 dma_data = &omap_mcbsp_dai_dma_params[cpu_dai->id][substream->stream];
Jarkko Nikula2e747962008-04-25 13:55:19 +0200334 if (cpu_class_is_omap1()) {
335 dma = omap1_dma_reqs[bus_id][substream->stream];
336 port = omap1_mcbsp_port[bus_id][substream->stream];
337 } else if (cpu_is_omap2420()) {
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300338 dma = omap24xx_dma_reqs[bus_id][substream->stream];
Jarkko Nikula2e747962008-04-25 13:55:19 +0200339 port = omap2420_mcbsp_port[bus_id][substream->stream];
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300340 } else if (cpu_is_omap2430()) {
341 dma = omap24xx_dma_reqs[bus_id][substream->stream];
342 port = omap2430_mcbsp_port[bus_id][substream->stream];
343 } else if (cpu_is_omap343x()) {
344 dma = omap24xx_dma_reqs[bus_id][substream->stream];
345 port = omap34xx_mcbsp_port[bus_id][substream->stream];
Jarkko Nikula2e747962008-04-25 13:55:19 +0200346 } else {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200347 return -ENODEV;
348 }
Sergey Lapind98508a2010-05-13 19:48:16 +0400349 switch (params_format(params)) {
350 case SNDRV_PCM_FORMAT_S16_LE:
Peter Ujfalusi81ec0272010-07-29 09:51:26 +0300351 dma_data->data_type = OMAP_DMA_DATA_TYPE_S16;
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300352 wlen = 16;
Sergey Lapind98508a2010-05-13 19:48:16 +0400353 break;
354 case SNDRV_PCM_FORMAT_S32_LE:
Peter Ujfalusi81ec0272010-07-29 09:51:26 +0300355 dma_data->data_type = OMAP_DMA_DATA_TYPE_S32;
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300356 wlen = 32;
Sergey Lapind98508a2010-05-13 19:48:16 +0400357 break;
358 default:
359 return -EINVAL;
360 }
Peter Ujfalusi15d01432010-07-29 09:51:25 +0300361 if (cpu_is_omap343x()) {
362 dma_data->set_threshold = omap_mcbsp_set_threshold;
363 /* TODO: Currently, MODE_ELEMENT == MODE_FRAME */
364 if (omap_mcbsp_get_dma_op_mode(bus_id) ==
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300365 MCBSP_DMA_MODE_THRESHOLD) {
366 int period_words, max_thrsh;
367
368 period_words = params_period_bytes(params) / (wlen / 8);
369 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
370 max_thrsh = omap_mcbsp_get_max_tx_threshold(
371 mcbsp_data->bus_id);
372 else
373 max_thrsh = omap_mcbsp_get_max_rx_threshold(
374 mcbsp_data->bus_id);
375 /*
376 * If the period contains less or equal number of words,
377 * we are using the original threshold mode setup:
378 * McBSP threshold = sDMA frame size = period_size
379 * Otherwise we switch to sDMA packet mode:
380 * McBSP threshold = sDMA packet size
381 * sDMA frame size = period size
382 */
383 if (period_words > max_thrsh) {
384 int divider = 0;
385
386 /*
387 * Look for the biggest threshold value, which
388 * divides the period size evenly.
389 */
390 divider = period_words / max_thrsh;
391 if (period_words % max_thrsh)
392 divider++;
393 while (period_words % divider &&
394 divider < period_words)
395 divider++;
396 if (divider == period_words)
397 return -EINVAL;
398
399 pkt_size = period_words / divider;
400 sync_mode = OMAP_DMA_SYNC_PACKET;
401 } else {
402 sync_mode = OMAP_DMA_SYNC_FRAME;
403 }
404 }
Peter Ujfalusi15d01432010-07-29 09:51:25 +0300405 }
406
407 dma_data->name = substream->stream ? "Audio Capture" : "Audio Playback";
408 dma_data->dma_req = dma;
409 dma_data->port_addr = port;
410 dma_data->sync_mode = sync_mode;
Peter Ujfalusicf80e152010-07-29 09:51:27 +0300411 dma_data->packet_size = pkt_size;
Daniel Mackfd23b7d2010-03-19 14:52:55 +0000412
Peter Ujfalusi81ec0272010-07-29 09:51:26 +0300413 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200414
415 if (mcbsp_data->configured) {
416 /* McBSP already configured by another stream */
417 return 0;
418 }
419
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300420 format = mcbsp_data->fmt & SND_SOC_DAIFMT_FORMAT_MASK;
421 wpf = channels = params_channels(params);
Peter Ujfalusi299a1512010-03-19 12:27:31 +0200422 if (channels == 2 && (format == SND_SOC_DAIFMT_I2S ||
423 format == SND_SOC_DAIFMT_LEFT_J)) {
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000424 /* Use dual-phase frames */
425 regs->rcr2 |= RPHASE;
426 regs->xcr2 |= XPHASE;
427 /* Set 1 word per (McBSP) frame for phase1 and phase2 */
428 wpf--;
429 regs->rcr2 |= RFRLEN2(wpf - 1);
430 regs->xcr2 |= XFRLEN2(wpf - 1);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200431 }
432
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000433 regs->rcr1 |= RFRLEN1(wpf - 1);
434 regs->xcr1 |= XFRLEN1(wpf - 1);
435
Jarkko Nikula2e747962008-04-25 13:55:19 +0200436 switch (params_format(params)) {
437 case SNDRV_PCM_FORMAT_S16_LE:
438 /* Set word lengths */
439 regs->rcr2 |= RWDLEN2(OMAP_MCBSP_WORD_16);
440 regs->rcr1 |= RWDLEN1(OMAP_MCBSP_WORD_16);
441 regs->xcr2 |= XWDLEN2(OMAP_MCBSP_WORD_16);
442 regs->xcr1 |= XWDLEN1(OMAP_MCBSP_WORD_16);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200443 break;
Sergey Lapind98508a2010-05-13 19:48:16 +0400444 case SNDRV_PCM_FORMAT_S32_LE:
445 /* Set word lengths */
Sergey Lapind98508a2010-05-13 19:48:16 +0400446 regs->rcr2 |= RWDLEN2(OMAP_MCBSP_WORD_32);
447 regs->rcr1 |= RWDLEN1(OMAP_MCBSP_WORD_32);
448 regs->xcr2 |= XWDLEN2(OMAP_MCBSP_WORD_32);
449 regs->xcr1 |= XWDLEN1(OMAP_MCBSP_WORD_32);
450 break;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200451 default:
452 /* Unsupported PCM format */
453 return -EINVAL;
454 }
455
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000456 /* In McBSP master modes, FRAME (i.e. sample rate) is generated
457 * by _counting_ BCLKs. Calculate frame size in BCLKs */
458 master = mcbsp_data->fmt & SND_SOC_DAIFMT_MASTER_MASK;
459 if (master == SND_SOC_DAIFMT_CBS_CFS) {
460 div = mcbsp_data->clk_div ? mcbsp_data->clk_div : 1;
461 framesize = (mcbsp_data->in_freq / div) / params_rate(params);
462
463 if (framesize < wlen * channels) {
464 printk(KERN_ERR "%s: not enough bandwidth for desired rate and "
465 "channels\n", __func__);
466 return -EINVAL;
467 }
468 } else
469 framesize = wlen * channels;
470
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300471 /* Set FS period and length in terms of bit clock periods */
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300472 switch (format) {
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300473 case SND_SOC_DAIFMT_I2S:
Peter Ujfalusi299a1512010-03-19 12:27:31 +0200474 case SND_SOC_DAIFMT_LEFT_J:
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000475 regs->srgr2 |= FPER(framesize - 1);
476 regs->srgr1 |= FWID((framesize >> 1) - 1);
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300477 break;
Peter Ujfalusi3ba191c2009-04-15 15:38:56 +0300478 case SND_SOC_DAIFMT_DSP_A:
Jarkko Nikulabd258672008-12-22 10:21:36 +0200479 case SND_SOC_DAIFMT_DSP_B:
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000480 regs->srgr2 |= FPER(framesize - 1);
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300481 regs->srgr1 |= FWID(0);
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300482 break;
483 }
484
Jarkko Nikula2e747962008-04-25 13:55:19 +0200485 omap_mcbsp_config(bus_id, &mcbsp_data->regs);
Peter Ujfalusi3f024032010-06-03 07:39:35 +0300486 mcbsp_data->wlen = wlen;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200487 mcbsp_data->configured = 1;
488
489 return 0;
490}
491
492/*
493 * This must be called before _set_clkdiv and _set_sysclk since McBSP register
494 * cache is initialized here
495 */
Liam Girdwood8687eb82008-07-07 16:08:07 +0100496static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai *cpu_dai,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200497 unsigned int fmt)
498{
499 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
500 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300501 unsigned int temp_fmt = fmt;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200502
503 if (mcbsp_data->configured)
504 return 0;
505
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300506 mcbsp_data->fmt = fmt;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200507 memset(regs, 0, sizeof(*regs));
508 /* Generic McBSP register settings */
509 regs->spcr2 |= XINTM(3) | FREE;
510 regs->spcr1 |= RINTM(3);
Eero Nurkkalac721bbd2009-08-20 16:18:23 +0300511 /* RFIG and XFIG are not defined in 34xx */
512 if (!cpu_is_omap34xx()) {
513 regs->rcr2 |= RFIG;
514 regs->xcr2 |= XFIG;
515 }
Misael Lopez Cruzef390c02009-01-29 13:29:46 +0200516 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
Jarkko Nikula32080af2009-08-23 12:24:26 +0300517 regs->xccr = DXENDLY(1) | XDMAEN | XDISABLE;
518 regs->rccr = RFULL_CYCLE | RDMAEN | RDISABLE;
Misael Lopez Cruzef390c02009-01-29 13:29:46 +0200519 }
Jarkko Nikula2e747962008-04-25 13:55:19 +0200520
521 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
522 case SND_SOC_DAIFMT_I2S:
523 /* 1-bit data delay */
524 regs->rcr2 |= RDATDLY(1);
525 regs->xcr2 |= XDATDLY(1);
526 break;
Peter Ujfalusi299a1512010-03-19 12:27:31 +0200527 case SND_SOC_DAIFMT_LEFT_J:
528 /* 0-bit data delay */
529 regs->rcr2 |= RDATDLY(0);
530 regs->xcr2 |= XDATDLY(0);
531 regs->spcr1 |= RJUST(2);
532 /* Invert FS polarity configuration */
533 temp_fmt ^= SND_SOC_DAIFMT_NB_IF;
534 break;
Peter Ujfalusi3ba191c2009-04-15 15:38:56 +0300535 case SND_SOC_DAIFMT_DSP_A:
536 /* 1-bit data delay */
537 regs->rcr2 |= RDATDLY(1);
538 regs->xcr2 |= XDATDLY(1);
539 /* Invert FS polarity configuration */
540 temp_fmt ^= SND_SOC_DAIFMT_NB_IF;
541 break;
Jarkko Nikulabd258672008-12-22 10:21:36 +0200542 case SND_SOC_DAIFMT_DSP_B:
Arun KS3336c5b2008-10-02 15:07:06 +0530543 /* 0-bit data delay */
544 regs->rcr2 |= RDATDLY(0);
545 regs->xcr2 |= XDATDLY(0);
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300546 /* Invert FS polarity configuration */
547 temp_fmt ^= SND_SOC_DAIFMT_NB_IF;
Arun KS3336c5b2008-10-02 15:07:06 +0530548 break;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200549 default:
550 /* Unsupported data format */
551 return -EINVAL;
552 }
553
554 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
555 case SND_SOC_DAIFMT_CBS_CFS:
556 /* McBSP master. Set FS and bit clocks as outputs */
557 regs->pcr0 |= FSXM | FSRM |
558 CLKXM | CLKRM;
559 /* Sample rate generator drives the FS */
560 regs->srgr2 |= FSGM;
561 break;
562 case SND_SOC_DAIFMT_CBM_CFM:
563 /* McBSP slave */
564 break;
565 default:
566 /* Unsupported master/slave configuration */
567 return -EINVAL;
568 }
569
570 /* Set bit clock (CLKX/CLKR) and FS polarities */
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300571 switch (temp_fmt & SND_SOC_DAIFMT_INV_MASK) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200572 case SND_SOC_DAIFMT_NB_NF:
573 /*
574 * Normal BCLK + FS.
575 * FS active low. TX data driven on falling edge of bit clock
576 * and RX data sampled on rising edge of bit clock.
577 */
578 regs->pcr0 |= FSXP | FSRP |
579 CLKXP | CLKRP;
580 break;
581 case SND_SOC_DAIFMT_NB_IF:
582 regs->pcr0 |= CLKXP | CLKRP;
583 break;
584 case SND_SOC_DAIFMT_IB_NF:
585 regs->pcr0 |= FSXP | FSRP;
586 break;
587 case SND_SOC_DAIFMT_IB_IF:
588 break;
589 default:
590 return -EINVAL;
591 }
592
593 return 0;
594}
595
Liam Girdwood8687eb82008-07-07 16:08:07 +0100596static int omap_mcbsp_dai_set_clkdiv(struct snd_soc_dai *cpu_dai,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200597 int div_id, int div)
598{
599 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
600 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
601
602 if (div_id != OMAP_MCBSP_CLKGDV)
603 return -ENODEV;
604
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000605 mcbsp_data->clk_div = div;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200606 regs->srgr1 |= CLKGDV(div - 1);
607
608 return 0;
609}
610
611static int omap_mcbsp_dai_set_clks_src(struct omap_mcbsp_data *mcbsp_data,
612 int clk_id)
613{
614 int sel_bit;
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300615 u16 reg, reg_devconf1 = OMAP243X_CONTROL_DEVCONF1;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200616
617 if (cpu_class_is_omap1()) {
618 /* OMAP1's can use only external source clock */
619 if (unlikely(clk_id == OMAP_MCBSP_SYSCLK_CLKS_FCLK))
620 return -EINVAL;
621 else
622 return 0;
623 }
624
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300625 if (cpu_is_omap2420() && mcbsp_data->bus_id > 1)
626 return -EINVAL;
627
628 if (cpu_is_omap343x())
629 reg_devconf1 = OMAP343X_CONTROL_DEVCONF1;
630
Jarkko Nikula2e747962008-04-25 13:55:19 +0200631 switch (mcbsp_data->bus_id) {
632 case 0:
633 reg = OMAP2_CONTROL_DEVCONF0;
634 sel_bit = 2;
635 break;
636 case 1:
637 reg = OMAP2_CONTROL_DEVCONF0;
638 sel_bit = 6;
639 break;
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300640 case 2:
641 reg = reg_devconf1;
642 sel_bit = 0;
643 break;
644 case 3:
645 reg = reg_devconf1;
646 sel_bit = 2;
647 break;
648 case 4:
649 reg = reg_devconf1;
650 sel_bit = 4;
651 break;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200652 default:
653 return -EINVAL;
654 }
655
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300656 if (clk_id == OMAP_MCBSP_SYSCLK_CLKS_FCLK)
657 omap_ctrl_writel(omap_ctrl_readl(reg) & ~(1 << sel_bit), reg);
658 else
659 omap_ctrl_writel(omap_ctrl_readl(reg) | (1 << sel_bit), reg);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200660
661 return 0;
662}
663
Liam Girdwood8687eb82008-07-07 16:08:07 +0100664static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200665 int clk_id, unsigned int freq,
666 int dir)
667{
668 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
669 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600670 struct omap_mcbsp_platform_data *pdata = cpu_dai->dev->platform_data;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200671 int err = 0;
672
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600673 /* The McBSP signal muxing functions are only available on McBSP1 */
674 if (clk_id == OMAP_MCBSP_CLKR_SRC_CLKR ||
675 clk_id == OMAP_MCBSP_CLKR_SRC_CLKX ||
676 clk_id == OMAP_MCBSP_FSR_SRC_FSR ||
677 clk_id == OMAP_MCBSP_FSR_SRC_FSX)
678 if (cpu_class_is_omap1() || mcbsp_data->bus_id != 0)
679 return -EINVAL;
680
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000681 mcbsp_data->in_freq = freq;
682
Jarkko Nikula2e747962008-04-25 13:55:19 +0200683 switch (clk_id) {
684 case OMAP_MCBSP_SYSCLK_CLK:
685 regs->srgr2 |= CLKSM;
686 break;
687 case OMAP_MCBSP_SYSCLK_CLKS_FCLK:
688 case OMAP_MCBSP_SYSCLK_CLKS_EXT:
689 err = omap_mcbsp_dai_set_clks_src(mcbsp_data, clk_id);
690 break;
691
692 case OMAP_MCBSP_SYSCLK_CLKX_EXT:
693 regs->srgr2 |= CLKSM;
694 case OMAP_MCBSP_SYSCLK_CLKR_EXT:
695 regs->pcr0 |= SCLKME;
696 break;
Jarkko Nikulad2c0bda2009-08-28 15:35:35 +0300697
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600698
Jarkko Nikulad2c0bda2009-08-28 15:35:35 +0300699 case OMAP_MCBSP_CLKR_SRC_CLKR:
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600700 omap2_mcbsp1_mux_clkr_src(CLKR_SRC_CLKR);
701 break;
Jarkko Nikulad2c0bda2009-08-28 15:35:35 +0300702 case OMAP_MCBSP_CLKR_SRC_CLKX:
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600703 omap2_mcbsp1_mux_clkr_src(CLKR_SRC_CLKX);
704 break;
Jarkko Nikulad2c0bda2009-08-28 15:35:35 +0300705 case OMAP_MCBSP_FSR_SRC_FSR:
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600706 omap2_mcbsp1_mux_fsr_src(FSR_SRC_FSR);
707 break;
Jarkko Nikulad2c0bda2009-08-28 15:35:35 +0300708 case OMAP_MCBSP_FSR_SRC_FSX:
Paul Walmsleycf4c87a2010-10-08 11:40:19 -0600709 omap2_mcbsp1_mux_fsr_src(FSR_SRC_FSX);
Jarkko Nikulad2c0bda2009-08-28 15:35:35 +0300710 break;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200711 default:
712 err = -ENODEV;
713 }
714
715 return err;
716}
717
Eric Miao6335d052009-03-03 09:41:00 +0800718static struct snd_soc_dai_ops omap_mcbsp_dai_ops = {
719 .startup = omap_mcbsp_dai_startup,
720 .shutdown = omap_mcbsp_dai_shutdown,
721 .trigger = omap_mcbsp_dai_trigger,
Peter Ujfalusi75581d22010-03-03 15:08:09 +0200722 .delay = omap_mcbsp_dai_delay,
Eric Miao6335d052009-03-03 09:41:00 +0800723 .hw_params = omap_mcbsp_dai_hw_params,
724 .set_fmt = omap_mcbsp_dai_set_dai_fmt,
725 .set_clkdiv = omap_mcbsp_dai_set_clkdiv,
726 .set_sysclk = omap_mcbsp_dai_set_dai_sysclk,
727};
728
Jarkko Nikula8def4642008-10-09 15:57:22 +0300729#define OMAP_MCBSP_DAI_BUILDER(link_id) \
730{ \
Jarkko Nikula0c758bd2008-11-21 14:31:33 +0200731 .name = "omap-mcbsp-dai-"#link_id, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300732 .id = (link_id), \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300733 .playback = { \
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200734 .channels_min = 1, \
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000735 .channels_max = 16, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300736 .rates = OMAP_MCBSP_RATES, \
Sergey Lapind98508a2010-05-13 19:48:16 +0400737 .formats = SNDRV_PCM_FMTBIT_S16_LE | \
738 SNDRV_PCM_FMTBIT_S32_LE, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300739 }, \
740 .capture = { \
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200741 .channels_min = 1, \
Graeme Gregory5f63ef92009-11-09 19:02:15 +0000742 .channels_max = 16, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300743 .rates = OMAP_MCBSP_RATES, \
Sergey Lapind98508a2010-05-13 19:48:16 +0400744 .formats = SNDRV_PCM_FMTBIT_S16_LE | \
745 SNDRV_PCM_FMTBIT_S32_LE, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300746 }, \
Eric Miao6335d052009-03-03 09:41:00 +0800747 .ops = &omap_mcbsp_dai_ops, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300748 .private_data = &mcbsp_data[(link_id)].bus_id, \
749}
750
751struct snd_soc_dai omap_mcbsp_dai[] = {
752 OMAP_MCBSP_DAI_BUILDER(0),
753 OMAP_MCBSP_DAI_BUILDER(1),
754#if NUM_LINKS >= 3
755 OMAP_MCBSP_DAI_BUILDER(2),
756#endif
757#if NUM_LINKS == 5
758 OMAP_MCBSP_DAI_BUILDER(3),
759 OMAP_MCBSP_DAI_BUILDER(4),
760#endif
Jarkko Nikula2e747962008-04-25 13:55:19 +0200761};
Jarkko Nikula8def4642008-10-09 15:57:22 +0300762
Jarkko Nikula2e747962008-04-25 13:55:19 +0200763EXPORT_SYMBOL_GPL(omap_mcbsp_dai);
764
Ilkka Koskinen83905c12010-02-22 12:21:12 +0000765int omap_mcbsp_st_info_volsw(struct snd_kcontrol *kcontrol,
766 struct snd_ctl_elem_info *uinfo)
767{
768 struct soc_mixer_control *mc =
769 (struct soc_mixer_control *)kcontrol->private_value;
770 int max = mc->max;
771 int min = mc->min;
772
773 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
774 uinfo->count = 1;
775 uinfo->value.integer.min = min;
776 uinfo->value.integer.max = max;
777 return 0;
778}
779
780#define OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(id, channel) \
781static int \
782omap_mcbsp##id##_set_st_ch##channel##_volume(struct snd_kcontrol *kc, \
783 struct snd_ctl_elem_value *uc) \
784{ \
785 struct soc_mixer_control *mc = \
786 (struct soc_mixer_control *)kc->private_value; \
787 int max = mc->max; \
788 int min = mc->min; \
789 int val = uc->value.integer.value[0]; \
790 \
791 if (val < min || val > max) \
792 return -EINVAL; \
793 \
794 /* OMAP McBSP implementation uses index values 0..4 */ \
795 return omap_st_set_chgain((id)-1, channel, val); \
796}
797
798#define OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(id, channel) \
799static int \
800omap_mcbsp##id##_get_st_ch##channel##_volume(struct snd_kcontrol *kc, \
801 struct snd_ctl_elem_value *uc) \
802{ \
803 s16 chgain; \
804 \
805 if (omap_st_get_chgain((id)-1, channel, &chgain)) \
806 return -EAGAIN; \
807 \
808 uc->value.integer.value[0] = chgain; \
809 return 0; \
810}
811
812OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(2, 0)
813OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(2, 1)
814OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(3, 0)
815OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(3, 1)
816OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(2, 0)
817OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(2, 1)
818OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(3, 0)
819OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(3, 1)
820
821static int omap_mcbsp_st_put_mode(struct snd_kcontrol *kcontrol,
822 struct snd_ctl_elem_value *ucontrol)
823{
824 struct soc_mixer_control *mc =
825 (struct soc_mixer_control *)kcontrol->private_value;
826 u8 value = ucontrol->value.integer.value[0];
827
828 if (value == omap_st_is_enabled(mc->reg))
829 return 0;
830
831 if (value)
832 omap_st_enable(mc->reg);
833 else
834 omap_st_disable(mc->reg);
835
836 return 1;
837}
838
839static int omap_mcbsp_st_get_mode(struct snd_kcontrol *kcontrol,
840 struct snd_ctl_elem_value *ucontrol)
841{
842 struct soc_mixer_control *mc =
843 (struct soc_mixer_control *)kcontrol->private_value;
844
845 ucontrol->value.integer.value[0] = omap_st_is_enabled(mc->reg);
846 return 0;
847}
848
849static const struct snd_kcontrol_new omap_mcbsp2_st_controls[] = {
850 SOC_SINGLE_EXT("McBSP2 Sidetone Switch", 1, 0, 1, 0,
851 omap_mcbsp_st_get_mode, omap_mcbsp_st_put_mode),
852 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP2 Sidetone Channel 0 Volume",
853 -32768, 32767,
854 omap_mcbsp2_get_st_ch0_volume,
855 omap_mcbsp2_set_st_ch0_volume),
856 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP2 Sidetone Channel 1 Volume",
857 -32768, 32767,
858 omap_mcbsp2_get_st_ch1_volume,
859 omap_mcbsp2_set_st_ch1_volume),
860};
861
862static const struct snd_kcontrol_new omap_mcbsp3_st_controls[] = {
863 SOC_SINGLE_EXT("McBSP3 Sidetone Switch", 2, 0, 1, 0,
864 omap_mcbsp_st_get_mode, omap_mcbsp_st_put_mode),
865 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP3 Sidetone Channel 0 Volume",
866 -32768, 32767,
867 omap_mcbsp3_get_st_ch0_volume,
868 omap_mcbsp3_set_st_ch0_volume),
869 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP3 Sidetone Channel 1 Volume",
870 -32768, 32767,
871 omap_mcbsp3_get_st_ch1_volume,
872 omap_mcbsp3_set_st_ch1_volume),
873};
874
875int omap_mcbsp_st_add_controls(struct snd_soc_codec *codec, int mcbsp_id)
876{
877 if (!cpu_is_omap34xx())
878 return -ENODEV;
879
880 switch (mcbsp_id) {
881 case 1: /* McBSP 2 */
882 return snd_soc_add_controls(codec, omap_mcbsp2_st_controls,
883 ARRAY_SIZE(omap_mcbsp2_st_controls));
884 case 2: /* McBSP 3 */
885 return snd_soc_add_controls(codec, omap_mcbsp3_st_controls,
886 ARRAY_SIZE(omap_mcbsp3_st_controls));
887 default:
888 break;
889 }
890
891 return -EINVAL;
892}
893EXPORT_SYMBOL_GPL(omap_mcbsp_st_add_controls);
894
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100895static int __init snd_omap_mcbsp_init(void)
Mark Brown3f4b7832008-12-03 19:26:35 +0000896{
897 return snd_soc_register_dais(omap_mcbsp_dai,
898 ARRAY_SIZE(omap_mcbsp_dai));
899}
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100900module_init(snd_omap_mcbsp_init);
Mark Brown3f4b7832008-12-03 19:26:35 +0000901
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100902static void __exit snd_omap_mcbsp_exit(void)
Mark Brown3f4b7832008-12-03 19:26:35 +0000903{
904 snd_soc_unregister_dais(omap_mcbsp_dai, ARRAY_SIZE(omap_mcbsp_dai));
905}
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100906module_exit(snd_omap_mcbsp_exit);
Mark Brown3f4b7832008-12-03 19:26:35 +0000907
Jarkko Nikulab08f7a62009-04-17 14:42:26 +0300908MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
Jarkko Nikula2e747962008-04-25 13:55:19 +0200909MODULE_DESCRIPTION("OMAP I2S SoC Interface");
910MODULE_LICENSE("GPL");