1 // SPDX-License-Identifier: GPL-2.0
3 // Freescale Generic ASoC Sound Card driver with ASRC
5 // Copyright (C) 2014 Freescale Semiconductor, Inc.
7 // Author: Nicolin Chen <nicoleotsuka@gmail.com>
10 #include <linux/i2c.h>
11 #include <linux/module.h>
12 #include <linux/of_platform.h>
13 #if IS_ENABLED(CONFIG_SND_AC97_CODEC)
14 #include <sound/ac97_codec.h>
16 #include <sound/pcm_params.h>
17 #include <sound/soc.h>
21 #include "imx-audmux.h"
23 #include "../codecs/sgtl5000.h"
24 #include "../codecs/wm8962.h"
25 #include "../codecs/wm8960.h"
27 #define CS427x_SYSCLK_MCLK 0
32 /* Default DAI format without Master and Slave flag */
33 #define DAI_FMT_BASE (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF)
38 * @mclk_freq: Clock rate of MCLK
39 * @mclk_id: MCLK (or main clock) id for set_sysclk()
40 * @fll_id: FLL (or secordary clock) id for set_sysclk()
41 * @pll_id: PLL id for set_pll()
44 unsigned long mclk_freq
;
53 * @sysclk_freq[2]: SYSCLK rates for set_sysclk()
54 * @sysclk_dir[2]: SYSCLK directions for set_sysclk()
55 * @sysclk_id[2]: SYSCLK ids for set_sysclk()
56 * @slot_width: Slot width of each frame
58 * Note: [1] for tx and [0] for rx
61 unsigned long sysclk_freq
[2];
68 * Freescale Generic ASOC card private data
70 * @dai_link[3]: DAI link structure including normal one and DPCM link
71 * @pdev: platform device pointer
72 * @codec_priv: CODEC private data
73 * @cpu_priv: CPU private data
74 * @card: ASoC card structure
75 * @sample_rate: Current sample rate
76 * @sample_format: Current sample format
77 * @asrc_rate: ASRC sample rate used by Back-Ends
78 * @asrc_format: ASRC sample format used by Back-Ends
79 * @dai_fmt: DAI format between CPU and CODEC
83 struct fsl_asoc_card_priv
{
84 struct snd_soc_dai_link dai_link
[3];
85 struct platform_device
*pdev
;
86 struct codec_priv codec_priv
;
87 struct cpu_priv cpu_priv
;
88 struct snd_soc_card card
;
90 snd_pcm_format_t sample_format
;
92 snd_pcm_format_t asrc_format
;
98 * This dapm route map exsits for DPCM link only.
99 * The other routes shall go through Device Tree.
101 * Note: keep all ASRC routes in the second half
102 * to drop them easily for non-ASRC cases.
104 static const struct snd_soc_dapm_route audio_map
[] = {
105 /* 1st half -- Normal DAPM routes */
106 {"Playback", NULL
, "CPU-Playback"},
107 {"CPU-Capture", NULL
, "Capture"},
108 /* 2nd half -- ASRC DAPM routes */
109 {"CPU-Playback", NULL
, "ASRC-Playback"},
110 {"ASRC-Capture", NULL
, "CPU-Capture"},
113 static const struct snd_soc_dapm_route audio_map_ac97
[] = {
114 /* 1st half -- Normal DAPM routes */
115 {"Playback", NULL
, "AC97 Playback"},
116 {"AC97 Capture", NULL
, "Capture"},
117 /* 2nd half -- ASRC DAPM routes */
118 {"AC97 Playback", NULL
, "ASRC-Playback"},
119 {"ASRC-Capture", NULL
, "AC97 Capture"},
122 /* Add all possible widgets into here without being redundant */
123 static const struct snd_soc_dapm_widget fsl_asoc_card_dapm_widgets
[] = {
124 SND_SOC_DAPM_LINE("Line Out Jack", NULL
),
125 SND_SOC_DAPM_LINE("Line In Jack", NULL
),
126 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
127 SND_SOC_DAPM_SPK("Ext Spk", NULL
),
128 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
129 SND_SOC_DAPM_MIC("AMIC", NULL
),
130 SND_SOC_DAPM_MIC("DMIC", NULL
),
133 static bool fsl_asoc_card_is_ac97(struct fsl_asoc_card_priv
*priv
)
135 return priv
->dai_fmt
== SND_SOC_DAIFMT_AC97
;
138 static int fsl_asoc_card_hw_params(struct snd_pcm_substream
*substream
,
139 struct snd_pcm_hw_params
*params
)
141 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
142 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(rtd
->card
);
143 bool tx
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
144 struct cpu_priv
*cpu_priv
= &priv
->cpu_priv
;
145 struct device
*dev
= rtd
->card
->dev
;
148 priv
->sample_rate
= params_rate(params
);
149 priv
->sample_format
= params_format(params
);
152 * If codec-dai is DAI Master and all configurations are already in the
153 * set_bias_level(), bypass the remaining settings in hw_params().
154 * Note: (dai_fmt & CBM_CFM) includes CBM_CFM and CBM_CFS.
156 if ((priv
->card
.set_bias_level
&&
157 priv
->dai_fmt
& SND_SOC_DAIFMT_CBM_CFM
) ||
158 fsl_asoc_card_is_ac97(priv
))
161 /* Specific configurations of DAIs starts from here */
162 ret
= snd_soc_dai_set_sysclk(rtd
->cpu_dai
, cpu_priv
->sysclk_id
[tx
],
163 cpu_priv
->sysclk_freq
[tx
],
164 cpu_priv
->sysclk_dir
[tx
]);
165 if (ret
&& ret
!= -ENOTSUPP
) {
166 dev_err(dev
, "failed to set sysclk for cpu dai\n");
170 if (cpu_priv
->slot_width
) {
171 ret
= snd_soc_dai_set_tdm_slot(rtd
->cpu_dai
, 0x3, 0x3, 2,
172 cpu_priv
->slot_width
);
173 if (ret
&& ret
!= -ENOTSUPP
) {
174 dev_err(dev
, "failed to set TDM slot for cpu dai\n");
182 static const struct snd_soc_ops fsl_asoc_card_ops
= {
183 .hw_params
= fsl_asoc_card_hw_params
,
186 static int be_hw_params_fixup(struct snd_soc_pcm_runtime
*rtd
,
187 struct snd_pcm_hw_params
*params
)
189 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(rtd
->card
);
190 struct snd_interval
*rate
;
191 struct snd_mask
*mask
;
193 rate
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
194 rate
->max
= rate
->min
= priv
->asrc_rate
;
196 mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
198 snd_mask_set_format(mask
, priv
->asrc_format
);
203 SND_SOC_DAILINK_DEFS(hifi
,
204 DAILINK_COMP_ARRAY(COMP_EMPTY()),
205 DAILINK_COMP_ARRAY(COMP_EMPTY()),
206 DAILINK_COMP_ARRAY(COMP_EMPTY()));
208 SND_SOC_DAILINK_DEFS(hifi_fe
,
209 DAILINK_COMP_ARRAY(COMP_EMPTY()),
210 DAILINK_COMP_ARRAY(COMP_DUMMY()),
211 DAILINK_COMP_ARRAY(COMP_EMPTY()));
213 SND_SOC_DAILINK_DEFS(hifi_be
,
214 DAILINK_COMP_ARRAY(COMP_EMPTY()),
215 DAILINK_COMP_ARRAY(COMP_EMPTY()),
216 DAILINK_COMP_ARRAY(COMP_DUMMY()));
218 static struct snd_soc_dai_link fsl_asoc_card_dai
[] = {
219 /* Default ASoC DAI Link*/
222 .stream_name
= "HiFi",
223 .ops
= &fsl_asoc_card_ops
,
224 SND_SOC_DAILINK_REG(hifi
),
226 /* DPCM Link between Front-End and Back-End (Optional) */
228 .name
= "HiFi-ASRC-FE",
229 .stream_name
= "HiFi-ASRC-FE",
233 SND_SOC_DAILINK_REG(hifi_fe
),
236 .name
= "HiFi-ASRC-BE",
237 .stream_name
= "HiFi-ASRC-BE",
238 .be_hw_params_fixup
= be_hw_params_fixup
,
239 .ops
= &fsl_asoc_card_ops
,
243 SND_SOC_DAILINK_REG(hifi_be
),
247 static int fsl_asoc_card_set_bias_level(struct snd_soc_card
*card
,
248 struct snd_soc_dapm_context
*dapm
,
249 enum snd_soc_bias_level level
)
251 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(card
);
252 struct snd_soc_pcm_runtime
*rtd
;
253 struct snd_soc_dai
*codec_dai
;
254 struct codec_priv
*codec_priv
= &priv
->codec_priv
;
255 struct device
*dev
= card
->dev
;
256 unsigned int pll_out
;
259 rtd
= snd_soc_get_pcm_runtime(card
, &card
->dai_link
[0]);
260 codec_dai
= rtd
->codec_dai
;
261 if (dapm
->dev
!= codec_dai
->dev
)
265 case SND_SOC_BIAS_PREPARE
:
266 if (dapm
->bias_level
!= SND_SOC_BIAS_STANDBY
)
269 if (priv
->sample_format
== SNDRV_PCM_FORMAT_S24_LE
)
270 pll_out
= priv
->sample_rate
* 384;
272 pll_out
= priv
->sample_rate
* 256;
274 ret
= snd_soc_dai_set_pll(codec_dai
, codec_priv
->pll_id
,
276 codec_priv
->mclk_freq
, pll_out
);
278 dev_err(dev
, "failed to start FLL: %d\n", ret
);
282 ret
= snd_soc_dai_set_sysclk(codec_dai
, codec_priv
->fll_id
,
283 pll_out
, SND_SOC_CLOCK_IN
);
284 if (ret
&& ret
!= -ENOTSUPP
) {
285 dev_err(dev
, "failed to set SYSCLK: %d\n", ret
);
290 case SND_SOC_BIAS_STANDBY
:
291 if (dapm
->bias_level
!= SND_SOC_BIAS_PREPARE
)
294 ret
= snd_soc_dai_set_sysclk(codec_dai
, codec_priv
->mclk_id
,
295 codec_priv
->mclk_freq
,
297 if (ret
&& ret
!= -ENOTSUPP
) {
298 dev_err(dev
, "failed to switch away from FLL: %d\n", ret
);
302 ret
= snd_soc_dai_set_pll(codec_dai
, codec_priv
->pll_id
, 0, 0, 0);
304 dev_err(dev
, "failed to stop FLL: %d\n", ret
);
316 static int fsl_asoc_card_audmux_init(struct device_node
*np
,
317 struct fsl_asoc_card_priv
*priv
)
319 struct device
*dev
= &priv
->pdev
->dev
;
320 u32 int_ptcr
= 0, ext_ptcr
= 0;
321 int int_port
, ext_port
;
324 ret
= of_property_read_u32(np
, "mux-int-port", &int_port
);
326 dev_err(dev
, "mux-int-port missing or invalid\n");
329 ret
= of_property_read_u32(np
, "mux-ext-port", &ext_port
);
331 dev_err(dev
, "mux-ext-port missing or invalid\n");
336 * The port numbering in the hardware manual starts at 1, while
337 * the AUDMUX API expects it starts at 0.
343 * Use asynchronous mode (6 wires) for all cases except AC97.
344 * If only 4 wires are needed, just set SSI into
345 * synchronous mode and enable 4 PADs in IOMUX.
347 switch (priv
->dai_fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
348 case SND_SOC_DAIFMT_CBM_CFM
:
349 int_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | ext_port
) |
350 IMX_AUDMUX_V2_PTCR_RCSEL(8 | ext_port
) |
351 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port
) |
352 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port
) |
353 IMX_AUDMUX_V2_PTCR_RFSDIR
|
354 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
355 IMX_AUDMUX_V2_PTCR_TFSDIR
|
356 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
358 case SND_SOC_DAIFMT_CBM_CFS
:
359 int_ptcr
= IMX_AUDMUX_V2_PTCR_RCSEL(8 | ext_port
) |
360 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port
) |
361 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
362 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
363 ext_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | int_port
) |
364 IMX_AUDMUX_V2_PTCR_TFSEL(int_port
) |
365 IMX_AUDMUX_V2_PTCR_RFSDIR
|
366 IMX_AUDMUX_V2_PTCR_TFSDIR
;
368 case SND_SOC_DAIFMT_CBS_CFM
:
369 int_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | ext_port
) |
370 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port
) |
371 IMX_AUDMUX_V2_PTCR_RFSDIR
|
372 IMX_AUDMUX_V2_PTCR_TFSDIR
;
373 ext_ptcr
= IMX_AUDMUX_V2_PTCR_RCSEL(8 | int_port
) |
374 IMX_AUDMUX_V2_PTCR_TCSEL(int_port
) |
375 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
376 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
378 case SND_SOC_DAIFMT_CBS_CFS
:
379 ext_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | int_port
) |
380 IMX_AUDMUX_V2_PTCR_RCSEL(8 | int_port
) |
381 IMX_AUDMUX_V2_PTCR_TFSEL(int_port
) |
382 IMX_AUDMUX_V2_PTCR_TCSEL(int_port
) |
383 IMX_AUDMUX_V2_PTCR_RFSDIR
|
384 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
385 IMX_AUDMUX_V2_PTCR_TFSDIR
|
386 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
389 if (!fsl_asoc_card_is_ac97(priv
))
393 if (fsl_asoc_card_is_ac97(priv
)) {
394 int_ptcr
= IMX_AUDMUX_V2_PTCR_SYN
|
395 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port
) |
396 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
397 ext_ptcr
= IMX_AUDMUX_V2_PTCR_SYN
|
398 IMX_AUDMUX_V2_PTCR_TFSEL(int_port
) |
399 IMX_AUDMUX_V2_PTCR_TFSDIR
;
402 /* Asynchronous mode can not be set along with RCLKDIR */
403 if (!fsl_asoc_card_is_ac97(priv
)) {
405 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port
);
407 ret
= imx_audmux_v2_configure_port(int_port
, 0,
410 dev_err(dev
, "audmux internal port setup failed\n");
415 ret
= imx_audmux_v2_configure_port(int_port
, int_ptcr
,
416 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port
));
418 dev_err(dev
, "audmux internal port setup failed\n");
422 if (!fsl_asoc_card_is_ac97(priv
)) {
424 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port
);
426 ret
= imx_audmux_v2_configure_port(ext_port
, 0,
429 dev_err(dev
, "audmux external port setup failed\n");
434 ret
= imx_audmux_v2_configure_port(ext_port
, ext_ptcr
,
435 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port
));
437 dev_err(dev
, "audmux external port setup failed\n");
444 static int fsl_asoc_card_late_probe(struct snd_soc_card
*card
)
446 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(card
);
447 struct snd_soc_pcm_runtime
*rtd
= list_first_entry(
448 &card
->rtd_list
, struct snd_soc_pcm_runtime
, list
);
449 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
450 struct codec_priv
*codec_priv
= &priv
->codec_priv
;
451 struct device
*dev
= card
->dev
;
454 if (fsl_asoc_card_is_ac97(priv
)) {
455 #if IS_ENABLED(CONFIG_SND_AC97_CODEC)
456 struct snd_soc_component
*component
= rtd
->codec_dai
->component
;
457 struct snd_ac97
*ac97
= snd_soc_component_get_drvdata(component
);
460 * Use slots 3/4 for S/PDIF so SSI won't try to enable
461 * other slots and send some samples there
462 * due to SLOTREQ bits for S/PDIF received from codec
464 snd_ac97_update_bits(ac97
, AC97_EXTENDED_STATUS
,
465 AC97_EA_SPSA_SLOT_MASK
, AC97_EA_SPSA_3_4
);
471 ret
= snd_soc_dai_set_sysclk(codec_dai
, codec_priv
->mclk_id
,
472 codec_priv
->mclk_freq
, SND_SOC_CLOCK_IN
);
473 if (ret
&& ret
!= -ENOTSUPP
) {
474 dev_err(dev
, "failed to set sysclk in %s\n", __func__
);
481 static int fsl_asoc_card_probe(struct platform_device
*pdev
)
483 struct device_node
*cpu_np
, *codec_np
, *asrc_np
;
484 struct device_node
*np
= pdev
->dev
.of_node
;
485 struct platform_device
*asrc_pdev
= NULL
;
486 struct platform_device
*cpu_pdev
;
487 struct fsl_asoc_card_priv
*priv
;
488 struct i2c_client
*codec_dev
;
489 const char *codec_dai_name
;
493 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
497 cpu_np
= of_parse_phandle(np
, "audio-cpu", 0);
498 /* Give a chance to old DT binding */
500 cpu_np
= of_parse_phandle(np
, "ssi-controller", 0);
502 dev_err(&pdev
->dev
, "CPU phandle missing or invalid\n");
507 cpu_pdev
= of_find_device_by_node(cpu_np
);
509 dev_err(&pdev
->dev
, "failed to find CPU DAI device\n");
514 codec_np
= of_parse_phandle(np
, "audio-codec", 0);
516 codec_dev
= of_find_i2c_device_by_node(codec_np
);
520 asrc_np
= of_parse_phandle(np
, "audio-asrc", 0);
522 asrc_pdev
= of_find_device_by_node(asrc_np
);
524 /* Get the MCLK rate only, and leave it controlled by CODEC drivers */
526 struct clk
*codec_clk
= clk_get(&codec_dev
->dev
, NULL
);
528 if (!IS_ERR(codec_clk
)) {
529 priv
->codec_priv
.mclk_freq
= clk_get_rate(codec_clk
);
534 /* Default sample rate and format, will be updated in hw_params() */
535 priv
->sample_rate
= 44100;
536 priv
->sample_format
= SNDRV_PCM_FORMAT_S16_LE
;
538 /* Assign a default DAI format, and allow each card to overwrite it */
539 priv
->dai_fmt
= DAI_FMT_BASE
;
541 /* Diversify the card configurations */
542 if (of_device_is_compatible(np
, "fsl,imx-audio-cs42888")) {
543 codec_dai_name
= "cs42888";
544 priv
->card
.set_bias_level
= NULL
;
545 priv
->cpu_priv
.sysclk_freq
[TX
] = priv
->codec_priv
.mclk_freq
;
546 priv
->cpu_priv
.sysclk_freq
[RX
] = priv
->codec_priv
.mclk_freq
;
547 priv
->cpu_priv
.sysclk_dir
[TX
] = SND_SOC_CLOCK_OUT
;
548 priv
->cpu_priv
.sysclk_dir
[RX
] = SND_SOC_CLOCK_OUT
;
549 priv
->cpu_priv
.slot_width
= 32;
550 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBS_CFS
;
551 } else if (of_device_is_compatible(np
, "fsl,imx-audio-cs427x")) {
552 codec_dai_name
= "cs4271-hifi";
553 priv
->codec_priv
.mclk_id
= CS427x_SYSCLK_MCLK
;
554 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
555 } else if (of_device_is_compatible(np
, "fsl,imx-audio-sgtl5000")) {
556 codec_dai_name
= "sgtl5000";
557 priv
->codec_priv
.mclk_id
= SGTL5000_SYSCLK
;
558 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
559 } else if (of_device_is_compatible(np
, "fsl,imx-audio-wm8962")) {
560 codec_dai_name
= "wm8962";
561 priv
->card
.set_bias_level
= fsl_asoc_card_set_bias_level
;
562 priv
->codec_priv
.mclk_id
= WM8962_SYSCLK_MCLK
;
563 priv
->codec_priv
.fll_id
= WM8962_SYSCLK_FLL
;
564 priv
->codec_priv
.pll_id
= WM8962_FLL
;
565 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
566 } else if (of_device_is_compatible(np
, "fsl,imx-audio-wm8960")) {
567 codec_dai_name
= "wm8960-hifi";
568 priv
->card
.set_bias_level
= fsl_asoc_card_set_bias_level
;
569 priv
->codec_priv
.fll_id
= WM8960_SYSCLK_AUTO
;
570 priv
->codec_priv
.pll_id
= WM8960_SYSCLK_AUTO
;
571 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
572 } else if (of_device_is_compatible(np
, "fsl,imx-audio-ac97")) {
573 codec_dai_name
= "ac97-hifi";
574 priv
->card
.set_bias_level
= NULL
;
575 priv
->dai_fmt
= SND_SOC_DAIFMT_AC97
;
577 dev_err(&pdev
->dev
, "unknown Device Tree compatible\n");
582 if (!fsl_asoc_card_is_ac97(priv
) && !codec_dev
) {
583 dev_err(&pdev
->dev
, "failed to find codec device\n");
588 /* Common settings for corresponding Freescale CPU DAI driver */
589 if (of_node_name_eq(cpu_np
, "ssi")) {
590 /* Only SSI needs to configure AUDMUX */
591 ret
= fsl_asoc_card_audmux_init(np
, priv
);
593 dev_err(&pdev
->dev
, "failed to init audmux\n");
596 } else if (of_node_name_eq(cpu_np
, "esai")) {
597 priv
->cpu_priv
.sysclk_id
[1] = ESAI_HCKT_EXTAL
;
598 priv
->cpu_priv
.sysclk_id
[0] = ESAI_HCKR_EXTAL
;
599 } else if (of_node_name_eq(cpu_np
, "sai")) {
600 priv
->cpu_priv
.sysclk_id
[1] = FSL_SAI_CLK_MAST1
;
601 priv
->cpu_priv
.sysclk_id
[0] = FSL_SAI_CLK_MAST1
;
604 snprintf(priv
->name
, sizeof(priv
->name
), "%s-audio",
605 fsl_asoc_card_is_ac97(priv
) ? "ac97" :
608 /* Initialize sound card */
610 priv
->card
.dev
= &pdev
->dev
;
611 priv
->card
.name
= priv
->name
;
612 priv
->card
.dai_link
= priv
->dai_link
;
613 priv
->card
.dapm_routes
= fsl_asoc_card_is_ac97(priv
) ?
614 audio_map_ac97
: audio_map
;
615 priv
->card
.late_probe
= fsl_asoc_card_late_probe
;
616 priv
->card
.num_dapm_routes
= ARRAY_SIZE(audio_map
);
617 priv
->card
.dapm_widgets
= fsl_asoc_card_dapm_widgets
;
618 priv
->card
.num_dapm_widgets
= ARRAY_SIZE(fsl_asoc_card_dapm_widgets
);
620 /* Drop the second half of DAPM routes -- ASRC */
622 priv
->card
.num_dapm_routes
/= 2;
624 memcpy(priv
->dai_link
, fsl_asoc_card_dai
,
625 sizeof(struct snd_soc_dai_link
) * ARRAY_SIZE(priv
->dai_link
));
627 ret
= snd_soc_of_parse_audio_routing(&priv
->card
, "audio-routing");
629 dev_err(&pdev
->dev
, "failed to parse audio-routing: %d\n", ret
);
633 /* Normal DAI Link */
634 priv
->dai_link
[0].cpus
->of_node
= cpu_np
;
635 priv
->dai_link
[0].codecs
->dai_name
= codec_dai_name
;
637 if (!fsl_asoc_card_is_ac97(priv
))
638 priv
->dai_link
[0].codecs
->of_node
= codec_np
;
642 ret
= of_property_read_u32(cpu_np
, "cell-index", &idx
);
645 "cannot get CPU index property\n");
649 priv
->dai_link
[0].codecs
->name
=
650 devm_kasprintf(&pdev
->dev
, GFP_KERNEL
,
653 if (!priv
->dai_link
[0].codecs
->name
) {
659 priv
->dai_link
[0].platforms
->of_node
= cpu_np
;
660 priv
->dai_link
[0].dai_fmt
= priv
->dai_fmt
;
661 priv
->card
.num_links
= 1;
664 /* DPCM DAI Links only if ASRC exsits */
665 priv
->dai_link
[1].cpus
->of_node
= asrc_np
;
666 priv
->dai_link
[1].platforms
->of_node
= asrc_np
;
667 priv
->dai_link
[2].codecs
->dai_name
= codec_dai_name
;
668 priv
->dai_link
[2].codecs
->of_node
= codec_np
;
669 priv
->dai_link
[2].codecs
->name
=
670 priv
->dai_link
[0].codecs
->name
;
671 priv
->dai_link
[2].cpus
->of_node
= cpu_np
;
672 priv
->dai_link
[2].dai_fmt
= priv
->dai_fmt
;
673 priv
->card
.num_links
= 3;
675 ret
= of_property_read_u32(asrc_np
, "fsl,asrc-rate",
678 dev_err(&pdev
->dev
, "failed to get output rate\n");
683 ret
= of_property_read_u32(asrc_np
, "fsl,asrc-width", &width
);
685 dev_err(&pdev
->dev
, "failed to get output rate\n");
691 priv
->asrc_format
= SNDRV_PCM_FORMAT_S24_LE
;
693 priv
->asrc_format
= SNDRV_PCM_FORMAT_S16_LE
;
696 /* Finish card registering */
697 platform_set_drvdata(pdev
, priv
);
698 snd_soc_card_set_drvdata(&priv
->card
, priv
);
700 ret
= devm_snd_soc_register_card(&pdev
->dev
, &priv
->card
);
701 if (ret
&& ret
!= -EPROBE_DEFER
)
702 dev_err(&pdev
->dev
, "snd_soc_register_card failed (%d)\n", ret
);
705 of_node_put(asrc_np
);
706 of_node_put(codec_np
);
707 put_device(&cpu_pdev
->dev
);
714 static const struct of_device_id fsl_asoc_card_dt_ids
[] = {
715 { .compatible
= "fsl,imx-audio-ac97", },
716 { .compatible
= "fsl,imx-audio-cs42888", },
717 { .compatible
= "fsl,imx-audio-cs427x", },
718 { .compatible
= "fsl,imx-audio-sgtl5000", },
719 { .compatible
= "fsl,imx-audio-wm8962", },
720 { .compatible
= "fsl,imx-audio-wm8960", },
723 MODULE_DEVICE_TABLE(of
, fsl_asoc_card_dt_ids
);
725 static struct platform_driver fsl_asoc_card_driver
= {
726 .probe
= fsl_asoc_card_probe
,
728 .name
= "fsl-asoc-card",
729 .pm
= &snd_soc_pm_ops
,
730 .of_match_table
= fsl_asoc_card_dt_ids
,
733 module_platform_driver(fsl_asoc_card_driver
);
735 MODULE_DESCRIPTION("Freescale Generic ASoC Sound Card driver with ASRC");
736 MODULE_AUTHOR("Nicolin Chen <nicoleotsuka@gmail.com>");
737 MODULE_ALIAS("platform:fsl-asoc-card");
738 MODULE_LICENSE("GPL");