blob: f1ce01f0aaae7b90f4b486db36e9630d0ae4cce3 [file] [log] [blame]
Mark Browna47cbe72008-07-23 14:03:07 +01001/*
2 * linux/sound/soc-dai.h -- ALSA SoC Layer
3 *
4 * Copyright: 2005-2008 Wolfson Microelectronics. PLC.
Bharath Ramachandramurthy9c79f132011-11-28 11:18:57 -08005 * Copyright (c) 2012, Code Aurora Forum. All rights reserved.
Mark Browna47cbe72008-07-23 14:03:07 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Digital Audio Interface (DAI) API.
12 */
13
14#ifndef __LINUX_SND_SOC_DAI_H
15#define __LINUX_SND_SOC_DAI_H
16
17
18#include <linux/list.h>
19
20struct snd_pcm_substream;
21
22/*
23 * DAI hardware audio formats.
24 *
25 * Describes the physical PCM data formating and clocking. Add new formats
26 * to the end.
27 */
28#define SND_SOC_DAIFMT_I2S 0 /* I2S mode */
29#define SND_SOC_DAIFMT_RIGHT_J 1 /* Right Justified mode */
30#define SND_SOC_DAIFMT_LEFT_J 2 /* Left Justified mode */
Peter Meerwald47db8e82009-07-13 23:05:11 +010031#define SND_SOC_DAIFMT_DSP_A 3 /* L data MSB after FRM LRC */
32#define SND_SOC_DAIFMT_DSP_B 4 /* L data MSB during FRM LRC */
Mark Browna47cbe72008-07-23 14:03:07 +010033#define SND_SOC_DAIFMT_AC97 5 /* AC97 */
Lopez Cruz, Misaelbe2500b2009-09-25 21:02:49 -050034#define SND_SOC_DAIFMT_PDM 6 /* Pulse density modulation */
Mark Browna47cbe72008-07-23 14:03:07 +010035
36/* left and right justified also known as MSB and LSB respectively */
37#define SND_SOC_DAIFMT_MSB SND_SOC_DAIFMT_LEFT_J
38#define SND_SOC_DAIFMT_LSB SND_SOC_DAIFMT_RIGHT_J
39
40/*
41 * DAI Clock gating.
42 *
Peter Meerwald47db8e82009-07-13 23:05:11 +010043 * DAI bit clocks can be be gated (disabled) when the DAI is not
Mark Browna47cbe72008-07-23 14:03:07 +010044 * sending or receiving PCM data in a frame. This can be used to save power.
45 */
46#define SND_SOC_DAIFMT_CONT (0 << 4) /* continuous clock */
47#define SND_SOC_DAIFMT_GATED (1 << 4) /* clock is gated */
48
49/*
Mark Browna47cbe72008-07-23 14:03:07 +010050 * DAI hardware signal inversions.
51 *
52 * Specifies whether the DAI can also support inverted clocks for the specified
53 * format.
54 */
55#define SND_SOC_DAIFMT_NB_NF (0 << 8) /* normal bit clock + frame */
Peter Meerwald47db8e82009-07-13 23:05:11 +010056#define SND_SOC_DAIFMT_NB_IF (1 << 8) /* normal BCLK + inv FRM */
57#define SND_SOC_DAIFMT_IB_NF (2 << 8) /* invert BCLK + nor FRM */
58#define SND_SOC_DAIFMT_IB_IF (3 << 8) /* invert BCLK + FRM */
Mark Browna47cbe72008-07-23 14:03:07 +010059
60/*
61 * DAI hardware clock masters.
62 *
63 * This is wrt the codec, the inverse is true for the interface
Peter Meerwald47db8e82009-07-13 23:05:11 +010064 * i.e. if the codec is clk and FRM master then the interface is
Mark Browna47cbe72008-07-23 14:03:07 +010065 * clk and frame slave.
66 */
Peter Meerwald47db8e82009-07-13 23:05:11 +010067#define SND_SOC_DAIFMT_CBM_CFM (0 << 12) /* codec clk & FRM master */
68#define SND_SOC_DAIFMT_CBS_CFM (1 << 12) /* codec clk slave & FRM master */
Mark Browna47cbe72008-07-23 14:03:07 +010069#define SND_SOC_DAIFMT_CBM_CFS (2 << 12) /* codec clk master & frame slave */
Peter Meerwald47db8e82009-07-13 23:05:11 +010070#define SND_SOC_DAIFMT_CBS_CFS (3 << 12) /* codec clk & FRM slave */
Mark Browna47cbe72008-07-23 14:03:07 +010071
72#define SND_SOC_DAIFMT_FORMAT_MASK 0x000f
73#define SND_SOC_DAIFMT_CLOCK_MASK 0x00f0
74#define SND_SOC_DAIFMT_INV_MASK 0x0f00
75#define SND_SOC_DAIFMT_MASTER_MASK 0xf000
76
77/*
78 * Master Clock Directions
79 */
80#define SND_SOC_CLOCK_IN 0
81#define SND_SOC_CLOCK_OUT 1
82
Mark Brown8f738d52009-08-09 20:08:31 +010083#define SND_SOC_STD_AC97_FMTS (SNDRV_PCM_FMTBIT_S8 |\
84 SNDRV_PCM_FMTBIT_S16_LE |\
85 SNDRV_PCM_FMTBIT_S16_BE |\
86 SNDRV_PCM_FMTBIT_S20_3LE |\
87 SNDRV_PCM_FMTBIT_S20_3BE |\
88 SNDRV_PCM_FMTBIT_S24_3LE |\
89 SNDRV_PCM_FMTBIT_S24_3BE |\
Jon Smirld34c4302009-05-13 21:59:14 -040090 SNDRV_PCM_FMTBIT_S32_LE |\
91 SNDRV_PCM_FMTBIT_S32_BE)
Mark Brown33f503c2009-05-02 12:24:55 +010092
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000093struct snd_soc_dai_driver;
Mark Browna47cbe72008-07-23 14:03:07 +010094struct snd_soc_dai;
95struct snd_ac97_bus_ops;
96
Mark Brown91151712008-11-30 23:31:24 +000097/* Digital Audio Interface registration */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000098int snd_soc_register_dai(struct device *dev,
99 struct snd_soc_dai_driver *dai_drv);
100void snd_soc_unregister_dai(struct device *dev);
101int snd_soc_register_dais(struct device *dev,
102 struct snd_soc_dai_driver *dai_drv, size_t count);
103void snd_soc_unregister_dais(struct device *dev, size_t count);
Mark Brown91151712008-11-30 23:31:24 +0000104
Mark Browna47cbe72008-07-23 14:03:07 +0100105/* Digital Audio Interface clocking API.*/
106int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
107 unsigned int freq, int dir);
108
109int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
110 int div_id, int div);
111
112int snd_soc_dai_set_pll(struct snd_soc_dai *dai,
Mark Brown85488032009-09-05 18:52:16 +0100113 int pll_id, int source, unsigned int freq_in, unsigned int freq_out);
Mark Browna47cbe72008-07-23 14:03:07 +0100114
115/* Digital Audio interface formatting */
116int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt);
117
118int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -0300119 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width);
Mark Browna47cbe72008-07-23 14:03:07 +0100120
Barry Song472df3c2009-09-12 01:16:29 +0800121int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
122 unsigned int tx_num, unsigned int *tx_slot,
123 unsigned int rx_num, unsigned int *rx_slot);
124
Bharath Ramachandramurthy9c79f132011-11-28 11:18:57 -0800125int snd_soc_dai_get_channel_map(struct snd_soc_dai *dai,
126 unsigned int *tx_num, unsigned int *tx_slot,
127 unsigned int *rx_num, unsigned int *rx_slot);
128
Mark Browna47cbe72008-07-23 14:03:07 +0100129int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate);
130
131/* Digital Audio Interface mute */
132int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute);
133
Mark Browna47cbe72008-07-23 14:03:07 +0100134struct snd_soc_dai_ops {
135 /*
136 * DAI clocking configuration, all optional.
137 * Called by soc_card drivers, normally in their hw_params.
138 */
139 int (*set_sysclk)(struct snd_soc_dai *dai,
140 int clk_id, unsigned int freq, int dir);
Mark Brown85488032009-09-05 18:52:16 +0100141 int (*set_pll)(struct snd_soc_dai *dai, int pll_id, int source,
142 unsigned int freq_in, unsigned int freq_out);
Mark Browna47cbe72008-07-23 14:03:07 +0100143 int (*set_clkdiv)(struct snd_soc_dai *dai, int div_id, int div);
144
145 /*
146 * DAI format configuration
147 * Called by soc_card drivers, normally in their hw_params.
148 */
149 int (*set_fmt)(struct snd_soc_dai *dai, unsigned int fmt);
150 int (*set_tdm_slot)(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -0300151 unsigned int tx_mask, unsigned int rx_mask,
152 int slots, int slot_width);
Barry Song472df3c2009-09-12 01:16:29 +0800153 int (*set_channel_map)(struct snd_soc_dai *dai,
154 unsigned int tx_num, unsigned int *tx_slot,
155 unsigned int rx_num, unsigned int *rx_slot);
Mark Browna47cbe72008-07-23 14:03:07 +0100156 int (*set_tristate)(struct snd_soc_dai *dai, int tristate);
157
Bharath Ramachandramurthy9c79f132011-11-28 11:18:57 -0800158 int (*get_channel_map)(struct snd_soc_dai *dai,
159 unsigned int *tx_num, unsigned int *tx_slot,
160 unsigned int *rx_num, unsigned int *rx_slot);
Mark Browna47cbe72008-07-23 14:03:07 +0100161 /*
162 * DAI digital mute - optional.
163 * Called by soc-core to minimise any pops.
164 */
165 int (*digital_mute)(struct snd_soc_dai *dai, int mute);
Mark Browndee89c42008-11-18 22:11:38 +0000166
167 /*
168 * ALSA PCM audio operations - all optional.
169 * Called by soc-core during audio PCM operations.
170 */
171 int (*startup)(struct snd_pcm_substream *,
172 struct snd_soc_dai *);
173 void (*shutdown)(struct snd_pcm_substream *,
174 struct snd_soc_dai *);
175 int (*hw_params)(struct snd_pcm_substream *,
176 struct snd_pcm_hw_params *, struct snd_soc_dai *);
177 int (*hw_free)(struct snd_pcm_substream *,
178 struct snd_soc_dai *);
179 int (*prepare)(struct snd_pcm_substream *,
180 struct snd_soc_dai *);
181 int (*trigger)(struct snd_pcm_substream *, int,
182 struct snd_soc_dai *);
Liam Girdwood59c96f12011-03-08 15:11:02 +0000183 int (*bespoke_trigger)(struct snd_pcm_substream *, int,
184 struct snd_soc_dai *);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200185 /*
186 * For hardware based FIFO caused delay reporting.
187 * Optional.
188 */
189 snd_pcm_sframes_t (*delay)(struct snd_pcm_substream *,
190 struct snd_soc_dai *);
Mark Browna47cbe72008-07-23 14:03:07 +0100191};
192
193/*
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000194 * Digital Audio Interface Driver.
Mark Browna47cbe72008-07-23 14:03:07 +0100195 *
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000196 * Describes the Digital Audio Interface in terms of its ALSA, DAI and AC97
197 * operations and capabilities. Codec and platform drivers will register this
198 * structure for every DAI they have.
199 *
200 * This structure covers the clocking, formating and ALSA operations for each
201 * interface.
Mark Browna47cbe72008-07-23 14:03:07 +0100202 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000203struct snd_soc_dai_driver {
Mark Browna47cbe72008-07-23 14:03:07 +0100204 /* DAI description */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000205 const char *name;
Mark Browna47cbe72008-07-23 14:03:07 +0100206 unsigned int id;
Mark Brown3ba9e102008-11-24 18:01:05 +0000207 int ac97_control;
Mark Browna47cbe72008-07-23 14:03:07 +0100208
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000209 /* DAI driver callbacks */
210 int (*probe)(struct snd_soc_dai *dai);
211 int (*remove)(struct snd_soc_dai *dai);
Mark Browndc7d7b82008-12-03 18:21:52 +0000212 int (*suspend)(struct snd_soc_dai *dai);
213 int (*resume)(struct snd_soc_dai *dai);
Mark Browna47cbe72008-07-23 14:03:07 +0100214
215 /* ops */
Mark Brown1ee46eb2010-12-02 16:10:09 +0000216 const struct snd_soc_dai_ops *ops;
Mark Browna47cbe72008-07-23 14:03:07 +0100217
218 /* DAI capabilities */
219 struct snd_soc_pcm_stream capture;
220 struct snd_soc_pcm_stream playback;
Mark Brown06f409d2009-04-07 18:10:13 +0100221 unsigned int symmetric_rates:1;
Liam Girdwood02184082011-03-30 23:26:53 +0100222
223 /* probe ordering - for components with runtime dependencies */
Liam Girdwood6e30b2e2011-06-03 18:13:02 +0100224 int probe_order;
225 int remove_order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000226};
227
228/*
229 * Digital Audio Interface runtime data.
230 *
231 * Holds runtime data for a DAI.
232 */
233struct snd_soc_dai {
234 const char *name;
235 int id;
236 struct device *dev;
237 void *ac97_pdata; /* platform_data for the ac97 codec */
238
239 /* driver ops */
240 struct snd_soc_dai_driver *driver;
Mark Browna47cbe72008-07-23 14:03:07 +0100241
242 /* DAI runtime info */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000243 unsigned int capture_active:1; /* stream is in use */
244 unsigned int playback_active:1; /* stream is in use */
245 unsigned int symmetric_rates:1;
246 struct snd_pcm_runtime *runtime;
Mark Browna47cbe72008-07-23 14:03:07 +0100247 unsigned int active;
248 unsigned char pop_wait:1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000249 unsigned char probed:1;
Mark Browna47cbe72008-07-23 14:03:07 +0100250
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000251 /* DAI DMA data */
252 void *playback_dma_data;
253 void *capture_dma_data;
Mark Browna47cbe72008-07-23 14:03:07 +0100254
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000255 /* parent platform/codec */
256 union {
257 struct snd_soc_platform *platform;
258 struct snd_soc_codec *codec;
259 };
260 struct snd_soc_card *card;
Mark Browna47cbe72008-07-23 14:03:07 +0100261
262 struct list_head list;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000263 struct list_head card_list;
Mark Browna47cbe72008-07-23 14:03:07 +0100264};
265
Daniel Mackfd23b7d2010-03-19 14:52:55 +0000266static inline void *snd_soc_dai_get_dma_data(const struct snd_soc_dai *dai,
267 const struct snd_pcm_substream *ss)
268{
269 return (ss->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000270 dai->playback_dma_data : dai->capture_dma_data;
Daniel Mackfd23b7d2010-03-19 14:52:55 +0000271}
272
273static inline void snd_soc_dai_set_dma_data(struct snd_soc_dai *dai,
274 const struct snd_pcm_substream *ss,
275 void *data)
276{
277 if (ss->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000278 dai->playback_dma_data = data;
Daniel Mackfd23b7d2010-03-19 14:52:55 +0000279 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000280 dai->capture_dma_data = data;
281}
282
283static inline void snd_soc_dai_set_drvdata(struct snd_soc_dai *dai,
284 void *data)
285{
286 dev_set_drvdata(dai->dev, data);
287}
288
289static inline void *snd_soc_dai_get_drvdata(struct snd_soc_dai *dai)
290{
291 return dev_get_drvdata(dai->dev);
Daniel Mackfd23b7d2010-03-19 14:52:55 +0000292}
293
Liam Girdwoodbfe7dc42011-01-31 21:26:35 +0000294/* Backend DAI PCM ops */
295static inline int snd_soc_dai_startup(struct snd_pcm_substream *substream,
296 struct snd_soc_dai *dai)
297{
298 struct snd_soc_pcm_runtime *rtd = substream->private_data;
299 int ret = 0;
300
301 mutex_lock(&rtd->pcm_mutex);
302
303 if (dai->driver->ops->startup)
304 ret = dai->driver->ops->startup(substream, dai);
305
306 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
307 dai->playback_active++;
308 else
309 dai->capture_active++;
310
311 dai->active++;
312
313 mutex_unlock(&rtd->pcm_mutex);
314 return ret;
315}
316
317static inline void snd_soc_dai_shutdown(struct snd_pcm_substream *substream,
318 struct snd_soc_dai *dai)
319{
320 struct snd_soc_pcm_runtime *rtd = substream->private_data;
321
322 mutex_lock(&rtd->pcm_mutex);
323
324 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
325 dai->playback_active--;
326 else
327 dai->capture_active--;
328
329 dai->active--;
330
331 if (dai->driver->ops->shutdown)
332 dai->driver->ops->shutdown(substream, dai);
333 mutex_unlock(&rtd->pcm_mutex);
334}
335
336static inline int snd_soc_dai_hw_params(struct snd_pcm_substream * substream,
337 struct snd_pcm_hw_params *hw_params, struct snd_soc_dai *dai)
338{
339 struct snd_soc_pcm_runtime *rtd = substream->private_data;
340 int ret = 0;
341
342 mutex_lock(&rtd->pcm_mutex);
343
344 if (dai->driver->ops->hw_params)
345 ret = dai->driver->ops->hw_params(substream, hw_params, dai);
346
347 mutex_unlock(&rtd->pcm_mutex);
348 return ret;
349}
350
351static inline int snd_soc_dai_hw_free(struct snd_pcm_substream *substream,
352 struct snd_soc_dai *dai)
353{
354 struct snd_soc_pcm_runtime *rtd = substream->private_data;
355 int ret = 0;
356
357 mutex_lock(&rtd->pcm_mutex);
358
359 if (dai->driver->ops->hw_free)
360 ret = dai->driver->ops->hw_free(substream, dai);
361
362 mutex_unlock(&rtd->pcm_mutex);
363 return ret;
364}
365
366static inline int snd_soc_dai_prepare(struct snd_pcm_substream *substream,
367 struct snd_soc_dai *dai)
368{
369 struct snd_soc_pcm_runtime *rtd = substream->private_data;
370 int ret = 0;
371
372 mutex_lock(&rtd->pcm_mutex);
373
374 if (dai->driver->ops->prepare)
375 ret = dai->driver->ops->prepare(substream, dai);
376
377 mutex_unlock(&rtd->pcm_mutex);
378 return ret;
379}
380
381static inline int snd_soc_dai_trigger(struct snd_pcm_substream *substream,
382 int cmd, struct snd_soc_dai *dai)
383{
384 if (dai->driver->ops->trigger)
385 return dai->driver->ops->trigger(substream, cmd, dai);
386 return 0;
387}
Mark Browna47cbe72008-07-23 14:03:07 +0100388#endif