2 * Freescale Generic ASoC Sound Card driver with ASRC
4 * Copyright (C) 2014 Freescale Semiconductor, Inc.
6 * Author: Nicolin Chen <nicoleotsuka@gmail.com>
8 * This file is licensed under the terms of the GNU General Public License
9 * version 2. This program is licensed "as is" without any warranty of any
10 * kind, whether express or implied.
13 #include <linux/clk.h>
14 #include <linux/i2c.h>
15 #include <linux/module.h>
16 #include <linux/of_platform.h>
17 #if IS_ENABLED(CONFIG_SND_AC97_CODEC)
18 #include <sound/ac97_codec.h>
20 #include <sound/pcm_params.h>
21 #include <sound/soc.h>
25 #include "imx-audmux.h"
27 #include "../codecs/sgtl5000.h"
28 #include "../codecs/wm8962.h"
29 #include "../codecs/wm8960.h"
34 /* Default DAI format without Master and Slave flag */
35 #define DAI_FMT_BASE (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF)
40 * @mclk_freq: Clock rate of MCLK
41 * @mclk_id: MCLK (or main clock) id for set_sysclk()
42 * @fll_id: FLL (or secordary clock) id for set_sysclk()
43 * @pll_id: PLL id for set_pll()
46 unsigned long mclk_freq
;
55 * @sysclk_freq[2]: SYSCLK rates for set_sysclk()
56 * @sysclk_dir[2]: SYSCLK directions for set_sysclk()
57 * @sysclk_id[2]: SYSCLK ids for set_sysclk()
58 * @slot_width: Slot width of each frame
60 * Note: [1] for tx and [0] for rx
63 unsigned long sysclk_freq
[2];
70 * Freescale Generic ASOC card private data
72 * @dai_link[3]: DAI link structure including normal one and DPCM link
73 * @pdev: platform device pointer
74 * @codec_priv: CODEC private data
75 * @cpu_priv: CPU private data
76 * @card: ASoC card structure
77 * @sample_rate: Current sample rate
78 * @sample_format: Current sample format
79 * @asrc_rate: ASRC sample rate used by Back-Ends
80 * @asrc_format: ASRC sample format used by Back-Ends
81 * @dai_fmt: DAI format between CPU and CODEC
85 struct fsl_asoc_card_priv
{
86 struct snd_soc_dai_link dai_link
[3];
87 struct platform_device
*pdev
;
88 struct codec_priv codec_priv
;
89 struct cpu_priv cpu_priv
;
90 struct snd_soc_card card
;
100 * This dapm route map exsits for DPCM link only.
101 * The other routes shall go through Device Tree.
103 static const struct snd_soc_dapm_route audio_map
[] = {
104 {"CPU-Playback", NULL
, "ASRC-Playback"},
105 {"Playback", NULL
, "CPU-Playback"},
106 {"ASRC-Capture", NULL
, "CPU-Capture"},
107 {"CPU-Capture", NULL
, "Capture"},
110 /* Add all possible widgets into here without being redundant */
111 static const struct snd_soc_dapm_widget fsl_asoc_card_dapm_widgets
[] = {
112 SND_SOC_DAPM_LINE("Line Out Jack", NULL
),
113 SND_SOC_DAPM_LINE("Line In Jack", NULL
),
114 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
115 SND_SOC_DAPM_SPK("Ext Spk", NULL
),
116 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
117 SND_SOC_DAPM_MIC("AMIC", NULL
),
118 SND_SOC_DAPM_MIC("DMIC", NULL
),
121 static bool fsl_asoc_card_is_ac97(struct fsl_asoc_card_priv
*priv
)
123 return priv
->dai_fmt
== SND_SOC_DAIFMT_AC97
;
126 static int fsl_asoc_card_hw_params(struct snd_pcm_substream
*substream
,
127 struct snd_pcm_hw_params
*params
)
129 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
130 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(rtd
->card
);
131 bool tx
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
132 struct cpu_priv
*cpu_priv
= &priv
->cpu_priv
;
133 struct device
*dev
= rtd
->card
->dev
;
136 priv
->sample_rate
= params_rate(params
);
137 priv
->sample_format
= params_format(params
);
140 * If codec-dai is DAI Master and all configurations are already in the
141 * set_bias_level(), bypass the remaining settings in hw_params().
142 * Note: (dai_fmt & CBM_CFM) includes CBM_CFM and CBM_CFS.
144 if ((priv
->card
.set_bias_level
&&
145 priv
->dai_fmt
& SND_SOC_DAIFMT_CBM_CFM
) ||
146 fsl_asoc_card_is_ac97(priv
))
149 /* Specific configurations of DAIs starts from here */
150 ret
= snd_soc_dai_set_sysclk(rtd
->cpu_dai
, cpu_priv
->sysclk_id
[tx
],
151 cpu_priv
->sysclk_freq
[tx
],
152 cpu_priv
->sysclk_dir
[tx
]);
154 dev_err(dev
, "failed to set sysclk for cpu dai\n");
158 if (cpu_priv
->slot_width
) {
159 ret
= snd_soc_dai_set_tdm_slot(rtd
->cpu_dai
, 0x3, 0x3, 2,
160 cpu_priv
->slot_width
);
162 dev_err(dev
, "failed to set TDM slot for cpu dai\n");
170 static struct snd_soc_ops fsl_asoc_card_ops
= {
171 .hw_params
= fsl_asoc_card_hw_params
,
174 static int be_hw_params_fixup(struct snd_soc_pcm_runtime
*rtd
,
175 struct snd_pcm_hw_params
*params
)
177 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(rtd
->card
);
178 struct snd_interval
*rate
;
179 struct snd_mask
*mask
;
181 rate
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
182 rate
->max
= rate
->min
= priv
->asrc_rate
;
184 mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
186 snd_mask_set(mask
, priv
->asrc_format
);
191 static struct snd_soc_dai_link fsl_asoc_card_dai
[] = {
192 /* Default ASoC DAI Link*/
195 .stream_name
= "HiFi",
196 .ops
= &fsl_asoc_card_ops
,
198 /* DPCM Link between Front-End and Back-End (Optional) */
200 .name
= "HiFi-ASRC-FE",
201 .stream_name
= "HiFi-ASRC-FE",
202 .codec_name
= "snd-soc-dummy",
203 .codec_dai_name
= "snd-soc-dummy-dai",
209 .name
= "HiFi-ASRC-BE",
210 .stream_name
= "HiFi-ASRC-BE",
211 .platform_name
= "snd-soc-dummy",
212 .be_hw_params_fixup
= be_hw_params_fixup
,
213 .ops
= &fsl_asoc_card_ops
,
220 static int fsl_asoc_card_set_bias_level(struct snd_soc_card
*card
,
221 struct snd_soc_dapm_context
*dapm
,
222 enum snd_soc_bias_level level
)
224 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(card
);
225 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
226 struct codec_priv
*codec_priv
= &priv
->codec_priv
;
227 struct device
*dev
= card
->dev
;
228 unsigned int pll_out
;
231 if (dapm
->dev
!= codec_dai
->dev
)
235 case SND_SOC_BIAS_PREPARE
:
236 if (dapm
->bias_level
!= SND_SOC_BIAS_STANDBY
)
239 if (priv
->sample_format
== SNDRV_PCM_FORMAT_S24_LE
)
240 pll_out
= priv
->sample_rate
* 384;
242 pll_out
= priv
->sample_rate
* 256;
244 ret
= snd_soc_dai_set_pll(codec_dai
, codec_priv
->pll_id
,
246 codec_priv
->mclk_freq
, pll_out
);
248 dev_err(dev
, "failed to start FLL: %d\n", ret
);
252 ret
= snd_soc_dai_set_sysclk(codec_dai
, codec_priv
->fll_id
,
253 pll_out
, SND_SOC_CLOCK_IN
);
255 dev_err(dev
, "failed to set SYSCLK: %d\n", ret
);
260 case SND_SOC_BIAS_STANDBY
:
261 if (dapm
->bias_level
!= SND_SOC_BIAS_PREPARE
)
264 ret
= snd_soc_dai_set_sysclk(codec_dai
, codec_priv
->mclk_id
,
265 codec_priv
->mclk_freq
,
268 dev_err(dev
, "failed to switch away from FLL: %d\n", ret
);
272 ret
= snd_soc_dai_set_pll(codec_dai
, codec_priv
->pll_id
, 0, 0, 0);
274 dev_err(dev
, "failed to stop FLL: %d\n", ret
);
286 static int fsl_asoc_card_audmux_init(struct device_node
*np
,
287 struct fsl_asoc_card_priv
*priv
)
289 struct device
*dev
= &priv
->pdev
->dev
;
290 u32 int_ptcr
= 0, ext_ptcr
= 0;
291 int int_port
, ext_port
;
294 ret
= of_property_read_u32(np
, "mux-int-port", &int_port
);
296 dev_err(dev
, "mux-int-port missing or invalid\n");
299 ret
= of_property_read_u32(np
, "mux-ext-port", &ext_port
);
301 dev_err(dev
, "mux-ext-port missing or invalid\n");
306 * The port numbering in the hardware manual starts at 1, while
307 * the AUDMUX API expects it starts at 0.
313 * Use asynchronous mode (6 wires) for all cases except AC97.
314 * If only 4 wires are needed, just set SSI into
315 * synchronous mode and enable 4 PADs in IOMUX.
317 switch (priv
->dai_fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
318 case SND_SOC_DAIFMT_CBM_CFM
:
319 int_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | ext_port
) |
320 IMX_AUDMUX_V2_PTCR_RCSEL(8 | ext_port
) |
321 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port
) |
322 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port
) |
323 IMX_AUDMUX_V2_PTCR_RFSDIR
|
324 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
325 IMX_AUDMUX_V2_PTCR_TFSDIR
|
326 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
328 case SND_SOC_DAIFMT_CBM_CFS
:
329 int_ptcr
= IMX_AUDMUX_V2_PTCR_RCSEL(8 | ext_port
) |
330 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port
) |
331 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
332 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
333 ext_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | int_port
) |
334 IMX_AUDMUX_V2_PTCR_TFSEL(int_port
) |
335 IMX_AUDMUX_V2_PTCR_RFSDIR
|
336 IMX_AUDMUX_V2_PTCR_TFSDIR
;
338 case SND_SOC_DAIFMT_CBS_CFM
:
339 int_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | ext_port
) |
340 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port
) |
341 IMX_AUDMUX_V2_PTCR_RFSDIR
|
342 IMX_AUDMUX_V2_PTCR_TFSDIR
;
343 ext_ptcr
= IMX_AUDMUX_V2_PTCR_RCSEL(8 | int_port
) |
344 IMX_AUDMUX_V2_PTCR_TCSEL(int_port
) |
345 IMX_AUDMUX_V2_PTCR_RCLKDIR
|
346 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
348 case SND_SOC_DAIFMT_CBS_CFS
:
349 ext_ptcr
= IMX_AUDMUX_V2_PTCR_RFSEL(8 | int_port
) |
350 IMX_AUDMUX_V2_PTCR_RCSEL(8 | int_port
) |
351 IMX_AUDMUX_V2_PTCR_TFSEL(int_port
) |
352 IMX_AUDMUX_V2_PTCR_TCSEL(int_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
;
359 if (!fsl_asoc_card_is_ac97(priv
))
363 if (fsl_asoc_card_is_ac97(priv
)) {
364 int_ptcr
= IMX_AUDMUX_V2_PTCR_SYN
|
365 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port
) |
366 IMX_AUDMUX_V2_PTCR_TCLKDIR
;
367 ext_ptcr
= IMX_AUDMUX_V2_PTCR_SYN
|
368 IMX_AUDMUX_V2_PTCR_TFSEL(int_port
) |
369 IMX_AUDMUX_V2_PTCR_TFSDIR
;
372 /* Asynchronous mode can not be set along with RCLKDIR */
373 if (!fsl_asoc_card_is_ac97(priv
)) {
375 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port
);
377 ret
= imx_audmux_v2_configure_port(int_port
, 0,
380 dev_err(dev
, "audmux internal port setup failed\n");
385 ret
= imx_audmux_v2_configure_port(int_port
, int_ptcr
,
386 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port
));
388 dev_err(dev
, "audmux internal port setup failed\n");
392 if (!fsl_asoc_card_is_ac97(priv
)) {
394 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port
);
396 ret
= imx_audmux_v2_configure_port(ext_port
, 0,
399 dev_err(dev
, "audmux external port setup failed\n");
404 ret
= imx_audmux_v2_configure_port(ext_port
, ext_ptcr
,
405 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port
));
407 dev_err(dev
, "audmux external port setup failed\n");
414 static int fsl_asoc_card_late_probe(struct snd_soc_card
*card
)
416 struct fsl_asoc_card_priv
*priv
= snd_soc_card_get_drvdata(card
);
417 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
418 struct codec_priv
*codec_priv
= &priv
->codec_priv
;
419 struct device
*dev
= card
->dev
;
422 if (fsl_asoc_card_is_ac97(priv
)) {
423 #if IS_ENABLED(CONFIG_SND_AC97_CODEC)
424 struct snd_soc_codec
*codec
= card
->rtd
[0].codec
;
425 struct snd_ac97
*ac97
= snd_soc_codec_get_drvdata(codec
);
428 * Use slots 3/4 for S/PDIF so SSI won't try to enable
429 * other slots and send some samples there
430 * due to SLOTREQ bits for S/PDIF received from codec
432 snd_ac97_update_bits(ac97
, AC97_EXTENDED_STATUS
,
433 AC97_EA_SPSA_SLOT_MASK
, AC97_EA_SPSA_3_4
);
439 ret
= snd_soc_dai_set_sysclk(codec_dai
, codec_priv
->mclk_id
,
440 codec_priv
->mclk_freq
, SND_SOC_CLOCK_IN
);
442 dev_err(dev
, "failed to set sysclk in %s\n", __func__
);
449 static int fsl_asoc_card_probe(struct platform_device
*pdev
)
451 struct device_node
*cpu_np
, *codec_np
, *asrc_np
;
452 struct device_node
*np
= pdev
->dev
.of_node
;
453 struct platform_device
*asrc_pdev
= NULL
;
454 struct platform_device
*cpu_pdev
;
455 struct fsl_asoc_card_priv
*priv
;
456 struct i2c_client
*codec_dev
;
457 const char *codec_dai_name
;
461 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
465 cpu_np
= of_parse_phandle(np
, "audio-cpu", 0);
466 /* Give a chance to old DT binding */
468 cpu_np
= of_parse_phandle(np
, "ssi-controller", 0);
470 dev_err(&pdev
->dev
, "CPU phandle missing or invalid\n");
475 cpu_pdev
= of_find_device_by_node(cpu_np
);
477 dev_err(&pdev
->dev
, "failed to find CPU DAI device\n");
482 codec_np
= of_parse_phandle(np
, "audio-codec", 0);
484 codec_dev
= of_find_i2c_device_by_node(codec_np
);
488 asrc_np
= of_parse_phandle(np
, "audio-asrc", 0);
490 asrc_pdev
= of_find_device_by_node(asrc_np
);
492 /* Get the MCLK rate only, and leave it controlled by CODEC drivers */
494 struct clk
*codec_clk
= clk_get(&codec_dev
->dev
, NULL
);
496 if (!IS_ERR(codec_clk
)) {
497 priv
->codec_priv
.mclk_freq
= clk_get_rate(codec_clk
);
502 /* Default sample rate and format, will be updated in hw_params() */
503 priv
->sample_rate
= 44100;
504 priv
->sample_format
= SNDRV_PCM_FORMAT_S16_LE
;
506 /* Assign a default DAI format, and allow each card to overwrite it */
507 priv
->dai_fmt
= DAI_FMT_BASE
;
509 /* Diversify the card configurations */
510 if (of_device_is_compatible(np
, "fsl,imx-audio-cs42888")) {
511 codec_dai_name
= "cs42888";
512 priv
->card
.set_bias_level
= NULL
;
513 priv
->cpu_priv
.sysclk_freq
[TX
] = priv
->codec_priv
.mclk_freq
;
514 priv
->cpu_priv
.sysclk_freq
[RX
] = priv
->codec_priv
.mclk_freq
;
515 priv
->cpu_priv
.sysclk_dir
[TX
] = SND_SOC_CLOCK_OUT
;
516 priv
->cpu_priv
.sysclk_dir
[RX
] = SND_SOC_CLOCK_OUT
;
517 priv
->cpu_priv
.slot_width
= 32;
518 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBS_CFS
;
519 } else if (of_device_is_compatible(np
, "fsl,imx-audio-sgtl5000")) {
520 codec_dai_name
= "sgtl5000";
521 priv
->codec_priv
.mclk_id
= SGTL5000_SYSCLK
;
522 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
523 } else if (of_device_is_compatible(np
, "fsl,imx-audio-wm8962")) {
524 codec_dai_name
= "wm8962";
525 priv
->card
.set_bias_level
= fsl_asoc_card_set_bias_level
;
526 priv
->codec_priv
.mclk_id
= WM8962_SYSCLK_MCLK
;
527 priv
->codec_priv
.fll_id
= WM8962_SYSCLK_FLL
;
528 priv
->codec_priv
.pll_id
= WM8962_FLL
;
529 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
530 } else if (of_device_is_compatible(np
, "fsl,imx-audio-wm8960")) {
531 codec_dai_name
= "wm8960-hifi";
532 priv
->card
.set_bias_level
= fsl_asoc_card_set_bias_level
;
533 priv
->codec_priv
.fll_id
= WM8960_SYSCLK_AUTO
;
534 priv
->codec_priv
.pll_id
= WM8960_SYSCLK_AUTO
;
535 priv
->dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
536 } else if (of_device_is_compatible(np
, "fsl,imx-audio-ac97")) {
537 codec_dai_name
= "ac97-hifi";
538 priv
->card
.set_bias_level
= NULL
;
539 priv
->dai_fmt
= SND_SOC_DAIFMT_AC97
;
541 dev_err(&pdev
->dev
, "unknown Device Tree compatible\n");
546 if (!fsl_asoc_card_is_ac97(priv
) && !codec_dev
) {
547 dev_err(&pdev
->dev
, "failed to find codec device\n");
552 /* Common settings for corresponding Freescale CPU DAI driver */
553 if (strstr(cpu_np
->name
, "ssi")) {
554 /* Only SSI needs to configure AUDMUX */
555 ret
= fsl_asoc_card_audmux_init(np
, priv
);
557 dev_err(&pdev
->dev
, "failed to init audmux\n");
560 } else if (strstr(cpu_np
->name
, "esai")) {
561 priv
->cpu_priv
.sysclk_id
[1] = ESAI_HCKT_EXTAL
;
562 priv
->cpu_priv
.sysclk_id
[0] = ESAI_HCKR_EXTAL
;
563 } else if (strstr(cpu_np
->name
, "sai")) {
564 priv
->cpu_priv
.sysclk_id
[1] = FSL_SAI_CLK_MAST1
;
565 priv
->cpu_priv
.sysclk_id
[0] = FSL_SAI_CLK_MAST1
;
568 snprintf(priv
->name
, sizeof(priv
->name
), "%s-audio",
569 fsl_asoc_card_is_ac97(priv
) ? "ac97" :
572 /* Initialize sound card */
574 priv
->card
.dev
= &pdev
->dev
;
575 priv
->card
.name
= priv
->name
;
576 priv
->card
.dai_link
= priv
->dai_link
;
577 priv
->card
.dapm_routes
= audio_map
;
578 priv
->card
.late_probe
= fsl_asoc_card_late_probe
;
579 priv
->card
.num_dapm_routes
= ARRAY_SIZE(audio_map
);
580 priv
->card
.dapm_widgets
= fsl_asoc_card_dapm_widgets
;
581 priv
->card
.num_dapm_widgets
= ARRAY_SIZE(fsl_asoc_card_dapm_widgets
);
583 memcpy(priv
->dai_link
, fsl_asoc_card_dai
,
584 sizeof(struct snd_soc_dai_link
) * ARRAY_SIZE(priv
->dai_link
));
586 ret
= snd_soc_of_parse_audio_routing(&priv
->card
, "audio-routing");
588 dev_err(&pdev
->dev
, "failed to parse audio-routing: %d\n", ret
);
592 /* Normal DAI Link */
593 priv
->dai_link
[0].cpu_of_node
= cpu_np
;
594 priv
->dai_link
[0].codec_dai_name
= codec_dai_name
;
596 if (!fsl_asoc_card_is_ac97(priv
))
597 priv
->dai_link
[0].codec_of_node
= codec_np
;
601 ret
= of_property_read_u32(cpu_np
, "cell-index", &idx
);
604 "cannot get CPU index property\n");
608 priv
->dai_link
[0].codec_name
=
609 devm_kasprintf(&pdev
->dev
, GFP_KERNEL
,
614 priv
->dai_link
[0].platform_of_node
= cpu_np
;
615 priv
->dai_link
[0].dai_fmt
= priv
->dai_fmt
;
616 priv
->card
.num_links
= 1;
619 /* DPCM DAI Links only if ASRC exsits */
620 priv
->dai_link
[1].cpu_of_node
= asrc_np
;
621 priv
->dai_link
[1].platform_of_node
= asrc_np
;
622 priv
->dai_link
[2].codec_dai_name
= codec_dai_name
;
623 priv
->dai_link
[2].codec_of_node
= codec_np
;
624 priv
->dai_link
[2].codec_name
=
625 priv
->dai_link
[0].codec_name
;
626 priv
->dai_link
[2].cpu_of_node
= cpu_np
;
627 priv
->dai_link
[2].dai_fmt
= priv
->dai_fmt
;
628 priv
->card
.num_links
= 3;
630 ret
= of_property_read_u32(asrc_np
, "fsl,asrc-rate",
633 dev_err(&pdev
->dev
, "failed to get output rate\n");
638 ret
= of_property_read_u32(asrc_np
, "fsl,asrc-width", &width
);
640 dev_err(&pdev
->dev
, "failed to get output rate\n");
646 priv
->asrc_format
= SNDRV_PCM_FORMAT_S24_LE
;
648 priv
->asrc_format
= SNDRV_PCM_FORMAT_S16_LE
;
651 /* Finish card registering */
652 platform_set_drvdata(pdev
, priv
);
653 snd_soc_card_set_drvdata(&priv
->card
, priv
);
655 ret
= devm_snd_soc_register_card(&pdev
->dev
, &priv
->card
);
657 dev_err(&pdev
->dev
, "snd_soc_register_card failed (%d)\n", ret
);
660 of_node_put(asrc_np
);
661 of_node_put(codec_np
);
668 static const struct of_device_id fsl_asoc_card_dt_ids
[] = {
669 { .compatible
= "fsl,imx-audio-ac97", },
670 { .compatible
= "fsl,imx-audio-cs42888", },
671 { .compatible
= "fsl,imx-audio-sgtl5000", },
672 { .compatible
= "fsl,imx-audio-wm8962", },
673 { .compatible
= "fsl,imx-audio-wm8960", },
676 MODULE_DEVICE_TABLE(of
, fsl_asoc_card_dt_ids
);
678 static struct platform_driver fsl_asoc_card_driver
= {
679 .probe
= fsl_asoc_card_probe
,
681 .name
= "fsl-asoc-card",
682 .pm
= &snd_soc_pm_ops
,
683 .of_match_table
= fsl_asoc_card_dt_ids
,
686 module_platform_driver(fsl_asoc_card_driver
);
688 MODULE_DESCRIPTION("Freescale Generic ASoC Sound Card driver with ASRC");
689 MODULE_AUTHOR("Nicolin Chen <nicoleotsuka@gmail.com>");
690 MODULE_ALIAS("platform:fsl-asoc-card");
691 MODULE_LICENSE("GPL");