blob: 0843a68f277c2cffb0bdffa9a5a200b86544950f [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>
Paul Gortmakerda155d52011-07-15 12:38:28 -040026#include <linux/module.h>
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +030027#include <linux/of.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
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020034#include "omap-dmic.h"
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030035#include "omap-mcpdm.h"
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050036#include "../codecs/twl6040.h"
37
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030038struct abe_twl6040 {
39 int jack_detection; /* board can detect jack events */
40 int mclk_freq; /* MCLK frequency speed for twl6040 */
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +030041
42 struct platform_device *dmic_codec_dev;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030043};
44
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020045static int omap_abe_hw_params(struct snd_pcm_substream *substream,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050046 struct snd_pcm_hw_params *params)
47{
48 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000049 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Lars-Peter Clausen0596f702014-05-19 11:41:46 +020050 struct snd_soc_card *card = rtd->card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030051 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050052 int clk_id, freq;
53 int ret;
54
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030055 clk_id = twl6040_get_clk_id(rtd->codec);
56 if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030057 freq = priv->mclk_freq;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030058 else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050059 freq = 32768;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030060 else
61 return -EINVAL;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050062
63 /* set the codec mclk */
64 ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq,
65 SND_SOC_CLOCK_IN);
66 if (ret) {
67 printk(KERN_ERR "can't set codec system clock\n");
68 return ret;
69 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000070 return ret;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050071}
72
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020073static struct snd_soc_ops omap_abe_ops = {
74 .hw_params = omap_abe_hw_params,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050075};
76
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020077static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020078 struct snd_pcm_hw_params *params)
79{
80 struct snd_soc_pcm_runtime *rtd = substream->private_data;
81 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
82 int ret = 0;
83
84 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_SYSCLK_PAD_CLKS,
85 19200000, SND_SOC_CLOCK_IN);
86 if (ret < 0) {
87 printk(KERN_ERR "can't set DMIC cpu system clock\n");
88 return ret;
89 }
90 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_ABE_DMIC_CLK, 2400000,
91 SND_SOC_CLOCK_OUT);
92 if (ret < 0) {
93 printk(KERN_ERR "can't set DMIC output clock\n");
94 return ret;
95 }
96 return 0;
97}
98
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020099static struct snd_soc_ops omap_abe_dmic_ops = {
100 .hw_params = omap_abe_dmic_hw_params,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200101};
102
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600103/* Headset jack */
104static struct snd_soc_jack hs_jack;
105
106/*Headset jack detection DAPM pins */
107static struct snd_soc_jack_pin hs_jack_pins[] = {
108 {
109 .pin = "Headset Mic",
110 .mask = SND_JACK_MICROPHONE,
111 },
112 {
113 .pin = "Headset Stereophone",
114 .mask = SND_JACK_HEADPHONE,
115 },
116};
117
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500118/* SDP4430 machine DAPM */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200119static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200120 /* Outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500121 SND_SOC_DAPM_HP("Headset Stereophone", NULL),
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500122 SND_SOC_DAPM_SPK("Earphone Spk", NULL),
Peter Ujfalusib3208832011-12-22 12:55:49 +0200123 SND_SOC_DAPM_SPK("Ext Spk", NULL),
124 SND_SOC_DAPM_LINE("Line Out", NULL),
125 SND_SOC_DAPM_SPK("Vibrator", NULL),
126
127 /* Inputs */
128 SND_SOC_DAPM_MIC("Headset Mic", NULL),
129 SND_SOC_DAPM_MIC("Main Handset Mic", NULL),
130 SND_SOC_DAPM_MIC("Sub Handset Mic", NULL),
131 SND_SOC_DAPM_LINE("Line In", NULL),
Peter Ujfalusi7d09f9e2012-04-24 12:41:32 +0300132
133 /* Digital microphones */
134 SND_SOC_DAPM_MIC("Digital Mic", NULL),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500135};
136
137static const struct snd_soc_dapm_route audio_map[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200138 /* Routings for outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500139 {"Headset Stereophone", NULL, "HSOL"},
140 {"Headset Stereophone", NULL, "HSOR"},
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500141
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500142 {"Earphone Spk", NULL, "EP"},
Jorge Eduardo Candelaria23ac3b62010-12-08 10:55:05 -0600143
Peter Ujfalusib3208832011-12-22 12:55:49 +0200144 {"Ext Spk", NULL, "HFL"},
145 {"Ext Spk", NULL, "HFR"},
146
147 {"Line Out", NULL, "AUXL"},
148 {"Line Out", NULL, "AUXR"},
149
150 {"Vibrator", NULL, "VIBRAL"},
151 {"Vibrator", NULL, "VIBRAR"},
152
153 /* Routings for inputs */
154 {"HSMIC", NULL, "Headset Mic"},
155 {"Headset Mic", NULL, "Headset Mic Bias"},
156
157 {"MAINMIC", NULL, "Main Handset Mic"},
158 {"Main Handset Mic", NULL, "Main Mic Bias"},
159
160 {"SUBMIC", NULL, "Sub Handset Mic"},
161 {"Sub Handset Mic", NULL, "Main Mic Bias"},
162
163 {"AFML", NULL, "Line In"},
164 {"AFMR", NULL, "Line In"},
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500165};
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;
Lars-Peter Clausen0596f702014-05-19 11:41:46 +0200170 struct snd_soc_card *card = rtd->card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300171 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200172 int hs_trim;
173 int ret = 0;
174
Peter Ujfalusi7bf3d922011-09-26 16:05:59 +0300175 /*
176 * Configure McPDM offset cancellation based on the HSOTRIM value from
177 * twl6040.
178 */
179 hs_trim = twl6040_get_trim_value(codec, TWL6040_TRIM_HSOTRIM);
180 omap_mcpdm_configure_dn_offsets(rtd, TWL6040_HSF_TRIM_LEFT(hs_trim),
181 TWL6040_HSF_TRIM_RIGHT(hs_trim));
182
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200183 /* Headset jack detection only if it is supported */
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300184 if (priv->jack_detection) {
Lars-Peter Clausen256495922015-03-04 10:33:26 +0100185 ret = snd_soc_card_jack_new(rtd->card, "Headset Jack",
186 SND_JACK_HEADSET, &hs_jack,
187 hs_jack_pins,
188 ARRAY_SIZE(hs_jack_pins));
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200189 if (ret)
190 return ret;
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600191
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600192 twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200193 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500194
Lars-Peter Clausen256495922015-03-04 10:33:26 +0100195 return 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500196}
197
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200198static const struct snd_soc_dapm_route dmic_audio_map[] = {
Peter Ujfalusi778cee72011-12-22 12:47:21 +0200199 {"DMic", NULL, "Digital Mic"},
200 {"Digital Mic", NULL, "Digital Mic1 Bias"},
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200201};
202
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200203static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200204{
Lars-Peter Clausen7f0af4a2014-03-12 15:27:32 +0100205 struct snd_soc_dapm_context *dapm = &rtd->card->dapm;
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200206
207 return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
208 ARRAY_SIZE(dmic_audio_map));
209}
210
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500211/* Digital audio interface glue - connects codec <--> CPU */
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300212static struct snd_soc_dai_link abe_twl6040_dai_links[] = {
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200213 {
214 .name = "TWL6040",
215 .stream_name = "TWL6040",
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200216 .codec_dai_name = "twl6040-legacy",
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200217 .codec_name = "twl6040-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200218 .init = omap_abe_twl6040_init,
219 .ops = &omap_abe_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200220 },
221 {
222 .name = "DMIC",
223 .stream_name = "DMIC Capture",
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200224 .codec_dai_name = "dmic-hifi",
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200225 .codec_name = "dmic-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200226 .init = omap_abe_dmic_init,
227 .ops = &omap_abe_dmic_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200228 },
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500229};
230
231/* Audio machine driver */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200232static struct snd_soc_card omap_abe_card = {
Axel Linb425b882011-12-22 11:08:59 +0800233 .owner = THIS_MODULE,
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300234
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200235 .dapm_widgets = twl6040_dapm_widgets,
236 .num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300237 .dapm_routes = audio_map,
238 .num_dapm_routes = ARRAY_SIZE(audio_map),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500239};
240
Bill Pemberton7ff60002012-12-07 09:26:29 -0500241static int omap_abe_probe(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500242{
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300243 struct device_node *node = pdev->dev.of_node;
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200244 struct snd_soc_card *card = &omap_abe_card;
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200245 struct device_node *dai_node;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300246 struct abe_twl6040 *priv;
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300247 int num_links = 0;
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300248 int ret = 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500249
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200250 if (!node) {
251 dev_err(&pdev->dev, "of node is missing.\n");
252 return -ENODEV;
253 }
254
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200255 card->dev = &pdev->dev;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500256
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300257 priv = devm_kzalloc(&pdev->dev, sizeof(struct abe_twl6040), GFP_KERNEL);
258 if (priv == NULL)
259 return -ENOMEM;
260
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300261 priv->dmic_codec_dev = ERR_PTR(-EINVAL);
262
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200263 if (snd_soc_of_parse_card_name(card, "ti,model")) {
264 dev_err(&pdev->dev, "Card name is not provided\n");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200265 return -ENODEV;
266 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500267
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200268 ret = snd_soc_of_parse_audio_routing(card, "ti,audio-routing");
269 if (ret) {
270 dev_err(&pdev->dev, "Error while parsing DAPM routing\n");
271 return ret;
272 }
273
274 dai_node = of_parse_phandle(node, "ti,mcpdm", 0);
275 if (!dai_node) {
276 dev_err(&pdev->dev, "McPDM node is not provided\n");
277 return -EINVAL;
278 }
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200279 abe_twl6040_dai_links[0].cpu_of_node = dai_node;
Peter Ujfalusi25bed462014-04-16 15:46:21 +0300280 abe_twl6040_dai_links[0].platform_of_node = dai_node;
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200281
282 dai_node = of_parse_phandle(node, "ti,dmic", 0);
283 if (dai_node) {
284 num_links = 2;
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200285 abe_twl6040_dai_links[1].cpu_of_node = dai_node;
Peter Ujfalusi25bed462014-04-16 15:46:21 +0300286 abe_twl6040_dai_links[1].platform_of_node = dai_node;
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200287
288 priv->dmic_codec_dev = platform_device_register_simple(
289 "dmic-codec", -1, NULL, 0);
290 if (IS_ERR(priv->dmic_codec_dev)) {
291 dev_err(&pdev->dev, "Can't instantiate dmic-codec\n");
292 return PTR_ERR(priv->dmic_codec_dev);
293 }
294 } else {
295 num_links = 1;
296 }
297
298 priv->jack_detection = of_property_read_bool(node, "ti,jack-detection");
299 of_property_read_u32(node, "ti,mclk-freq", &priv->mclk_freq);
300 if (!priv->mclk_freq) {
301 dev_err(&pdev->dev, "MCLK frequency not provided\n");
302 ret = -EINVAL;
303 goto err_unregister;
304 }
305
306 card->fully_routed = 1;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300307
308 if (!priv->mclk_freq) {
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200309 dev_err(&pdev->dev, "MCLK frequency missing\n");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300310 ret = -ENODEV;
311 goto err_unregister;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200312 }
313
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300314 card->dai_link = abe_twl6040_dai_links;
315 card->num_links = num_links;
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200316
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300317 snd_soc_card_set_drvdata(card, priv);
318
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200319 ret = snd_soc_register_card(card);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300320 if (ret) {
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200321 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
322 ret);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300323 goto err_unregister;
324 }
325
326 return 0;
327
328err_unregister:
329 if (!IS_ERR(priv->dmic_codec_dev))
330 platform_device_unregister(priv->dmic_codec_dev);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500331
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500332 return ret;
333}
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500334
Bill Pemberton7ff60002012-12-07 09:26:29 -0500335static int omap_abe_remove(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500336{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200337 struct snd_soc_card *card = platform_get_drvdata(pdev);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300338 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200339
340 snd_soc_unregister_card(card);
341
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300342 if (!IS_ERR(priv->dmic_codec_dev))
343 platform_device_unregister(priv->dmic_codec_dev);
344
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200345 return 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500346}
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200347
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300348static const struct of_device_id omap_abe_of_match[] = {
349 {.compatible = "ti,abe-twl6040", },
350 { },
351};
352MODULE_DEVICE_TABLE(of, omap_abe_of_match);
353
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200354static struct platform_driver omap_abe_driver = {
355 .driver = {
356 .name = "omap-abe-twl6040",
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200357 .pm = &snd_soc_pm_ops,
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300358 .of_match_table = omap_abe_of_match,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200359 },
360 .probe = omap_abe_probe,
Bill Pemberton7ff60002012-12-07 09:26:29 -0500361 .remove = omap_abe_remove,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200362};
363
364module_platform_driver(omap_abe_driver);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500365
Peter Ujfalusi8747a6b2011-12-07 15:31:26 +0200366MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200367MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500368MODULE_LICENSE("GPL");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200369MODULE_ALIAS("platform:omap-abe-twl6040");