blob: 70cd5c7b2e145622b031ffd320786599738091de [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>
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +030028#include <linux/of.h>
Misael Lopez Cruzfb34d3d2011-05-01 21:27:00 -050029
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050030#include <sound/core.h>
31#include <sound/pcm.h>
32#include <sound/soc.h>
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -060033#include <sound/jack.h>
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050034
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020035#include "omap-dmic.h"
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030036#include "omap-mcpdm.h"
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050037#include "../codecs/twl6040.h"
38
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030039struct abe_twl6040 {
40 int jack_detection; /* board can detect jack events */
41 int mclk_freq; /* MCLK frequency speed for twl6040 */
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +030042
43 struct platform_device *dmic_codec_dev;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030044};
45
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020046static int omap_abe_hw_params(struct snd_pcm_substream *substream,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050047 struct snd_pcm_hw_params *params)
48{
49 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000050 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +020051 struct snd_soc_codec *codec = rtd->codec;
52 struct snd_soc_card *card = codec->card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030053 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050054 int clk_id, freq;
55 int ret;
56
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030057 clk_id = twl6040_get_clk_id(rtd->codec);
58 if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030059 freq = priv->mclk_freq;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030060 else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050061 freq = 32768;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030062 else
63 return -EINVAL;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050064
65 /* set the codec mclk */
66 ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq,
67 SND_SOC_CLOCK_IN);
68 if (ret) {
69 printk(KERN_ERR "can't set codec system clock\n");
70 return ret;
71 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000072 return ret;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050073}
74
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020075static struct snd_soc_ops omap_abe_ops = {
76 .hw_params = omap_abe_hw_params,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050077};
78
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020079static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020080 struct snd_pcm_hw_params *params)
81{
82 struct snd_soc_pcm_runtime *rtd = substream->private_data;
83 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
84 int ret = 0;
85
86 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_SYSCLK_PAD_CLKS,
87 19200000, SND_SOC_CLOCK_IN);
88 if (ret < 0) {
89 printk(KERN_ERR "can't set DMIC cpu system clock\n");
90 return ret;
91 }
92 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_ABE_DMIC_CLK, 2400000,
93 SND_SOC_CLOCK_OUT);
94 if (ret < 0) {
95 printk(KERN_ERR "can't set DMIC output clock\n");
96 return ret;
97 }
98 return 0;
99}
100
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200101static struct snd_soc_ops omap_abe_dmic_ops = {
102 .hw_params = omap_abe_dmic_hw_params,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200103};
104
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600105/* Headset jack */
106static struct snd_soc_jack hs_jack;
107
108/*Headset jack detection DAPM pins */
109static struct snd_soc_jack_pin hs_jack_pins[] = {
110 {
111 .pin = "Headset Mic",
112 .mask = SND_JACK_MICROPHONE,
113 },
114 {
115 .pin = "Headset Stereophone",
116 .mask = SND_JACK_HEADPHONE,
117 },
118};
119
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500120/* SDP4430 machine DAPM */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200121static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200122 /* Outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500123 SND_SOC_DAPM_HP("Headset Stereophone", NULL),
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500124 SND_SOC_DAPM_SPK("Earphone Spk", NULL),
Peter Ujfalusib3208832011-12-22 12:55:49 +0200125 SND_SOC_DAPM_SPK("Ext Spk", NULL),
126 SND_SOC_DAPM_LINE("Line Out", NULL),
127 SND_SOC_DAPM_SPK("Vibrator", NULL),
128
129 /* Inputs */
130 SND_SOC_DAPM_MIC("Headset Mic", NULL),
131 SND_SOC_DAPM_MIC("Main Handset Mic", NULL),
132 SND_SOC_DAPM_MIC("Sub Handset Mic", NULL),
133 SND_SOC_DAPM_LINE("Line In", NULL),
Peter Ujfalusi7d09f9e2012-04-24 12:41:32 +0300134
135 /* Digital microphones */
136 SND_SOC_DAPM_MIC("Digital Mic", NULL),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500137};
138
139static const struct snd_soc_dapm_route audio_map[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200140 /* Routings for outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500141 {"Headset Stereophone", NULL, "HSOL"},
142 {"Headset Stereophone", NULL, "HSOR"},
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500143
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500144 {"Earphone Spk", NULL, "EP"},
Jorge Eduardo Candelaria23ac3b62010-12-08 10:55:05 -0600145
Peter Ujfalusib3208832011-12-22 12:55:49 +0200146 {"Ext Spk", NULL, "HFL"},
147 {"Ext Spk", NULL, "HFR"},
148
149 {"Line Out", NULL, "AUXL"},
150 {"Line Out", NULL, "AUXR"},
151
152 {"Vibrator", NULL, "VIBRAL"},
153 {"Vibrator", NULL, "VIBRAR"},
154
155 /* Routings for inputs */
156 {"HSMIC", NULL, "Headset Mic"},
157 {"Headset Mic", NULL, "Headset Mic Bias"},
158
159 {"MAINMIC", NULL, "Main Handset Mic"},
160 {"Main Handset Mic", NULL, "Main Mic Bias"},
161
162 {"SUBMIC", NULL, "Sub Handset Mic"},
163 {"Sub Handset Mic", NULL, "Main Mic Bias"},
164
165 {"AFML", NULL, "Line In"},
166 {"AFMR", NULL, "Line In"},
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500167};
168
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200169static inline void twl6040_disconnect_pin(struct snd_soc_dapm_context *dapm,
170 int connected, char *pin)
171{
172 if (!connected)
173 snd_soc_dapm_disable_pin(dapm, pin);
174}
175
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200176static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500177{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000178 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200179 struct snd_soc_card *card = codec->card;
180 struct snd_soc_dapm_context *dapm = &codec->dapm;
181 struct omap_abe_twl6040_data *pdata = dev_get_platdata(card->dev);
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300182 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200183 int hs_trim;
184 int ret = 0;
185
Peter Ujfalusi7bf3d922011-09-26 16:05:59 +0300186 /*
187 * Configure McPDM offset cancellation based on the HSOTRIM value from
188 * twl6040.
189 */
190 hs_trim = twl6040_get_trim_value(codec, TWL6040_TRIM_HSOTRIM);
191 omap_mcpdm_configure_dn_offsets(rtd, TWL6040_HSF_TRIM_LEFT(hs_trim),
192 TWL6040_HSF_TRIM_RIGHT(hs_trim));
193
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200194 /* Headset jack detection only if it is supported */
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300195 if (priv->jack_detection) {
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200196 ret = snd_soc_jack_new(codec, "Headset Jack",
197 SND_JACK_HEADSET, &hs_jack);
198 if (ret)
199 return ret;
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600200
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200201 ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
202 hs_jack_pins);
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600203 twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200204 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500205
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300206 /*
207 * NULL pdata means we booted with DT. In this case the routing is
208 * provided and the card is fully routed, no need to mark pins.
209 */
210 if (!pdata)
211 return ret;
212
213 /* Disable not connected paths if not used */
214 twl6040_disconnect_pin(dapm, pdata->has_hs, "Headset Stereophone");
215 twl6040_disconnect_pin(dapm, pdata->has_hf, "Ext Spk");
216 twl6040_disconnect_pin(dapm, pdata->has_ep, "Earphone Spk");
217 twl6040_disconnect_pin(dapm, pdata->has_aux, "Line Out");
Peter Ujfalusi034940a2012-10-02 15:31:16 +0300218 twl6040_disconnect_pin(dapm, pdata->has_vibra, "Vibrator");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300219 twl6040_disconnect_pin(dapm, pdata->has_hsmic, "Headset Mic");
220 twl6040_disconnect_pin(dapm, pdata->has_mainmic, "Main Handset Mic");
221 twl6040_disconnect_pin(dapm, pdata->has_submic, "Sub Handset Mic");
222 twl6040_disconnect_pin(dapm, pdata->has_afm, "Line In");
223
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500224 return ret;
225}
226
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200227static const struct snd_soc_dapm_route dmic_audio_map[] = {
Peter Ujfalusi778cee72011-12-22 12:47:21 +0200228 {"DMic", NULL, "Digital Mic"},
229 {"Digital Mic", NULL, "Digital Mic1 Bias"},
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200230};
231
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200232static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200233{
234 struct snd_soc_codec *codec = rtd->codec;
235 struct snd_soc_dapm_context *dapm = &codec->dapm;
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200236
237 return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
238 ARRAY_SIZE(dmic_audio_map));
239}
240
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500241/* Digital audio interface glue - connects codec <--> CPU */
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300242static struct snd_soc_dai_link abe_twl6040_dai_links[] = {
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200243 {
244 .name = "TWL6040",
245 .stream_name = "TWL6040",
246 .cpu_dai_name = "omap-mcpdm",
247 .codec_dai_name = "twl6040-legacy",
248 .platform_name = "omap-pcm-audio",
249 .codec_name = "twl6040-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200250 .init = omap_abe_twl6040_init,
251 .ops = &omap_abe_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200252 },
253 {
254 .name = "DMIC",
255 .stream_name = "DMIC Capture",
256 .cpu_dai_name = "omap-dmic",
257 .codec_dai_name = "dmic-hifi",
258 .platform_name = "omap-pcm-audio",
259 .codec_name = "dmic-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200260 .init = omap_abe_dmic_init,
261 .ops = &omap_abe_dmic_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200262 },
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500263};
264
265/* Audio machine driver */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200266static struct snd_soc_card omap_abe_card = {
Axel Linb425b882011-12-22 11:08:59 +0800267 .owner = THIS_MODULE,
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300268
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200269 .dapm_widgets = twl6040_dapm_widgets,
270 .num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300271 .dapm_routes = audio_map,
272 .num_dapm_routes = ARRAY_SIZE(audio_map),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500273};
274
Bill Pemberton7ff60002012-12-07 09:26:29 -0500275static int omap_abe_probe(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500276{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200277 struct omap_abe_twl6040_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300278 struct device_node *node = pdev->dev.of_node;
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200279 struct snd_soc_card *card = &omap_abe_card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300280 struct abe_twl6040 *priv;
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300281 int num_links = 0;
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300282 int ret = 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500283
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200284 card->dev = &pdev->dev;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500285
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300286 priv = devm_kzalloc(&pdev->dev, sizeof(struct abe_twl6040), GFP_KERNEL);
287 if (priv == NULL)
288 return -ENOMEM;
289
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300290 priv->dmic_codec_dev = ERR_PTR(-EINVAL);
291
292 if (node) {
293 struct device_node *dai_node;
294
295 if (snd_soc_of_parse_card_name(card, "ti,model")) {
296 dev_err(&pdev->dev, "Card name is not provided\n");
297 return -ENODEV;
298 }
299
300 ret = snd_soc_of_parse_audio_routing(card,
301 "ti,audio-routing");
302 if (ret) {
303 dev_err(&pdev->dev,
304 "Error while parsing DAPM routing\n");
305 return ret;
306 }
307
308 dai_node = of_parse_phandle(node, "ti,mcpdm", 0);
309 if (!dai_node) {
310 dev_err(&pdev->dev, "McPDM node is not provided\n");
311 return -EINVAL;
312 }
313 abe_twl6040_dai_links[0].cpu_dai_name = NULL;
314 abe_twl6040_dai_links[0].cpu_of_node = dai_node;
315
316 dai_node = of_parse_phandle(node, "ti,dmic", 0);
317 if (dai_node) {
318 num_links = 2;
319 abe_twl6040_dai_links[1].cpu_dai_name = NULL;
320 abe_twl6040_dai_links[1].cpu_of_node = dai_node;
321
322 priv->dmic_codec_dev = platform_device_register_simple(
323 "dmic-codec", -1, NULL, 0);
324 if (IS_ERR(priv->dmic_codec_dev)) {
325 dev_err(&pdev->dev,
326 "Can't instantiate dmic-codec\n");
327 return PTR_ERR(priv->dmic_codec_dev);
328 }
329 } else {
330 num_links = 1;
331 }
332
Peter Ujfalusi1c08e7e2012-11-28 11:35:43 +0100333 priv->jack_detection = of_property_read_bool(node,
334 "ti,jack-detection");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300335 of_property_read_u32(node, "ti,mclk-freq",
336 &priv->mclk_freq);
337 if (!priv->mclk_freq) {
338 dev_err(&pdev->dev, "MCLK frequency not provided\n");
339 ret = -EINVAL;
340 goto err_unregister;
341 }
342
343 omap_abe_card.fully_routed = 1;
344 } else if (pdata) {
345 if (pdata->card_name) {
346 card->name = pdata->card_name;
347 } else {
348 dev_err(&pdev->dev, "Card name is not provided\n");
349 return -ENODEV;
350 }
351
352 if (pdata->has_dmic)
353 num_links = 2;
354 else
355 num_links = 1;
356
357 priv->jack_detection = pdata->jack_detection;
358 priv->mclk_freq = pdata->mclk_freq;
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200359 } else {
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300360 dev_err(&pdev->dev, "Missing pdata\n");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200361 return -ENODEV;
362 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500363
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300364
365 if (!priv->mclk_freq) {
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200366 dev_err(&pdev->dev, "MCLK frequency missing\n");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300367 ret = -ENODEV;
368 goto err_unregister;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200369 }
370
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300371 card->dai_link = abe_twl6040_dai_links;
372 card->num_links = num_links;
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200373
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300374 snd_soc_card_set_drvdata(card, priv);
375
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200376 ret = snd_soc_register_card(card);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300377 if (ret) {
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200378 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
379 ret);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300380 goto err_unregister;
381 }
382
383 return 0;
384
385err_unregister:
386 if (!IS_ERR(priv->dmic_codec_dev))
387 platform_device_unregister(priv->dmic_codec_dev);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500388
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500389 return ret;
390}
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500391
Bill Pemberton7ff60002012-12-07 09:26:29 -0500392static int omap_abe_remove(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500393{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200394 struct snd_soc_card *card = platform_get_drvdata(pdev);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300395 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200396
397 snd_soc_unregister_card(card);
398
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300399 if (!IS_ERR(priv->dmic_codec_dev))
400 platform_device_unregister(priv->dmic_codec_dev);
401
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200402 return 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500403}
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200404
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300405static const struct of_device_id omap_abe_of_match[] = {
406 {.compatible = "ti,abe-twl6040", },
407 { },
408};
409MODULE_DEVICE_TABLE(of, omap_abe_of_match);
410
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200411static struct platform_driver omap_abe_driver = {
412 .driver = {
413 .name = "omap-abe-twl6040",
414 .owner = THIS_MODULE,
415 .pm = &snd_soc_pm_ops,
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300416 .of_match_table = omap_abe_of_match,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200417 },
418 .probe = omap_abe_probe,
Bill Pemberton7ff60002012-12-07 09:26:29 -0500419 .remove = omap_abe_remove,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200420};
421
422module_platform_driver(omap_abe_driver);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500423
Peter Ujfalusi8747a6b2011-12-07 15:31:26 +0200424MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200425MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500426MODULE_LICENSE("GPL");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200427MODULE_ALIAS("platform:omap-abe-twl6040");