ASoC: omap: Amstrad E3 needs TTY support for codec
[deliverable/linux.git] / sound / soc / omap / omap-abe-twl6040.c
CommitLineData
5e64d6aa 1/*
13f81d65
PU
2 * omap-abe-twl6040.c -- SoC audio for TI OMAP based boards with ABE and
3 * twl6040 codec
5e64d6aa 4 *
8747a6b7 5 * Author: Misael Lopez Cruz <misael.lopez@ti.com>
5e64d6aa
MLC
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19 * 02110-1301 USA
20 *
21 */
22
23#include <linux/clk.h>
24#include <linux/platform_device.h>
fb34d3d5 25#include <linux/mfd/twl6040.h>
da155d5b 26#include <linux/module.h>
5ef75e71 27#include <linux/of.h>
fb34d3d5 28
5e64d6aa
MLC
29#include <sound/core.h>
30#include <sound/pcm.h>
31#include <sound/soc.h>
96dc227c 32#include <sound/jack.h>
5e64d6aa 33
6524c8e3 34#include "omap-dmic.h"
f5f9d7bf 35#include "omap-mcpdm.h"
5e64d6aa
MLC
36#include "../codecs/twl6040.h"
37
356bccbe
PU
38struct abe_twl6040 {
39 int jack_detection; /* board can detect jack events */
40 int mclk_freq; /* MCLK frequency speed for twl6040 */
5ef75e71
PU
41
42 struct platform_device *dmic_codec_dev;
356bccbe
PU
43};
44
13f81d65 45static int omap_abe_hw_params(struct snd_pcm_substream *substream,
5e64d6aa
MLC
46 struct snd_pcm_hw_params *params)
47{
48 struct snd_soc_pcm_runtime *rtd = substream->private_data;
f0fba2ad 49 struct snd_soc_dai *codec_dai = rtd->codec_dai;
62ba98ce
PU
50 struct snd_soc_codec *codec = rtd->codec;
51 struct snd_soc_card *card = codec->card;
356bccbe 52 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
5e64d6aa
MLC
53 int clk_id, freq;
54 int ret;
55
af958c72
PU
56 clk_id = twl6040_get_clk_id(rtd->codec);
57 if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
356bccbe 58 freq = priv->mclk_freq;
af958c72 59 else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
5e64d6aa 60 freq = 32768;
af958c72
PU
61 else
62 return -EINVAL;
5e64d6aa
MLC
63
64 /* set the codec mclk */
65 ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq,
66 SND_SOC_CLOCK_IN);
67 if (ret) {
68 printk(KERN_ERR "can't set codec system clock\n");
69 return ret;
70 }
f0fba2ad 71 return ret;
5e64d6aa
MLC
72}
73
13f81d65
PU
74static struct snd_soc_ops omap_abe_ops = {
75 .hw_params = omap_abe_hw_params,
5e64d6aa
MLC
76};
77
13f81d65 78static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
6524c8e3
PU
79 struct snd_pcm_hw_params *params)
80{
81 struct snd_soc_pcm_runtime *rtd = substream->private_data;
82 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
83 int ret = 0;
84
85 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_SYSCLK_PAD_CLKS,
86 19200000, SND_SOC_CLOCK_IN);
87 if (ret < 0) {
88 printk(KERN_ERR "can't set DMIC cpu system clock\n");
89 return ret;
90 }
91 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_ABE_DMIC_CLK, 2400000,
92 SND_SOC_CLOCK_OUT);
93 if (ret < 0) {
94 printk(KERN_ERR "can't set DMIC output clock\n");
95 return ret;
96 }
97 return 0;
98}
99
13f81d65
PU
100static struct snd_soc_ops omap_abe_dmic_ops = {
101 .hw_params = omap_abe_dmic_hw_params,
6524c8e3
PU
102};
103
96dc227c
JEC
104/* Headset jack */
105static struct snd_soc_jack hs_jack;
106
107/*Headset jack detection DAPM pins */
108static struct snd_soc_jack_pin hs_jack_pins[] = {
109 {
110 .pin = "Headset Mic",
111 .mask = SND_JACK_MICROPHONE,
112 },
113 {
114 .pin = "Headset Stereophone",
115 .mask = SND_JACK_HEADPHONE,
116 },
117};
118
5e64d6aa 119/* SDP4430 machine DAPM */
13f81d65 120static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
b3208839 121 /* Outputs */
5e64d6aa 122 SND_SOC_DAPM_HP("Headset Stereophone", NULL),
7254e2bd 123 SND_SOC_DAPM_SPK("Earphone Spk", NULL),
b3208839
PU
124 SND_SOC_DAPM_SPK("Ext Spk", NULL),
125 SND_SOC_DAPM_LINE("Line Out", NULL),
126 SND_SOC_DAPM_SPK("Vibrator", NULL),
127
128 /* Inputs */
129 SND_SOC_DAPM_MIC("Headset Mic", NULL),
130 SND_SOC_DAPM_MIC("Main Handset Mic", NULL),
131 SND_SOC_DAPM_MIC("Sub Handset Mic", NULL),
132 SND_SOC_DAPM_LINE("Line In", NULL),
7d09f9e9
PU
133
134 /* Digital microphones */
135 SND_SOC_DAPM_MIC("Digital Mic", NULL),
5e64d6aa
MLC
136};
137
138static const struct snd_soc_dapm_route audio_map[] = {
b3208839
PU
139 /* Routings for outputs */
140 {"Headset Stereophone", NULL, "HSOL"},
141 {"Headset Stereophone", NULL, "HSOR"},
142
143 {"Earphone Spk", NULL, "EP"},
5e64d6aa 144
5e64d6aa
MLC
145 {"Ext Spk", NULL, "HFL"},
146 {"Ext Spk", NULL, "HFR"},
147
b3208839
PU
148 {"Line Out", NULL, "AUXL"},
149 {"Line Out", NULL, "AUXR"},
150
151 {"Vibrator", NULL, "VIBRAL"},
152 {"Vibrator", NULL, "VIBRAR"},
153
154 /* Routings for inputs */
778cee7a
PU
155 {"HSMIC", NULL, "Headset Mic"},
156 {"Headset Mic", NULL, "Headset Mic Bias"},
5e64d6aa 157
b3208839
PU
158 {"MAINMIC", NULL, "Main Handset Mic"},
159 {"Main Handset Mic", NULL, "Main Mic Bias"},
7254e2bd 160
b3208839
PU
161 {"SUBMIC", NULL, "Sub Handset Mic"},
162 {"Sub Handset Mic", NULL, "Main Mic Bias"},
23ac3b61 163
b3208839
PU
164 {"AFML", NULL, "Line In"},
165 {"AFMR", NULL, "Line In"},
5e64d6aa
MLC
166};
167
13f81d65 168static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
5e64d6aa 169{
f0fba2ad 170 struct snd_soc_codec *codec = rtd->codec;
4ca07cb0 171 struct snd_soc_card *card = codec->card;
356bccbe 172 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
4ca07cb0
PU
173 int hs_trim;
174 int ret = 0;
175
7bf3d92c
PU
176 /*
177 * Configure McPDM offset cancellation based on the HSOTRIM value from
178 * twl6040.
179 */
180 hs_trim = twl6040_get_trim_value(codec, TWL6040_TRIM_HSOTRIM);
181 omap_mcpdm_configure_dn_offsets(rtd, TWL6040_HSF_TRIM_LEFT(hs_trim),
182 TWL6040_HSF_TRIM_RIGHT(hs_trim));
183
4ca07cb0 184 /* Headset jack detection only if it is supported */
356bccbe 185 if (priv->jack_detection) {
4ca07cb0
PU
186 ret = snd_soc_jack_new(codec, "Headset Jack",
187 SND_JACK_HEADSET, &hs_jack);
188 if (ret)
189 return ret;
96dc227c 190
4ca07cb0
PU
191 ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
192 hs_jack_pins);
96dc227c 193 twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
4ca07cb0 194 }
5e64d6aa
MLC
195
196 return ret;
197}
198
6524c8e3 199static const struct snd_soc_dapm_route dmic_audio_map[] = {
778cee7a
PU
200 {"DMic", NULL, "Digital Mic"},
201 {"Digital Mic", NULL, "Digital Mic1 Bias"},
6524c8e3
PU
202};
203
13f81d65 204static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
6524c8e3 205{
7f0af4ae 206 struct snd_soc_dapm_context *dapm = &rtd->card->dapm;
6524c8e3
PU
207
208 return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
209 ARRAY_SIZE(dmic_audio_map));
210}
211
5e64d6aa 212/* Digital audio interface glue - connects codec <--> CPU */
c2f98956 213static struct snd_soc_dai_link abe_twl6040_dai_links[] = {
6524c8e3
PU
214 {
215 .name = "TWL6040",
216 .stream_name = "TWL6040",
6524c8e3 217 .codec_dai_name = "twl6040-legacy",
6524c8e3 218 .codec_name = "twl6040-codec",
13f81d65
PU
219 .init = omap_abe_twl6040_init,
220 .ops = &omap_abe_ops,
6524c8e3
PU
221 },
222 {
223 .name = "DMIC",
224 .stream_name = "DMIC Capture",
6524c8e3 225 .codec_dai_name = "dmic-hifi",
6524c8e3 226 .codec_name = "dmic-codec",
13f81d65
PU
227 .init = omap_abe_dmic_init,
228 .ops = &omap_abe_dmic_ops,
6524c8e3 229 },
5e64d6aa
MLC
230};
231
232/* Audio machine driver */
13f81d65 233static struct snd_soc_card omap_abe_card = {
b425b884 234 .owner = THIS_MODULE,
fc8e5b4c 235
13f81d65
PU
236 .dapm_widgets = twl6040_dapm_widgets,
237 .num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
fc8e5b4c
PU
238 .dapm_routes = audio_map,
239 .num_dapm_routes = ARRAY_SIZE(audio_map),
5e64d6aa
MLC
240};
241
7ff60006 242static int omap_abe_probe(struct platform_device *pdev)
5e64d6aa 243{
5ef75e71 244 struct device_node *node = pdev->dev.of_node;
d1be1d2f 245 struct snd_soc_card *card = &omap_abe_card;
8fe120b5 246 struct device_node *dai_node;
356bccbe 247 struct abe_twl6040 *priv;
c2f98956 248 int num_links = 0;
5ef75e71 249 int ret = 0;
5e64d6aa 250
8fe120b5
PU
251 if (!node) {
252 dev_err(&pdev->dev, "of node is missing.\n");
253 return -ENODEV;
254 }
255
d1be1d2f 256 card->dev = &pdev->dev;
5e64d6aa 257
356bccbe
PU
258 priv = devm_kzalloc(&pdev->dev, sizeof(struct abe_twl6040), GFP_KERNEL);
259 if (priv == NULL)
260 return -ENOMEM;
261
5ef75e71
PU
262 priv->dmic_codec_dev = ERR_PTR(-EINVAL);
263
8fe120b5
PU
264 if (snd_soc_of_parse_card_name(card, "ti,model")) {
265 dev_err(&pdev->dev, "Card name is not provided\n");
266 return -ENODEV;
267 }
5ef75e71 268
8fe120b5
PU
269 ret = snd_soc_of_parse_audio_routing(card, "ti,audio-routing");
270 if (ret) {
271 dev_err(&pdev->dev, "Error while parsing DAPM routing\n");
272 return ret;
273 }
5ef75e71 274
8fe120b5
PU
275 dai_node = of_parse_phandle(node, "ti,mcpdm", 0);
276 if (!dai_node) {
277 dev_err(&pdev->dev, "McPDM node is not provided\n");
278 return -EINVAL;
279 }
8fe120b5 280 abe_twl6040_dai_links[0].cpu_of_node = dai_node;
25bed461 281 abe_twl6040_dai_links[0].platform_of_node = dai_node;
5ef75e71 282
8fe120b5
PU
283 dai_node = of_parse_phandle(node, "ti,dmic", 0);
284 if (dai_node) {
285 num_links = 2;
8fe120b5 286 abe_twl6040_dai_links[1].cpu_of_node = dai_node;
25bed461 287 abe_twl6040_dai_links[1].platform_of_node = dai_node;
5ef75e71 288
8fe120b5 289 priv->dmic_codec_dev = platform_device_register_simple(
5ef75e71 290 "dmic-codec", -1, NULL, 0);
8fe120b5
PU
291 if (IS_ERR(priv->dmic_codec_dev)) {
292 dev_err(&pdev->dev, "Can't instantiate dmic-codec\n");
293 return PTR_ERR(priv->dmic_codec_dev);
5ef75e71 294 }
d1be1d2f 295 } else {
8fe120b5
PU
296 num_links = 1;
297 }
298
299 priv->jack_detection = of_property_read_bool(node, "ti,jack-detection");
300 of_property_read_u32(node, "ti,mclk-freq", &priv->mclk_freq);
301 if (!priv->mclk_freq) {
302 dev_err(&pdev->dev, "MCLK frequency not provided\n");
303 ret = -EINVAL;
304 goto err_unregister;
d1be1d2f 305 }
5e64d6aa 306
8fe120b5 307 card->fully_routed = 1;
356bccbe
PU
308
309 if (!priv->mclk_freq) {
62ba98ce 310 dev_err(&pdev->dev, "MCLK frequency missing\n");
5ef75e71
PU
311 ret = -ENODEV;
312 goto err_unregister;
62ba98ce
PU
313 }
314
c2f98956
PU
315 card->dai_link = abe_twl6040_dai_links;
316 card->num_links = num_links;
8d946dd7 317
356bccbe
PU
318 snd_soc_card_set_drvdata(card, priv);
319
d1be1d2f 320 ret = snd_soc_register_card(card);
5ef75e71 321 if (ret) {
d1be1d2f
PU
322 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
323 ret);
5ef75e71
PU
324 goto err_unregister;
325 }
326
327 return 0;
328
329err_unregister:
330 if (!IS_ERR(priv->dmic_codec_dev))
331 platform_device_unregister(priv->dmic_codec_dev);
5e64d6aa 332
5e64d6aa
MLC
333 return ret;
334}
5e64d6aa 335
7ff60006 336static int omap_abe_remove(struct platform_device *pdev)
5e64d6aa 337{
d1be1d2f 338 struct snd_soc_card *card = platform_get_drvdata(pdev);
5ef75e71 339 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
d1be1d2f
PU
340
341 snd_soc_unregister_card(card);
342
5ef75e71
PU
343 if (!IS_ERR(priv->dmic_codec_dev))
344 platform_device_unregister(priv->dmic_codec_dev);
345
d1be1d2f 346 return 0;
5e64d6aa 347}
d1be1d2f 348
5ef75e71
PU
349static const struct of_device_id omap_abe_of_match[] = {
350 {.compatible = "ti,abe-twl6040", },
351 { },
352};
353MODULE_DEVICE_TABLE(of, omap_abe_of_match);
354
d1be1d2f
PU
355static struct platform_driver omap_abe_driver = {
356 .driver = {
357 .name = "omap-abe-twl6040",
358 .owner = THIS_MODULE,
359 .pm = &snd_soc_pm_ops,
5ef75e71 360 .of_match_table = omap_abe_of_match,
d1be1d2f
PU
361 },
362 .probe = omap_abe_probe,
7ff60006 363 .remove = omap_abe_remove,
d1be1d2f
PU
364};
365
366module_platform_driver(omap_abe_driver);
5e64d6aa 367
8747a6b7 368MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
13f81d65 369MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
5e64d6aa 370MODULE_LICENSE("GPL");
d1be1d2f 371MODULE_ALIAS("platform:omap-abe-twl6040");
This page took 0.18597 seconds and 5 git commands to generate.