2 * sound/soc/samsung/smdk_wm8994pcm.c
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd
5 * http://www.samsung.com
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
12 #include <linux/module.h>
13 #include <sound/soc.h>
14 #include <sound/pcm.h>
15 #include <sound/pcm_params.h>
17 #include "../codecs/wm8994.h"
24 * o 'X' means 'Don't care'
26 * SMDKC210, SMDKV310: CFG3- 1001, CFG5-1000, CFG7-111111
30 * Configure audio route as :-
31 * $ amixer sset 'DAC1' on,on
32 * $ amixer sset 'Right Headphone Mux' 'DAC'
33 * $ amixer sset 'Left Headphone Mux' 'DAC'
34 * $ amixer sset 'DAC1R Mixer AIF1.1' on
35 * $ amixer sset 'DAC1L Mixer AIF1.1' on
36 * $ amixer sset 'IN2L' on
37 * $ amixer sset 'IN2L PGA IN2LN' on
38 * $ amixer sset 'MIXINL IN2L' on
39 * $ amixer sset 'AIF1ADC1L Mixer ADC/DMIC' on
40 * $ amixer sset 'IN2R' on
41 * $ amixer sset 'IN2R PGA IN2RN' on
42 * $ amixer sset 'MIXINR IN2R' on
43 * $ amixer sset 'AIF1ADC1R Mixer ADC/DMIC' on
46 /* SMDK has a 16.9344MHZ crystal attached to WM8994 */
47 #define SMDK_WM8994_FREQ 16934400
49 static int smdk_wm8994_pcm_hw_params(struct snd_pcm_substream
*substream
,
50 struct snd_pcm_hw_params
*params
)
52 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
53 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
54 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
55 unsigned long mclk_freq
;
58 switch(params_rate(params
)) {
63 dev_err(cpu_dai
->dev
, "%s:%d Sampling Rate %u not supported!\n",
64 __func__
, __LINE__
, params_rate(params
));
68 mclk_freq
= params_rate(params
) * rfs
;
70 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8994_SYSCLK_FLL1
,
71 mclk_freq
, SND_SOC_CLOCK_IN
);
75 ret
= snd_soc_dai_set_pll(codec_dai
, WM8994_FLL1
, WM8994_FLL_SRC_MCLK1
,
76 SMDK_WM8994_FREQ
, mclk_freq
);
80 /* Set PCM source clock on CPU */
81 ret
= snd_soc_dai_set_sysclk(cpu_dai
, S3C_PCM_CLKSRC_MUX
,
82 mclk_freq
, SND_SOC_CLOCK_IN
);
86 /* Set SCLK_DIV for making bclk */
87 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C_PCM_SCLK_PER_FS
, rfs
);
94 static struct snd_soc_ops smdk_wm8994_pcm_ops
= {
95 .hw_params
= smdk_wm8994_pcm_hw_params
,
98 static struct snd_soc_dai_link smdk_dai
[] = {
100 .name
= "WM8994 PAIF PCM",
101 .stream_name
= "Primary PCM",
102 .cpu_dai_name
= "samsung-pcm.0",
103 .codec_dai_name
= "wm8994-aif1",
104 .platform_name
= "samsung-pcm.0",
105 .codec_name
= "wm8994-codec",
106 .dai_fmt
= SND_SOC_DAIFMT_DSP_B
| SND_SOC_DAIFMT_IB_NF
|
107 SND_SOC_DAIFMT_CBS_CFS
,
108 .ops
= &smdk_wm8994_pcm_ops
,
112 static struct snd_soc_card smdk_pcm
= {
114 .owner
= THIS_MODULE
,
115 .dai_link
= smdk_dai
,
119 static int snd_smdk_probe(struct platform_device
*pdev
)
123 smdk_pcm
.dev
= &pdev
->dev
;
124 ret
= devm_snd_soc_register_card(&pdev
->dev
, &smdk_pcm
);
126 dev_err(&pdev
->dev
, "snd_soc_register_card failed %d\n", ret
);
131 static struct platform_driver snd_smdk_driver
= {
133 .name
= "samsung-smdk-pcm",
135 .probe
= snd_smdk_probe
,
138 module_platform_driver(snd_smdk_driver
);
140 MODULE_AUTHOR("Sangbeom Kim, <sbkim73@samsung.com>");
141 MODULE_DESCRIPTION("ALSA SoC SMDK WM8994 for PCM");
142 MODULE_LICENSE("GPL");