blob: 750d595d01d711c04c9d48fe9144d9cf810d92bc [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
35#include <asm/mach-types.h>
36#include <plat/hardware.h>
37#include <plat/mux.h>
38
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020039#include "omap-dmic.h"
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030040#include "omap-mcpdm.h"
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050041#include "omap-pcm.h"
42#include "../codecs/twl6040.h"
43
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030044struct abe_twl6040 {
45 int jack_detection; /* board can detect jack events */
46 int mclk_freq; /* MCLK frequency speed for twl6040 */
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +030047
48 struct platform_device *dmic_codec_dev;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030049};
50
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020051static int omap_abe_hw_params(struct snd_pcm_substream *substream,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050052 struct snd_pcm_hw_params *params)
53{
54 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000055 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +020056 struct snd_soc_codec *codec = rtd->codec;
57 struct snd_soc_card *card = codec->card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030058 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050059 int clk_id, freq;
60 int ret;
61
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030062 clk_id = twl6040_get_clk_id(rtd->codec);
63 if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030064 freq = priv->mclk_freq;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030065 else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050066 freq = 32768;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030067 else
68 return -EINVAL;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050069
70 /* set the codec mclk */
71 ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq,
72 SND_SOC_CLOCK_IN);
73 if (ret) {
74 printk(KERN_ERR "can't set codec system clock\n");
75 return ret;
76 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077 return ret;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050078}
79
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020080static struct snd_soc_ops omap_abe_ops = {
81 .hw_params = omap_abe_hw_params,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050082};
83
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020084static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020085 struct snd_pcm_hw_params *params)
86{
87 struct snd_soc_pcm_runtime *rtd = substream->private_data;
88 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
89 int ret = 0;
90
91 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_SYSCLK_PAD_CLKS,
92 19200000, SND_SOC_CLOCK_IN);
93 if (ret < 0) {
94 printk(KERN_ERR "can't set DMIC cpu system clock\n");
95 return ret;
96 }
97 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_ABE_DMIC_CLK, 2400000,
98 SND_SOC_CLOCK_OUT);
99 if (ret < 0) {
100 printk(KERN_ERR "can't set DMIC output clock\n");
101 return ret;
102 }
103 return 0;
104}
105
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200106static struct snd_soc_ops omap_abe_dmic_ops = {
107 .hw_params = omap_abe_dmic_hw_params,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200108};
109
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600110/* Headset jack */
111static struct snd_soc_jack hs_jack;
112
113/*Headset jack detection DAPM pins */
114static struct snd_soc_jack_pin hs_jack_pins[] = {
115 {
116 .pin = "Headset Mic",
117 .mask = SND_JACK_MICROPHONE,
118 },
119 {
120 .pin = "Headset Stereophone",
121 .mask = SND_JACK_HEADPHONE,
122 },
123};
124
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500125/* SDP4430 machine DAPM */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200126static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200127 /* Outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500128 SND_SOC_DAPM_HP("Headset Stereophone", NULL),
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500129 SND_SOC_DAPM_SPK("Earphone Spk", NULL),
Peter Ujfalusib3208832011-12-22 12:55:49 +0200130 SND_SOC_DAPM_SPK("Ext Spk", NULL),
131 SND_SOC_DAPM_LINE("Line Out", NULL),
132 SND_SOC_DAPM_SPK("Vibrator", NULL),
133
134 /* Inputs */
135 SND_SOC_DAPM_MIC("Headset Mic", NULL),
136 SND_SOC_DAPM_MIC("Main Handset Mic", NULL),
137 SND_SOC_DAPM_MIC("Sub Handset Mic", NULL),
138 SND_SOC_DAPM_LINE("Line In", NULL),
Peter Ujfalusi7d09f9e2012-04-24 12:41:32 +0300139
140 /* Digital microphones */
141 SND_SOC_DAPM_MIC("Digital Mic", NULL),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500142};
143
144static const struct snd_soc_dapm_route audio_map[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200145 /* Routings for outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500146 {"Headset Stereophone", NULL, "HSOL"},
147 {"Headset Stereophone", NULL, "HSOR"},
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500148
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500149 {"Earphone Spk", NULL, "EP"},
Jorge Eduardo Candelaria23ac3b62010-12-08 10:55:05 -0600150
Peter Ujfalusib3208832011-12-22 12:55:49 +0200151 {"Ext Spk", NULL, "HFL"},
152 {"Ext Spk", NULL, "HFR"},
153
154 {"Line Out", NULL, "AUXL"},
155 {"Line Out", NULL, "AUXR"},
156
157 {"Vibrator", NULL, "VIBRAL"},
158 {"Vibrator", NULL, "VIBRAR"},
159
160 /* Routings for inputs */
161 {"HSMIC", NULL, "Headset Mic"},
162 {"Headset Mic", NULL, "Headset Mic Bias"},
163
164 {"MAINMIC", NULL, "Main Handset Mic"},
165 {"Main Handset Mic", NULL, "Main Mic Bias"},
166
167 {"SUBMIC", NULL, "Sub Handset Mic"},
168 {"Sub Handset Mic", NULL, "Main Mic Bias"},
169
170 {"AFML", NULL, "Line In"},
171 {"AFMR", NULL, "Line In"},
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500172};
173
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200174static inline void twl6040_disconnect_pin(struct snd_soc_dapm_context *dapm,
175 int connected, char *pin)
176{
177 if (!connected)
178 snd_soc_dapm_disable_pin(dapm, pin);
179}
180
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200181static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500182{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000183 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200184 struct snd_soc_card *card = codec->card;
185 struct snd_soc_dapm_context *dapm = &codec->dapm;
186 struct omap_abe_twl6040_data *pdata = dev_get_platdata(card->dev);
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300187 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200188 int hs_trim;
189 int ret = 0;
190
Peter Ujfalusi7bf3d922011-09-26 16:05:59 +0300191 /*
192 * Configure McPDM offset cancellation based on the HSOTRIM value from
193 * twl6040.
194 */
195 hs_trim = twl6040_get_trim_value(codec, TWL6040_TRIM_HSOTRIM);
196 omap_mcpdm_configure_dn_offsets(rtd, TWL6040_HSF_TRIM_LEFT(hs_trim),
197 TWL6040_HSF_TRIM_RIGHT(hs_trim));
198
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200199 /* Headset jack detection only if it is supported */
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300200 if (priv->jack_detection) {
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200201 ret = snd_soc_jack_new(codec, "Headset Jack",
202 SND_JACK_HEADSET, &hs_jack);
203 if (ret)
204 return ret;
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600205
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200206 ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
207 hs_jack_pins);
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600208 twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200209 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500210
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300211 /*
212 * NULL pdata means we booted with DT. In this case the routing is
213 * provided and the card is fully routed, no need to mark pins.
214 */
215 if (!pdata)
216 return ret;
217
218 /* Disable not connected paths if not used */
219 twl6040_disconnect_pin(dapm, pdata->has_hs, "Headset Stereophone");
220 twl6040_disconnect_pin(dapm, pdata->has_hf, "Ext Spk");
221 twl6040_disconnect_pin(dapm, pdata->has_ep, "Earphone Spk");
222 twl6040_disconnect_pin(dapm, pdata->has_aux, "Line Out");
Peter Ujfalusi034940a2012-10-02 15:31:16 +0300223 twl6040_disconnect_pin(dapm, pdata->has_vibra, "Vibrator");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300224 twl6040_disconnect_pin(dapm, pdata->has_hsmic, "Headset Mic");
225 twl6040_disconnect_pin(dapm, pdata->has_mainmic, "Main Handset Mic");
226 twl6040_disconnect_pin(dapm, pdata->has_submic, "Sub Handset Mic");
227 twl6040_disconnect_pin(dapm, pdata->has_afm, "Line In");
228
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500229 return ret;
230}
231
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200232static const struct snd_soc_dapm_route dmic_audio_map[] = {
Peter Ujfalusi778cee72011-12-22 12:47:21 +0200233 {"DMic", NULL, "Digital Mic"},
234 {"Digital Mic", NULL, "Digital Mic1 Bias"},
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200235};
236
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200237static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200238{
239 struct snd_soc_codec *codec = rtd->codec;
240 struct snd_soc_dapm_context *dapm = &codec->dapm;
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200241
242 return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
243 ARRAY_SIZE(dmic_audio_map));
244}
245
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500246/* Digital audio interface glue - connects codec <--> CPU */
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300247static struct snd_soc_dai_link abe_twl6040_dai_links[] = {
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200248 {
249 .name = "TWL6040",
250 .stream_name = "TWL6040",
251 .cpu_dai_name = "omap-mcpdm",
252 .codec_dai_name = "twl6040-legacy",
253 .platform_name = "omap-pcm-audio",
254 .codec_name = "twl6040-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200255 .init = omap_abe_twl6040_init,
256 .ops = &omap_abe_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200257 },
258 {
259 .name = "DMIC",
260 .stream_name = "DMIC Capture",
261 .cpu_dai_name = "omap-dmic",
262 .codec_dai_name = "dmic-hifi",
263 .platform_name = "omap-pcm-audio",
264 .codec_name = "dmic-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200265 .init = omap_abe_dmic_init,
266 .ops = &omap_abe_dmic_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200267 },
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500268};
269
270/* Audio machine driver */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200271static struct snd_soc_card omap_abe_card = {
Axel Linb425b882011-12-22 11:08:59 +0800272 .owner = THIS_MODULE,
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300273
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200274 .dapm_widgets = twl6040_dapm_widgets,
275 .num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300276 .dapm_routes = audio_map,
277 .num_dapm_routes = ARRAY_SIZE(audio_map),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500278};
279
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200280static __devinit int omap_abe_probe(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500281{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200282 struct omap_abe_twl6040_data *pdata = dev_get_platdata(&pdev->dev);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300283 struct device_node *node = pdev->dev.of_node;
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200284 struct snd_soc_card *card = &omap_abe_card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300285 struct abe_twl6040 *priv;
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300286 int num_links = 0;
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300287 int ret = 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500288
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200289 card->dev = &pdev->dev;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500290
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300291 priv = devm_kzalloc(&pdev->dev, sizeof(struct abe_twl6040), GFP_KERNEL);
292 if (priv == NULL)
293 return -ENOMEM;
294
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300295 priv->dmic_codec_dev = ERR_PTR(-EINVAL);
296
297 if (node) {
298 struct device_node *dai_node;
299
300 if (snd_soc_of_parse_card_name(card, "ti,model")) {
301 dev_err(&pdev->dev, "Card name is not provided\n");
302 return -ENODEV;
303 }
304
305 ret = snd_soc_of_parse_audio_routing(card,
306 "ti,audio-routing");
307 if (ret) {
308 dev_err(&pdev->dev,
309 "Error while parsing DAPM routing\n");
310 return ret;
311 }
312
313 dai_node = of_parse_phandle(node, "ti,mcpdm", 0);
314 if (!dai_node) {
315 dev_err(&pdev->dev, "McPDM node is not provided\n");
316 return -EINVAL;
317 }
318 abe_twl6040_dai_links[0].cpu_dai_name = NULL;
319 abe_twl6040_dai_links[0].cpu_of_node = dai_node;
320
321 dai_node = of_parse_phandle(node, "ti,dmic", 0);
322 if (dai_node) {
323 num_links = 2;
324 abe_twl6040_dai_links[1].cpu_dai_name = NULL;
325 abe_twl6040_dai_links[1].cpu_of_node = dai_node;
326
327 priv->dmic_codec_dev = platform_device_register_simple(
328 "dmic-codec", -1, NULL, 0);
329 if (IS_ERR(priv->dmic_codec_dev)) {
330 dev_err(&pdev->dev,
331 "Can't instantiate dmic-codec\n");
332 return PTR_ERR(priv->dmic_codec_dev);
333 }
334 } else {
335 num_links = 1;
336 }
337
338 of_property_read_u32(node, "ti,jack-detection",
339 &priv->jack_detection);
340 of_property_read_u32(node, "ti,mclk-freq",
341 &priv->mclk_freq);
342 if (!priv->mclk_freq) {
343 dev_err(&pdev->dev, "MCLK frequency not provided\n");
344 ret = -EINVAL;
345 goto err_unregister;
346 }
347
348 omap_abe_card.fully_routed = 1;
349 } else if (pdata) {
350 if (pdata->card_name) {
351 card->name = pdata->card_name;
352 } else {
353 dev_err(&pdev->dev, "Card name is not provided\n");
354 return -ENODEV;
355 }
356
357 if (pdata->has_dmic)
358 num_links = 2;
359 else
360 num_links = 1;
361
362 priv->jack_detection = pdata->jack_detection;
363 priv->mclk_freq = pdata->mclk_freq;
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200364 } else {
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300365 dev_err(&pdev->dev, "Missing pdata\n");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200366 return -ENODEV;
367 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500368
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300369
370 if (!priv->mclk_freq) {
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200371 dev_err(&pdev->dev, "MCLK frequency missing\n");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300372 ret = -ENODEV;
373 goto err_unregister;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200374 }
375
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300376 card->dai_link = abe_twl6040_dai_links;
377 card->num_links = num_links;
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200378
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300379 snd_soc_card_set_drvdata(card, priv);
380
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200381 ret = snd_soc_register_card(card);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300382 if (ret) {
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200383 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
384 ret);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300385 goto err_unregister;
386 }
387
388 return 0;
389
390err_unregister:
391 if (!IS_ERR(priv->dmic_codec_dev))
392 platform_device_unregister(priv->dmic_codec_dev);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500393
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500394 return ret;
395}
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500396
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200397static int __devexit omap_abe_remove(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500398{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200399 struct snd_soc_card *card = platform_get_drvdata(pdev);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300400 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200401
402 snd_soc_unregister_card(card);
403
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300404 if (!IS_ERR(priv->dmic_codec_dev))
405 platform_device_unregister(priv->dmic_codec_dev);
406
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200407 return 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500408}
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200409
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300410static const struct of_device_id omap_abe_of_match[] = {
411 {.compatible = "ti,abe-twl6040", },
412 { },
413};
414MODULE_DEVICE_TABLE(of, omap_abe_of_match);
415
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200416static struct platform_driver omap_abe_driver = {
417 .driver = {
418 .name = "omap-abe-twl6040",
419 .owner = THIS_MODULE,
420 .pm = &snd_soc_pm_ops,
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300421 .of_match_table = omap_abe_of_match,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200422 },
423 .probe = omap_abe_probe,
424 .remove = __devexit_p(omap_abe_remove),
425};
426
427module_platform_driver(omap_abe_driver);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500428
Peter Ujfalusi8747a6b2011-12-07 15:31:26 +0200429MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200430MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500431MODULE_LICENSE("GPL");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200432MODULE_ALIAS("platform:omap-abe-twl6040");