blob: ebb13906b3a0b41b4d3c20509c613378da5ae248 [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;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +020050 struct snd_soc_codec *codec = rtd->codec;
51 struct snd_soc_card *card = codec->card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030052 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050053 int clk_id, freq;
54 int ret;
55
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030056 clk_id = twl6040_get_clk_id(rtd->codec);
57 if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
Peter Ujfalusi356bccb2012-04-24 12:52:53 +030058 freq = priv->mclk_freq;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030059 else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050060 freq = 32768;
Peter Ujfalusiaf958c72011-06-27 17:03:14 +030061 else
62 return -EINVAL;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050063
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 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000071 return ret;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050072}
73
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020074static struct snd_soc_ops omap_abe_ops = {
75 .hw_params = omap_abe_hw_params,
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -050076};
77
Peter Ujfalusi13f81d62011-12-07 15:54:50 +020078static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +020079 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
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200100static struct snd_soc_ops omap_abe_dmic_ops = {
101 .hw_params = omap_abe_dmic_hw_params,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200102};
103
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600104/* 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
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500119/* SDP4430 machine DAPM */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200120static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200121 /* Outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500122 SND_SOC_DAPM_HP("Headset Stereophone", NULL),
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500123 SND_SOC_DAPM_SPK("Earphone Spk", NULL),
Peter Ujfalusib3208832011-12-22 12:55:49 +0200124 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),
Peter Ujfalusi7d09f9e2012-04-24 12:41:32 +0300133
134 /* Digital microphones */
135 SND_SOC_DAPM_MIC("Digital Mic", NULL),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500136};
137
138static const struct snd_soc_dapm_route audio_map[] = {
Peter Ujfalusib3208832011-12-22 12:55:49 +0200139 /* Routings for outputs */
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500140 {"Headset Stereophone", NULL, "HSOL"},
141 {"Headset Stereophone", NULL, "HSOR"},
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500142
Jorge Eduardo Candelaria7254e2b2010-05-18 12:44:17 -0500143 {"Earphone Spk", NULL, "EP"},
Jorge Eduardo Candelaria23ac3b62010-12-08 10:55:05 -0600144
Peter Ujfalusib3208832011-12-22 12:55:49 +0200145 {"Ext Spk", NULL, "HFL"},
146 {"Ext Spk", NULL, "HFR"},
147
148 {"Line Out", NULL, "AUXL"},
149 {"Line Out", NULL, "AUXR"},
150
151 {"Vibrator", NULL, "VIBRAL"},
152 {"Vibrator", NULL, "VIBRAR"},
153
154 /* Routings for inputs */
155 {"HSMIC", NULL, "Headset Mic"},
156 {"Headset Mic", NULL, "Headset Mic Bias"},
157
158 {"MAINMIC", NULL, "Main Handset Mic"},
159 {"Main Handset Mic", NULL, "Main Mic Bias"},
160
161 {"SUBMIC", NULL, "Sub Handset Mic"},
162 {"Sub Handset Mic", NULL, "Main Mic Bias"},
163
164 {"AFML", NULL, "Line In"},
165 {"AFMR", NULL, "Line In"},
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500166};
167
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200168static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500169{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000170 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200171 struct snd_soc_card *card = codec->card;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300172 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200173 int hs_trim;
174 int ret = 0;
175
Peter Ujfalusi7bf3d922011-09-26 16:05:59 +0300176 /*
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
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200184 /* Headset jack detection only if it is supported */
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300185 if (priv->jack_detection) {
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200186 ret = snd_soc_jack_new(codec, "Headset Jack",
187 SND_JACK_HEADSET, &hs_jack);
188 if (ret)
189 return ret;
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600190
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200191 ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
192 hs_jack_pins);
Jorge Eduardo Candelaria96dc2272010-12-10 20:45:19 -0600193 twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
Peter Ujfalusi4ca07cb2011-12-22 13:58:01 +0200194 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500195
196 return ret;
197}
198
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200199static const struct snd_soc_dapm_route dmic_audio_map[] = {
Peter Ujfalusi778cee72011-12-22 12:47:21 +0200200 {"DMic", NULL, "Digital Mic"},
201 {"Digital Mic", NULL, "Digital Mic1 Bias"},
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200202};
203
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200204static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200205{
206 struct snd_soc_codec *codec = rtd->codec;
207 struct snd_soc_dapm_context *dapm = &codec->dapm;
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200208
209 return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
210 ARRAY_SIZE(dmic_audio_map));
211}
212
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500213/* Digital audio interface glue - connects codec <--> CPU */
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300214static struct snd_soc_dai_link abe_twl6040_dai_links[] = {
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200215 {
216 .name = "TWL6040",
217 .stream_name = "TWL6040",
218 .cpu_dai_name = "omap-mcpdm",
219 .codec_dai_name = "twl6040-legacy",
220 .platform_name = "omap-pcm-audio",
221 .codec_name = "twl6040-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200222 .init = omap_abe_twl6040_init,
223 .ops = &omap_abe_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200224 },
225 {
226 .name = "DMIC",
227 .stream_name = "DMIC Capture",
228 .cpu_dai_name = "omap-dmic",
229 .codec_dai_name = "dmic-hifi",
230 .platform_name = "omap-pcm-audio",
231 .codec_name = "dmic-codec",
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200232 .init = omap_abe_dmic_init,
233 .ops = &omap_abe_dmic_ops,
Peter Ujfalusi6524c8e2011-11-28 15:45:43 +0200234 },
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500235};
236
237/* Audio machine driver */
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200238static struct snd_soc_card omap_abe_card = {
Axel Linb425b882011-12-22 11:08:59 +0800239 .owner = THIS_MODULE,
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300240
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200241 .dapm_widgets = twl6040_dapm_widgets,
242 .num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
Peter Ujfalusifc8e5b42011-10-10 15:34:15 +0300243 .dapm_routes = audio_map,
244 .num_dapm_routes = ARRAY_SIZE(audio_map),
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500245};
246
Bill Pemberton7ff60002012-12-07 09:26:29 -0500247static int omap_abe_probe(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500248{
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300249 struct device_node *node = pdev->dev.of_node;
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200250 struct snd_soc_card *card = &omap_abe_card;
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200251 struct device_node *dai_node;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300252 struct abe_twl6040 *priv;
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300253 int num_links = 0;
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300254 int ret = 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500255
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200256 if (!node) {
257 dev_err(&pdev->dev, "of node is missing.\n");
258 return -ENODEV;
259 }
260
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200261 card->dev = &pdev->dev;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500262
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300263 priv = devm_kzalloc(&pdev->dev, sizeof(struct abe_twl6040), GFP_KERNEL);
264 if (priv == NULL)
265 return -ENOMEM;
266
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300267 priv->dmic_codec_dev = ERR_PTR(-EINVAL);
268
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200269 if (snd_soc_of_parse_card_name(card, "ti,model")) {
270 dev_err(&pdev->dev, "Card name is not provided\n");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200271 return -ENODEV;
272 }
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500273
Peter Ujfalusi8fe120b2013-07-31 19:00:32 +0200274 ret = snd_soc_of_parse_audio_routing(card, "ti,audio-routing");
275 if (ret) {
276 dev_err(&pdev->dev, "Error while parsing DAPM routing\n");
277 return ret;
278 }
279
280 dai_node = of_parse_phandle(node, "ti,mcpdm", 0);
281 if (!dai_node) {
282 dev_err(&pdev->dev, "McPDM node is not provided\n");
283 return -EINVAL;
284 }
285 abe_twl6040_dai_links[0].cpu_dai_name = NULL;
286 abe_twl6040_dai_links[0].cpu_of_node = dai_node;
287
288 dai_node = of_parse_phandle(node, "ti,dmic", 0);
289 if (dai_node) {
290 num_links = 2;
291 abe_twl6040_dai_links[1].cpu_dai_name = NULL;
292 abe_twl6040_dai_links[1].cpu_of_node = dai_node;
293
294 priv->dmic_codec_dev = platform_device_register_simple(
295 "dmic-codec", -1, NULL, 0);
296 if (IS_ERR(priv->dmic_codec_dev)) {
297 dev_err(&pdev->dev, "Can't instantiate dmic-codec\n");
298 return PTR_ERR(priv->dmic_codec_dev);
299 }
300 } else {
301 num_links = 1;
302 }
303
304 priv->jack_detection = of_property_read_bool(node, "ti,jack-detection");
305 of_property_read_u32(node, "ti,mclk-freq", &priv->mclk_freq);
306 if (!priv->mclk_freq) {
307 dev_err(&pdev->dev, "MCLK frequency not provided\n");
308 ret = -EINVAL;
309 goto err_unregister;
310 }
311
312 card->fully_routed = 1;
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300313
314 if (!priv->mclk_freq) {
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200315 dev_err(&pdev->dev, "MCLK frequency missing\n");
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300316 ret = -ENODEV;
317 goto err_unregister;
Peter Ujfalusi62ba98c2012-01-24 12:36:10 +0200318 }
319
Peter Ujfalusic2f98952012-04-24 12:36:25 +0300320 card->dai_link = abe_twl6040_dai_links;
321 card->num_links = num_links;
Peter Ujfalusi8d946dd2011-12-22 13:10:02 +0200322
Peter Ujfalusi356bccb2012-04-24 12:52:53 +0300323 snd_soc_card_set_drvdata(card, priv);
324
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200325 ret = snd_soc_register_card(card);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300326 if (ret) {
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200327 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
328 ret);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300329 goto err_unregister;
330 }
331
332 return 0;
333
334err_unregister:
335 if (!IS_ERR(priv->dmic_codec_dev))
336 platform_device_unregister(priv->dmic_codec_dev);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500337
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500338 return ret;
339}
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500340
Bill Pemberton7ff60002012-12-07 09:26:29 -0500341static int omap_abe_remove(struct platform_device *pdev)
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500342{
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200343 struct snd_soc_card *card = platform_get_drvdata(pdev);
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300344 struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card);
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200345
346 snd_soc_unregister_card(card);
347
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300348 if (!IS_ERR(priv->dmic_codec_dev))
349 platform_device_unregister(priv->dmic_codec_dev);
350
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200351 return 0;
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500352}
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200353
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300354static const struct of_device_id omap_abe_of_match[] = {
355 {.compatible = "ti,abe-twl6040", },
356 { },
357};
358MODULE_DEVICE_TABLE(of, omap_abe_of_match);
359
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200360static struct platform_driver omap_abe_driver = {
361 .driver = {
362 .name = "omap-abe-twl6040",
363 .owner = THIS_MODULE,
364 .pm = &snd_soc_pm_ops,
Peter Ujfalusi5ef75e72012-07-25 16:09:11 +0300365 .of_match_table = omap_abe_of_match,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200366 },
367 .probe = omap_abe_probe,
Bill Pemberton7ff60002012-12-07 09:26:29 -0500368 .remove = omap_abe_remove,
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200369};
370
371module_platform_driver(omap_abe_driver);
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500372
Peter Ujfalusi8747a6b2011-12-07 15:31:26 +0200373MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
Peter Ujfalusi13f81d62011-12-07 15:54:50 +0200374MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
Misael Lopez Cruz5e64d6a2010-05-17 19:53:10 -0500375MODULE_LICENSE("GPL");
Peter Ujfalusid1be1d22011-12-08 11:07:42 +0200376MODULE_ALIAS("platform:omap-abe-twl6040");