blob: 731fb0d86c6ab305a499baaa306112353b02782e [file] [log] [blame]
Vladimir Barinov310355c2008-02-18 11:40:22 +01001/*
2 * ASoC driver for TI DAVINCI EVM platform
3 *
Vladimir Barinovd6b52032008-09-29 23:14:11 +04004 * Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
Vladimir Barinov310355c2008-02-18 11:40:22 +01005 * Copyright: (C) 2007 MontaVista Software, Inc., <source@mvista.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/timer.h>
15#include <linux/interrupt.h>
16#include <linux/platform_device.h>
Ben Dooksaa6b9042009-08-20 22:50:42 +010017#include <linux/i2c.h>
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +030018#include <linux/of_platform.h>
Jyri Sarha5ad88652014-01-27 17:37:51 +020019#include <linux/clk.h>
Vladimir Barinov310355c2008-02-18 11:40:22 +010020#include <sound/core.h>
21#include <sound/pcm.h>
22#include <sound/soc.h>
Vladimir Barinov310355c2008-02-18 11:40:22 +010023
Vladimir Barinov310355c2008-02-18 11:40:22 +010024#include <asm/dma.h>
David Brownellf492ec92009-05-14 13:01:59 -070025#include <asm/mach-types.h>
26
Jyri Sarhabcf25562013-09-17 12:26:00 +030027struct snd_soc_card_drvdata_davinci {
Jyri Sarha5ad88652014-01-27 17:37:51 +020028 struct clk *mclk;
Jyri Sarhabcf25562013-09-17 12:26:00 +030029 unsigned sysclk;
30};
31
Jyri Sarha5ad88652014-01-27 17:37:51 +020032static int evm_startup(struct snd_pcm_substream *substream)
33{
34 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Lars-Peter Clausen2896b8b2014-05-19 11:41:47 +020035 struct snd_soc_card *soc_card = rtd->card;
Jyri Sarha5ad88652014-01-27 17:37:51 +020036 struct snd_soc_card_drvdata_davinci *drvdata =
37 snd_soc_card_get_drvdata(soc_card);
38
39 if (drvdata->mclk)
40 return clk_prepare_enable(drvdata->mclk);
41
42 return 0;
43}
44
45static void evm_shutdown(struct snd_pcm_substream *substream)
46{
47 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Lars-Peter Clausen2896b8b2014-05-19 11:41:47 +020048 struct snd_soc_card *soc_card = rtd->card;
Jyri Sarha5ad88652014-01-27 17:37:51 +020049 struct snd_soc_card_drvdata_davinci *drvdata =
50 snd_soc_card_get_drvdata(soc_card);
51
52 if (drvdata->mclk)
53 clk_disable_unprepare(drvdata->mclk);
54}
55
Vladimir Barinov310355c2008-02-18 11:40:22 +010056static int evm_hw_params(struct snd_pcm_substream *substream,
57 struct snd_pcm_hw_params *params)
58{
59 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000060 struct snd_soc_dai *codec_dai = rtd->codec_dai;
61 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausen2896b8b2014-05-19 11:41:47 +020062 struct snd_soc_card *soc_card = rtd->card;
Vladimir Barinov310355c2008-02-18 11:40:22 +010063 int ret = 0;
Jyri Sarhabcf25562013-09-17 12:26:00 +030064 unsigned sysclk = ((struct snd_soc_card_drvdata_davinci *)
65 snd_soc_card_get_drvdata(soc_card))->sysclk;
Vladimir Barinov310355c2008-02-18 11:40:22 +010066
Vladimir Barinov310355c2008-02-18 11:40:22 +010067 /* set the codec system clock */
David Brownell05d5e992009-01-04 02:50:10 -080068 ret = snd_soc_dai_set_sysclk(codec_dai, 0, sysclk, SND_SOC_CLOCK_OUT);
Vladimir Barinov310355c2008-02-18 11:40:22 +010069 if (ret < 0)
70 return ret;
71
Daniel Mack5b66aa22012-10-04 15:08:41 +020072 /* set the CPU system clock */
73 ret = snd_soc_dai_set_sysclk(cpu_dai, 0, sysclk, SND_SOC_CLOCK_OUT);
74 if (ret < 0)
75 return ret;
76
Vladimir Barinov310355c2008-02-18 11:40:22 +010077 return 0;
78}
79
80static struct snd_soc_ops evm_ops = {
Jyri Sarha5ad88652014-01-27 17:37:51 +020081 .startup = evm_startup,
82 .shutdown = evm_shutdown,
Vladimir Barinov310355c2008-02-18 11:40:22 +010083 .hw_params = evm_hw_params,
84};
85
86/* davinci-evm machine dapm widgets */
87static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
88 SND_SOC_DAPM_HP("Headphone Jack", NULL),
89 SND_SOC_DAPM_LINE("Line Out", NULL),
90 SND_SOC_DAPM_MIC("Mic Jack", NULL),
91 SND_SOC_DAPM_LINE("Line In", NULL),
92};
93
94/* davinci-evm machine audio_mapnections to the codec pins */
Mark Brownacf497f2008-05-13 14:58:30 +020095static const struct snd_soc_dapm_route audio_map[] = {
Vladimir Barinov310355c2008-02-18 11:40:22 +010096 /* Headphone connected to HPLOUT, HPROUT */
97 {"Headphone Jack", NULL, "HPLOUT"},
98 {"Headphone Jack", NULL, "HPROUT"},
99
100 /* Line Out connected to LLOUT, RLOUT */
101 {"Line Out", NULL, "LLOUT"},
102 {"Line Out", NULL, "RLOUT"},
103
104 /* Mic connected to (MIC3L | MIC3R) */
Hebbar Gururajae2e8bfd2013-01-31 18:23:04 +0530105 {"MIC3L", NULL, "Mic Bias"},
106 {"MIC3R", NULL, "Mic Bias"},
107 {"Mic Bias", NULL, "Mic Jack"},
Vladimir Barinov310355c2008-02-18 11:40:22 +0100108
109 /* Line In connected to (LINE1L | LINE2L), (LINE1R | LINE2R) */
110 {"LINE1L", NULL, "Line In"},
111 {"LINE2L", NULL, "Line In"},
112 {"LINE1R", NULL, "Line In"},
113 {"LINE2R", NULL, "Line In"},
Vladimir Barinov310355c2008-02-18 11:40:22 +0100114};
115
116/* Logic for a aic3x as connected on a davinci-evm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000117static int evm_aic3x_init(struct snd_soc_pcm_runtime *rtd)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100118{
Lars-Peter Clausend343a662014-03-12 15:27:35 +0100119 struct snd_soc_card *card = rtd->card;
Lars-Peter Clausen2896b8b2014-05-19 11:41:47 +0200120 struct device_node *np = card->dev->of_node;
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300121 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000122
Vladimir Barinov310355c2008-02-18 11:40:22 +0100123 /* Add davinci-evm specific widgets */
Lars-Peter Clausend343a662014-03-12 15:27:35 +0100124 snd_soc_dapm_new_controls(&card->dapm, aic3x_dapm_widgets,
Mark Brownacf497f2008-05-13 14:58:30 +0200125 ARRAY_SIZE(aic3x_dapm_widgets));
Vladimir Barinov310355c2008-02-18 11:40:22 +0100126
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300127 if (np) {
Lars-Peter Clausend343a662014-03-12 15:27:35 +0100128 ret = snd_soc_of_parse_audio_routing(card, "ti,audio-routing");
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300129 if (ret)
130 return ret;
131 } else {
132 /* Set up davinci-evm specific audio path audio_map */
Lars-Peter Clausend343a662014-03-12 15:27:35 +0100133 snd_soc_dapm_add_routes(&card->dapm, audio_map,
134 ARRAY_SIZE(audio_map));
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300135 }
Vladimir Barinov310355c2008-02-18 11:40:22 +0100136
137 /* not connected */
Lars-Peter Clausenb213b442015-04-11 13:11:28 +0200138 snd_soc_dapm_nc_pin(&card->dapm, "MONO_LOUT");
139 snd_soc_dapm_nc_pin(&card->dapm, "HPLCOM");
140 snd_soc_dapm_nc_pin(&card->dapm, "HPRCOM");
Vladimir Barinov310355c2008-02-18 11:40:22 +0100141
Vladimir Barinov310355c2008-02-18 11:40:22 +0100142 return 0;
143}
144
145/* davinci-evm digital audio interface glue - connects codec <--> CPU */
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000146static struct snd_soc_dai_link dm6446_evm_dai = {
Vladimir Barinov310355c2008-02-18 11:40:22 +0100147 .name = "TLV320AIC3X",
148 .stream_name = "AIC3X",
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000149 .cpu_dai_name = "davinci-mcbsp",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000150 .codec_dai_name = "tlv320aic3x-hifi",
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000151 .codec_name = "tlv320aic3x-codec.1-001b",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530152 .platform_name = "davinci-mcbsp",
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000153 .init = evm_aic3x_init,
154 .ops = &evm_ops,
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200155 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
156 SND_SOC_DAIFMT_IB_NF,
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000157};
158
159static struct snd_soc_dai_link dm355_evm_dai = {
160 .name = "TLV320AIC3X",
161 .stream_name = "AIC3X",
162 .cpu_dai_name = "davinci-mcbsp.1",
163 .codec_dai_name = "tlv320aic3x-hifi",
164 .codec_name = "tlv320aic3x-codec.1-001b",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530165 .platform_name = "davinci-mcbsp.1",
Vladimir Barinov310355c2008-02-18 11:40:22 +0100166 .init = evm_aic3x_init,
167 .ops = &evm_ops,
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200168 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
169 SND_SOC_DAIFMT_IB_NF,
Vladimir Barinov310355c2008-02-18 11:40:22 +0100170};
171
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600172static struct snd_soc_dai_link dm365_evm_dai = {
173#ifdef CONFIG_SND_DM365_AIC3X_CODEC
174 .name = "TLV320AIC3X",
175 .stream_name = "AIC3X",
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000176 .cpu_dai_name = "davinci-mcbsp",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000177 .codec_dai_name = "tlv320aic3x-hifi",
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000178 .codec_name = "tlv320aic3x-codec.1-0018",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530179 .platform_name = "davinci-mcbsp",
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200180 .init = evm_aic3x_init,
181 .ops = &evm_ops,
182 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
183 SND_SOC_DAIFMT_IB_NF,
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600184#elif defined(CONFIG_SND_DM365_VOICE_CODEC)
185 .name = "Voice Codec - CQ93VC",
186 .stream_name = "CQ93",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000187 .cpu_dai_name = "davinci-vcif",
188 .codec_dai_name = "cq93vc-hifi",
189 .codec_name = "cq93vc-codec",
Hebbar, Gururajaffb690d2012-08-31 18:20:59 +0530190 .platform_name = "davinci-vcif",
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600191#endif
192};
193
Chaithrika U S04f80f52009-06-05 06:28:49 -0400194static struct snd_soc_dai_link dm6467_evm_dai[] = {
195 {
196 .name = "TLV320AIC3X",
197 .stream_name = "AIC3X",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000198 .cpu_dai_name= "davinci-mcasp.0",
199 .codec_dai_name = "tlv320aic3x-hifi",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530200 .platform_name = "davinci-mcasp.0",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000201 .codec_name = "tlv320aic3x-codec.0-001a",
Chaithrika U S04f80f52009-06-05 06:28:49 -0400202 .init = evm_aic3x_init,
203 .ops = &evm_ops,
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200204 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
205 SND_SOC_DAIFMT_IB_NF,
Chaithrika U S04f80f52009-06-05 06:28:49 -0400206 },
207 {
208 .name = "McASP",
209 .stream_name = "spdif",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000210 .cpu_dai_name= "davinci-mcasp.1",
211 .codec_dai_name = "dit-hifi",
212 .codec_name = "spdif_dit",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530213 .platform_name = "davinci-mcasp.1",
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200214 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
215 SND_SOC_DAIFMT_IB_NF,
Chaithrika U S04f80f52009-06-05 06:28:49 -0400216 },
217};
Vaibhav Bediaf9eb9dd2011-02-03 16:42:25 +0530218
219static struct snd_soc_dai_link da830_evm_dai = {
220 .name = "TLV320AIC3X",
221 .stream_name = "AIC3X",
222 .cpu_dai_name = "davinci-mcasp.1",
223 .codec_dai_name = "tlv320aic3x-hifi",
224 .codec_name = "tlv320aic3x-codec.1-0018",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530225 .platform_name = "davinci-mcasp.1",
Vaibhav Bediaf9eb9dd2011-02-03 16:42:25 +0530226 .init = evm_aic3x_init,
227 .ops = &evm_ops,
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200228 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
229 SND_SOC_DAIFMT_IB_NF,
Vaibhav Bediaf9eb9dd2011-02-03 16:42:25 +0530230};
231
232static struct snd_soc_dai_link da850_evm_dai = {
Chaithrika U S7ae59452009-08-07 10:07:51 -0400233 .name = "TLV320AIC3X",
234 .stream_name = "AIC3X",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000235 .cpu_dai_name= "davinci-mcasp.0",
236 .codec_dai_name = "tlv320aic3x-hifi",
Rajashekhara, Sudhakardc5a4602011-01-21 20:10:01 +0530237 .codec_name = "tlv320aic3x-codec.1-0018",
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530238 .platform_name = "davinci-mcasp.0",
Chaithrika U S7ae59452009-08-07 10:07:51 -0400239 .init = evm_aic3x_init,
240 .ops = &evm_ops,
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200241 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
242 SND_SOC_DAIFMT_IB_NF,
Chaithrika U S7ae59452009-08-07 10:07:51 -0400243};
Chaithrika U S04f80f52009-06-05 06:28:49 -0400244
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000245/* davinci dm6446 evm audio machine driver */
Jyri Sarhabcf25562013-09-17 12:26:00 +0300246/*
247 * ASP0 in DM6446 EVM is clocked by U55, as configured by
248 * board-dm644x-evm.c using GPIOs from U18. There are six
249 * options; here we "know" we use a 48 KHz sample rate.
250 */
251static struct snd_soc_card_drvdata_davinci dm6446_snd_soc_card_drvdata = {
252 .sysclk = 12288000,
253};
254
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000255static struct snd_soc_card dm6446_snd_soc_card_evm = {
256 .name = "DaVinci DM6446 EVM",
Axel Lin36a16d12011-12-22 21:19:42 +0800257 .owner = THIS_MODULE,
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000258 .dai_link = &dm6446_evm_dai,
259 .num_links = 1,
Jyri Sarhabcf25562013-09-17 12:26:00 +0300260 .drvdata = &dm6446_snd_soc_card_drvdata,
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000261};
262
263/* davinci dm355 evm audio machine driver */
Jyri Sarhabcf25562013-09-17 12:26:00 +0300264/* ASP1 on DM355 EVM is clocked by an external oscillator */
265static struct snd_soc_card_drvdata_davinci dm355_snd_soc_card_drvdata = {
266 .sysclk = 27000000,
267};
268
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000269static struct snd_soc_card dm355_snd_soc_card_evm = {
270 .name = "DaVinci DM355 EVM",
Axel Lin36a16d12011-12-22 21:19:42 +0800271 .owner = THIS_MODULE,
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000272 .dai_link = &dm355_evm_dai,
Vladimir Barinov310355c2008-02-18 11:40:22 +0100273 .num_links = 1,
Jyri Sarhabcf25562013-09-17 12:26:00 +0300274 .drvdata = &dm355_snd_soc_card_drvdata,
Vladimir Barinov310355c2008-02-18 11:40:22 +0100275};
276
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600277/* davinci dm365 evm audio machine driver */
Jyri Sarhabcf25562013-09-17 12:26:00 +0300278static struct snd_soc_card_drvdata_davinci dm365_snd_soc_card_drvdata = {
279 .sysclk = 27000000,
280};
281
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600282static struct snd_soc_card dm365_snd_soc_card_evm = {
283 .name = "DaVinci DM365 EVM",
Axel Lin36a16d12011-12-22 21:19:42 +0800284 .owner = THIS_MODULE,
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600285 .dai_link = &dm365_evm_dai,
286 .num_links = 1,
Jyri Sarhabcf25562013-09-17 12:26:00 +0300287 .drvdata = &dm365_snd_soc_card_drvdata,
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600288};
289
Chaithrika U S04f80f52009-06-05 06:28:49 -0400290/* davinci dm6467 evm audio machine driver */
Jyri Sarhabcf25562013-09-17 12:26:00 +0300291static struct snd_soc_card_drvdata_davinci dm6467_snd_soc_card_drvdata = {
292 .sysclk = 27000000,
293};
294
Chaithrika U S04f80f52009-06-05 06:28:49 -0400295static struct snd_soc_card dm6467_snd_soc_card_evm = {
296 .name = "DaVinci DM6467 EVM",
Axel Lin36a16d12011-12-22 21:19:42 +0800297 .owner = THIS_MODULE,
Chaithrika U S04f80f52009-06-05 06:28:49 -0400298 .dai_link = dm6467_evm_dai,
299 .num_links = ARRAY_SIZE(dm6467_evm_dai),
Jyri Sarhabcf25562013-09-17 12:26:00 +0300300 .drvdata = &dm6467_snd_soc_card_drvdata,
301};
302
303static struct snd_soc_card_drvdata_davinci da830_snd_soc_card_drvdata = {
304 .sysclk = 24576000,
Chaithrika U S04f80f52009-06-05 06:28:49 -0400305};
306
Chaithrika U S7ae59452009-08-07 10:07:51 -0400307static struct snd_soc_card da830_snd_soc_card = {
Chaithrika U S30230f42009-08-11 16:59:21 -0400308 .name = "DA830/OMAP-L137 EVM",
Axel Lin36a16d12011-12-22 21:19:42 +0800309 .owner = THIS_MODULE,
Vaibhav Bediaf9eb9dd2011-02-03 16:42:25 +0530310 .dai_link = &da830_evm_dai,
Chaithrika U S30230f42009-08-11 16:59:21 -0400311 .num_links = 1,
Jyri Sarhabcf25562013-09-17 12:26:00 +0300312 .drvdata = &da830_snd_soc_card_drvdata,
313};
314
315static struct snd_soc_card_drvdata_davinci da850_snd_soc_card_drvdata = {
316 .sysclk = 24576000,
Chaithrika U S30230f42009-08-11 16:59:21 -0400317};
318
319static struct snd_soc_card da850_snd_soc_card = {
320 .name = "DA850/OMAP-L138 EVM",
Axel Lin36a16d12011-12-22 21:19:42 +0800321 .owner = THIS_MODULE,
Vaibhav Bediaf9eb9dd2011-02-03 16:42:25 +0530322 .dai_link = &da850_evm_dai,
Chaithrika U S7ae59452009-08-07 10:07:51 -0400323 .num_links = 1,
Jyri Sarhabcf25562013-09-17 12:26:00 +0300324 .drvdata = &da850_snd_soc_card_drvdata,
Chaithrika U S7ae59452009-08-07 10:07:51 -0400325};
326
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300327#if defined(CONFIG_OF)
328
329/*
330 * The struct is used as place holder. It will be completely
331 * filled with data from dt node.
332 */
333static struct snd_soc_dai_link evm_dai_tlv320aic3x = {
334 .name = "TLV320AIC3X",
335 .stream_name = "AIC3X",
336 .codec_dai_name = "tlv320aic3x-hifi",
337 .ops = &evm_ops,
338 .init = evm_aic3x_init,
Peter Ujfalusid38970e2013-11-14 11:35:21 +0200339 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_CBM_CFM |
340 SND_SOC_DAIFMT_IB_NF,
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300341};
342
343static const struct of_device_id davinci_evm_dt_ids[] = {
344 {
345 .compatible = "ti,da830-evm-audio",
346 .data = (void *) &evm_dai_tlv320aic3x,
347 },
348 { /* sentinel */ }
349};
350MODULE_DEVICE_TABLE(of, davinci_evm_dt_ids);
351
352/* davinci evm audio machine driver */
353static struct snd_soc_card evm_soc_card = {
354 .owner = THIS_MODULE,
355 .num_links = 1,
356};
357
358static int davinci_evm_probe(struct platform_device *pdev)
359{
360 struct device_node *np = pdev->dev.of_node;
361 const struct of_device_id *match =
362 of_match_device(of_match_ptr(davinci_evm_dt_ids), &pdev->dev);
363 struct snd_soc_dai_link *dai = (struct snd_soc_dai_link *) match->data;
364 struct snd_soc_card_drvdata_davinci *drvdata = NULL;
Jyri Sarha5ad88652014-01-27 17:37:51 +0200365 struct clk *mclk;
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300366 int ret = 0;
367
368 evm_soc_card.dai_link = dai;
369
370 dai->codec_of_node = of_parse_phandle(np, "ti,audio-codec", 0);
371 if (!dai->codec_of_node)
372 return -EINVAL;
373
374 dai->cpu_of_node = of_parse_phandle(np, "ti,mcasp-controller", 0);
375 if (!dai->cpu_of_node)
376 return -EINVAL;
377
378 dai->platform_of_node = dai->cpu_of_node;
379
380 evm_soc_card.dev = &pdev->dev;
381 ret = snd_soc_of_parse_card_name(&evm_soc_card, "ti,model");
382 if (ret)
383 return ret;
384
Jyri Sarha5ad88652014-01-27 17:37:51 +0200385 mclk = devm_clk_get(&pdev->dev, "mclk");
386 if (PTR_ERR(mclk) == -EPROBE_DEFER) {
387 return -EPROBE_DEFER;
388 } else if (IS_ERR(mclk)) {
389 dev_dbg(&pdev->dev, "mclk not found.\n");
390 mclk = NULL;
391 }
392
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300393 drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL);
394 if (!drvdata)
395 return -ENOMEM;
396
Jyri Sarha5ad88652014-01-27 17:37:51 +0200397 drvdata->mclk = mclk;
398
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300399 ret = of_property_read_u32(np, "ti,codec-clock-rate", &drvdata->sysclk);
Jyri Sarha5ad88652014-01-27 17:37:51 +0200400
401 if (ret < 0) {
402 if (!drvdata->mclk) {
403 dev_err(&pdev->dev,
404 "No clock or clock rate defined.\n");
405 return -EINVAL;
406 }
407 drvdata->sysclk = clk_get_rate(drvdata->mclk);
408 } else if (drvdata->mclk) {
409 unsigned int requestd_rate = drvdata->sysclk;
410 clk_set_rate(drvdata->mclk, drvdata->sysclk);
411 drvdata->sysclk = clk_get_rate(drvdata->mclk);
412 if (drvdata->sysclk != requestd_rate)
413 dev_warn(&pdev->dev,
414 "Could not get requested rate %u using %u.\n",
415 requestd_rate, drvdata->sysclk);
416 }
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300417
418 snd_soc_card_set_drvdata(&evm_soc_card, drvdata);
419 ret = devm_snd_soc_register_card(&pdev->dev, &evm_soc_card);
420
421 if (ret)
422 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret);
423
424 return ret;
425}
426
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300427static struct platform_driver davinci_evm_driver = {
428 .probe = davinci_evm_probe,
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300429 .driver = {
430 .name = "davinci_evm",
Peter Ujfalusifb6d2082014-01-30 15:21:31 +0200431 .pm = &snd_soc_pm_ops,
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300432 .of_match_table = of_match_ptr(davinci_evm_dt_ids),
433 },
434};
435#endif
436
Vladimir Barinov310355c2008-02-18 11:40:22 +0100437static struct platform_device *evm_snd_device;
438
439static int __init evm_init(void)
440{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000441 struct snd_soc_card *evm_snd_dev_data;
David Brownellf492ec92009-05-14 13:01:59 -0700442 int index;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100443 int ret;
444
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300445 /*
446 * If dtb is there, the devices will be created dynamically.
447 * Only register platfrom driver structure.
448 */
449#if defined(CONFIG_OF)
450 if (of_have_populated_dt())
451 return platform_driver_register(&davinci_evm_driver);
452#endif
453
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600454 if (machine_is_davinci_evm()) {
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000455 evm_snd_dev_data = &dm6446_snd_soc_card_evm;
David Brownellf492ec92009-05-14 13:01:59 -0700456 index = 0;
457 } else if (machine_is_davinci_dm355_evm()) {
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000458 evm_snd_dev_data = &dm355_snd_soc_card_evm;
David Brownellf492ec92009-05-14 13:01:59 -0700459 index = 1;
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600460 } else if (machine_is_davinci_dm365_evm()) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000461 evm_snd_dev_data = &dm365_snd_soc_card_evm;
Miguel Aguilaraa9b88e2010-03-11 09:33:40 -0600462 index = 0;
Chaithrika U S04f80f52009-06-05 06:28:49 -0400463 } else if (machine_is_davinci_dm6467_evm()) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000464 evm_snd_dev_data = &dm6467_snd_soc_card_evm;
Chaithrika U S04f80f52009-06-05 06:28:49 -0400465 index = 0;
Chaithrika U S7ae59452009-08-07 10:07:51 -0400466 } else if (machine_is_davinci_da830_evm()) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000467 evm_snd_dev_data = &da830_snd_soc_card;
Chaithrika U S7ae59452009-08-07 10:07:51 -0400468 index = 1;
Chaithrika U S30230f42009-08-11 16:59:21 -0400469 } else if (machine_is_davinci_da850_evm()) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000470 evm_snd_dev_data = &da850_snd_soc_card;
Chaithrika U S30230f42009-08-11 16:59:21 -0400471 index = 0;
David Brownellf492ec92009-05-14 13:01:59 -0700472 } else
473 return -EINVAL;
474
475 evm_snd_device = platform_device_alloc("soc-audio", index);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100476 if (!evm_snd_device)
477 return -ENOMEM;
478
Chaithrika U S04f80f52009-06-05 06:28:49 -0400479 platform_set_drvdata(evm_snd_device, evm_snd_dev_data);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100480 ret = platform_device_add(evm_snd_device);
481 if (ret)
482 platform_device_put(evm_snd_device);
483
484 return ret;
485}
486
487static void __exit evm_exit(void)
488{
Hebbar, Gururajaee2f6152013-10-23 15:30:14 +0300489#if defined(CONFIG_OF)
490 if (of_have_populated_dt()) {
491 platform_driver_unregister(&davinci_evm_driver);
492 return;
493 }
494#endif
495
Vladimir Barinov310355c2008-02-18 11:40:22 +0100496 platform_device_unregister(evm_snd_device);
497}
498
499module_init(evm_init);
500module_exit(evm_exit);
501
502MODULE_AUTHOR("Vladimir Barinov");
503MODULE_DESCRIPTION("TI DAVINCI EVM ASoC driver");
504MODULE_LICENSE("GPL");