blob: 1da26031e26d7d8fca999e6ac26c3c005e0cd511 [file] [log] [blame]
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -05001/*
Peter Ujfalusi13f81d62011-12-07 15:54:50 +02002 * omap-abe-twl6040.c -- SoC audio for TI OMAP based boards with ABE and
3 * twl6040 codec
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -05004 *
Peter Ujfalusi8747a6b2011-12-07 15:31:26 +02005 * Author: Misael Lopez Cruz <misael.lopez@ti.com>
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -05006 *
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>
Misael Lopez Cruzfb34d3d2011-05-01 21:27:00 -050025#include <linux/mfd/twl6040.h>
Peter Ujfalusid1be1d22011-12-08 11:07:42 +020026#include <linux/platform_data/omap-abe-twl6040.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Misael Lopez Cruzfb34d3d2011-05-01 21:27:00 -050028
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050029#include <sound/core.h>
30#include <sound/pcm.h>
31#include <sound/soc.h>
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -060032#include <sound/jack.h>
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050033
34#include <asm/mach-types.h>
35#include <plat/hardware.h>
36#include <plat/mux.h>
37
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020038#include "omap-dmic.h"
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030039#include "omap-mcpdm.h"
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050040#include "omap-pcm.h"
41#include "../codecs/twl6040.h"
42
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020043static int omap_abe_hw_params(struct snd_pcm_substream *substream,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050044 struct snd_pcm_hw_params *params)
45{
46 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000047 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050048 int clk_id, freq;
49 int ret;
50
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030051 clk_id = twl6040_get_clk_id(rtd->codec);
52 if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050053 freq = 38400000;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030054 else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050055 freq = 32768;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030056 else
57 return -EINVAL;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050058
59 /* set the codec mclk */
60 ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq,
61 SND_SOC_CLOCK_IN);
62 if (ret) {
63 printk(KERN_ERR "can't set codec system clock\n");
64 return ret;
65 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000066 return ret;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050067}
68
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020069static struct snd_soc_ops omap_abe_ops = {
70 .hw_params = omap_abe_hw_params,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050071};
72
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020073static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020074 struct snd_pcm_hw_params *params)
75{
76 struct snd_soc_pcm_runtime *rtd = substream->private_data;
77 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
78 int ret = 0;
79
80 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_SYSCLK_PAD_CLKS,
81 19200000, SND_SOC_CLOCK_IN);
82 if (ret < 0) {
83 printk(KERN_ERR "can't set DMIC cpu system clock\n");
84 return ret;
85 }
86 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_ABE_DMIC_CLK, 2400000,
87 SND_SOC_CLOCK_OUT);
88 if (ret < 0) {
89 printk(KERN_ERR "can't set DMIC output clock\n");
90 return ret;
91 }
92 return 0;
93}
94
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020095static struct snd_soc_ops omap_abe_dmic_ops = {
96 .hw_params = omap_abe_dmic_hw_params,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020097};
98
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -060099/* Headset jack */
100static struct snd_soc_jack hs_jack;
101
102/*Headset jack detection DAPM pins */
103static struct snd_soc_jack_pin hs_jack_pins[] = {
104 {
105 .pin = "Headset Mic",
106 .mask = SND_JACK_MICROPHONE,
107 },
108 {
109 .pin = "Headset Stereophone",
110 .mask = SND_JACK_HEADPHONE,
111 },
112};
113
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500114/* SDP4430 machine DAPM */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200115static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200116 /* Outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500117 SND_SOC_DAPM_HP("Headset Stereophone", NULL),
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500118 SND_SOC_DAPM_SPK("Earphone Spk", NULL),
Peter Ujfalusib3208832011-12-22 12:55:49 +0200119 SND_SOC_DAPM_SPK("Ext Spk", NULL),
120 SND_SOC_DAPM_LINE("Line Out", NULL),
121 SND_SOC_DAPM_SPK("Vibrator", NULL),
122
123 /* Inputs */
124 SND_SOC_DAPM_MIC("Headset Mic", NULL),
125 SND_SOC_DAPM_MIC("Main Handset Mic", NULL),
126 SND_SOC_DAPM_MIC("Sub Handset Mic", NULL),
127 SND_SOC_DAPM_LINE("Line In", NULL),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500128};
129
130static const struct snd_soc_dapm_route audio_map[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200131 /* Routings for outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500132 {"Headset Stereophone", NULL, "HSOL"},
133 {"Headset Stereophone", NULL, "HSOR"},
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500134
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500135 {"Earphone Spk", NULL, "EP"},
Jorge Eduardo Candelaria23ac3b62010-12-08 10:55:05 -0600136
Peter Ujfalusib3208832011-12-22 12:55:49 +0200137 {"Ext Spk", NULL, "HFL"},
138 {"Ext Spk", NULL, "HFR"},
139
140 {"Line Out", NULL, "AUXL"},
141 {"Line Out", NULL, "AUXR"},
142
143 {"Vibrator", NULL, "VIBRAL"},
144 {"Vibrator", NULL, "VIBRAR"},
145
146 /* Routings for inputs */
147 {"HSMIC", NULL, "Headset Mic"},
148 {"Headset Mic", NULL, "Headset Mic Bias"},
149
150 {"MAINMIC", NULL, "Main Handset Mic"},
151 {"Main Handset Mic", NULL, "Main Mic Bias"},
152
153 {"SUBMIC", NULL, "Sub Handset Mic"},
154 {"Sub Handset Mic", NULL, "Main Mic Bias"},
155
156 {"AFML", NULL, "Line In"},
157 {"AFMR", NULL, "Line In"},
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500158};
159
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200160static inline void twl6040_disconnect_pin(struct snd_soc_dapm_context *dapm,
161 int connected, char *pin)
162{
163 if (!connected)
164 snd_soc_dapm_disable_pin(dapm, pin);
165}
166
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200167static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500168{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000169 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200170 struct snd_soc_card *card = codec->card;
171 struct snd_soc_dapm_context *dapm = &codec->dapm;
172 struct omap_abe_twl6040_data *pdata = dev_get_platdata(card->dev);
173 int hs_trim;
174 int ret = 0;
175
176 /* Disable not connected paths if not used */
177 twl6040_disconnect_pin(dapm, pdata->has_hs, "Headset Stereophone");
178 twl6040_disconnect_pin(dapm, pdata->has_hf, "Ext Spk");
179 twl6040_disconnect_pin(dapm, pdata->has_ep, "Earphone Spk");
180 twl6040_disconnect_pin(dapm, pdata->has_aux, "Line Out");
181 twl6040_disconnect_pin(dapm, pdata->has_vibra, "Vinrator");
182 twl6040_disconnect_pin(dapm, pdata->has_hsmic, "Headset Mic");
183 twl6040_disconnect_pin(dapm, pdata->has_mainmic, "Main Handset Mic");
184 twl6040_disconnect_pin(dapm, pdata->has_submic, "Sub Handset Mic");
185 twl6040_disconnect_pin(dapm, pdata->has_afm, "Line In");
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500186
Peter Ujfalusi7bf3d922011-09-26 16:05:59 +0300187 /*
188 * Configure McPDM offset cancellation based on the HSOTRIM value from
189 * twl6040.
190 */
191 hs_trim = twl6040_get_trim_value(codec, TWL6040_TRIM_HSOTRIM);
192 omap_mcpdm_configure_dn_offsets(rtd, TWL6040_HSF_TRIM_LEFT(hs_trim),
193 TWL6040_HSF_TRIM_RIGHT(hs_trim));
194
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200195 /* Headset jack detection only if it is supported */
196 if (pdata->jack_detection) {
197 ret = snd_soc_jack_new(codec, "Headset Jack",
198 SND_JACK_HEADSET, &hs_jack);
199 if (ret)
200 return ret;
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600201
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200202 ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
203 hs_jack_pins);
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600204 twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200205 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500206
207 return ret;
208}
209
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200210static const struct snd_soc_dapm_widget dmic_dapm_widgets[] = {
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200211 SND_SOC_DAPM_MIC("Digital Mic", NULL),
212};
213
214static const struct snd_soc_dapm_route dmic_audio_map[] = {
Peter Ujfalusi778cee72011-12-22 12:47:21 +0200215 {"DMic", NULL, "Digital Mic"},
216 {"Digital Mic", NULL, "Digital Mic1 Bias"},
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200217};
218
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200219static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200220{
221 struct snd_soc_codec *codec = rtd->codec;
222 struct snd_soc_dapm_context *dapm = &codec->dapm;
223 int ret;
224
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200225 ret = snd_soc_dapm_new_controls(dapm, dmic_dapm_widgets,
226 ARRAY_SIZE(dmic_dapm_widgets));
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200227 if (ret)
228 return ret;
229
230 return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
231 ARRAY_SIZE(dmic_audio_map));
232}
233
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500234/* Digital audio interface glue - connects codec <--> CPU */
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200235static struct snd_soc_dai_link twl6040_dmic_dai[] = {
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200236 {
237 .name = "TWL6040",
238 .stream_name = "TWL6040",
239 .cpu_dai_name = "omap-mcpdm",
240 .codec_dai_name = "twl6040-legacy",
241 .platform_name = "omap-pcm-audio",
242 .codec_name = "twl6040-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200243 .init = omap_abe_twl6040_init,
244 .ops = &omap_abe_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200245 },
246 {
247 .name = "DMIC",
248 .stream_name = "DMIC Capture",
249 .cpu_dai_name = "omap-dmic",
250 .codec_dai_name = "dmic-hifi",
251 .platform_name = "omap-pcm-audio",
252 .codec_name = "dmic-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200253 .init = omap_abe_dmic_init,
254 .ops = &omap_abe_dmic_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200255 },
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500256};
257
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200258static struct snd_soc_dai_link twl6040_only_dai[] = {
259 {
260 .name = "TWL6040",
261 .stream_name = "TWL6040",
262 .cpu_dai_name = "omap-mcpdm",
263 .codec_dai_name = "twl6040-legacy",
264 .platform_name = "omap-pcm-audio",
265 .codec_name = "twl6040-codec",
266 .init = omap_abe_twl6040_init,
267 .ops = &omap_abe_ops,
268 },
269};
270
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500271/* Audio machine driver */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200272static struct snd_soc_card omap_abe_card = {
Axel Linb425b882011-12-22 11:08:59 +0800273 .owner = THIS_MODULE,
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300274
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200275 .dapm_widgets = twl6040_dapm_widgets,
276 .num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300277 .dapm_routes = audio_map,
278 .num_dapm_routes = ARRAY_SIZE(audio_map),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500279};
280
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200281static __devinit int omap_abe_probe(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500282{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200283 struct omap_abe_twl6040_data *pdata = dev_get_platdata(&pdev->dev);
284 struct snd_soc_card *card = &omap_abe_card;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500285 int ret;
286
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200287 card->dev = &pdev->dev;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500288
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200289 if (!pdata) {
290 dev_err(&pdev->dev, "Missing pdata\n");
291 return -ENODEV;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500292 }
293
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200294 if (pdata->card_name) {
295 card->name = pdata->card_name;
296 } else {
297 dev_err(&pdev->dev, "Card name is not provided\n");
298 return -ENODEV;
299 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500300
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200301 if (pdata->has_dmic) {
302 card->dai_link = twl6040_dmic_dai;
303 card->num_links = ARRAY_SIZE(twl6040_dmic_dai);
304 } else {
305 card->dai_link = twl6040_only_dai;
306 card->num_links = ARRAY_SIZE(twl6040_only_dai);
307 }
308
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200309 ret = snd_soc_register_card(card);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500310 if (ret)
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200311 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
312 ret);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500313
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500314 return ret;
315}
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500316
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200317static int __devexit omap_abe_remove(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500318{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200319 struct snd_soc_card *card = platform_get_drvdata(pdev);
320
321 snd_soc_unregister_card(card);
322
323 return 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500324}
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200325
326static struct platform_driver omap_abe_driver = {
327 .driver = {
328 .name = "omap-abe-twl6040",
329 .owner = THIS_MODULE,
330 .pm = &snd_soc_pm_ops,
331 },
332 .probe = omap_abe_probe,
333 .remove = __devexit_p(omap_abe_remove),
334};
335
336module_platform_driver(omap_abe_driver);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500337
Peter Ujfalusi8747a6b2011-12-07 15:31:26 +0200338MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200339MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500340MODULE_LICENSE("GPL");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200341MODULE_ALIAS("platform:omap-abe-twl6040");