davinci-evm.c 9.8 KB
Newer Older
V
Vladimir Barinov 已提交
1 2 3
/*
 * ASoC driver for TI DAVINCI EVM platform
 *
4
 * Author:      Vladimir Barinov, <vbarinov@embeddedalley.com>
V
Vladimir Barinov 已提交
5 6 7 8 9 10 11 12 13 14 15 16
 * Copyright:   (C) 2007 MontaVista Software, Inc., <source@mvista.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/timer.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
17
#include <linux/platform_data/edma.h>
18
#include <linux/i2c.h>
V
Vladimir Barinov 已提交
19 20 21 22 23
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/soc.h>

#include <asm/dma.h>
24 25
#include <asm/mach-types.h>

V
Vladimir Barinov 已提交
26 27
#include "davinci-pcm.h"
#include "davinci-i2s.h"
28
#include "davinci-mcasp.h"
V
Vladimir Barinov 已提交
29

30 31 32 33
struct snd_soc_card_drvdata_davinci {
	unsigned sysclk;
};

34 35
#define AUDIO_FORMAT (SND_SOC_DAIFMT_DSP_B | \
		SND_SOC_DAIFMT_CBM_CFM | SND_SOC_DAIFMT_IB_NF)
V
Vladimir Barinov 已提交
36 37 38 39
static int evm_hw_params(struct snd_pcm_substream *substream,
			 struct snd_pcm_hw_params *params)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
40 41
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
42 43
	struct snd_soc_codec *codec = rtd->codec;
	struct snd_soc_card *soc_card = codec->card;
V
Vladimir Barinov 已提交
44
	int ret = 0;
45 46
	unsigned sysclk = ((struct snd_soc_card_drvdata_davinci *)
			   snd_soc_card_get_drvdata(soc_card))->sysclk;
V
Vladimir Barinov 已提交
47 48

	/* set codec DAI configuration */
49
	ret = snd_soc_dai_set_fmt(codec_dai, AUDIO_FORMAT);
V
Vladimir Barinov 已提交
50 51 52 53
	if (ret < 0)
		return ret;

	/* set cpu DAI configuration */
54
	ret = snd_soc_dai_set_fmt(cpu_dai, AUDIO_FORMAT);
V
Vladimir Barinov 已提交
55 56 57 58
	if (ret < 0)
		return ret;

	/* set the codec system clock */
59
	ret = snd_soc_dai_set_sysclk(codec_dai, 0, sysclk, SND_SOC_CLOCK_OUT);
V
Vladimir Barinov 已提交
60 61 62
	if (ret < 0)
		return ret;

63 64 65 66 67
	/* set the CPU system clock */
	ret = snd_soc_dai_set_sysclk(cpu_dai, 0, sysclk, SND_SOC_CLOCK_OUT);
	if (ret < 0)
		return ret;

V
Vladimir Barinov 已提交
68 69 70
	return 0;
}

71 72 73 74
static int evm_spdif_hw_params(struct snd_pcm_substream *substream,
				struct snd_pcm_hw_params *params)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
75
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
76 77 78 79 80

	/* set cpu DAI configuration */
	return snd_soc_dai_set_fmt(cpu_dai, AUDIO_FORMAT);
}

V
Vladimir Barinov 已提交
81 82 83 84
static struct snd_soc_ops evm_ops = {
	.hw_params = evm_hw_params,
};

85 86 87 88
static struct snd_soc_ops evm_spdif_ops = {
	.hw_params = evm_spdif_hw_params,
};

V
Vladimir Barinov 已提交
89 90 91 92 93 94 95 96 97
/* davinci-evm machine dapm widgets */
static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
	SND_SOC_DAPM_HP("Headphone Jack", NULL),
	SND_SOC_DAPM_LINE("Line Out", NULL),
	SND_SOC_DAPM_MIC("Mic Jack", NULL),
	SND_SOC_DAPM_LINE("Line In", NULL),
};

/* davinci-evm machine audio_mapnections to the codec pins */
98
static const struct snd_soc_dapm_route audio_map[] = {
V
Vladimir Barinov 已提交
99 100 101 102 103 104 105 106 107
	/* Headphone connected to HPLOUT, HPROUT */
	{"Headphone Jack", NULL, "HPLOUT"},
	{"Headphone Jack", NULL, "HPROUT"},

	/* Line Out connected to LLOUT, RLOUT */
	{"Line Out", NULL, "LLOUT"},
	{"Line Out", NULL, "RLOUT"},

	/* Mic connected to (MIC3L | MIC3R) */
108 109 110
	{"MIC3L", NULL, "Mic Bias"},
	{"MIC3R", NULL, "Mic Bias"},
	{"Mic Bias", NULL, "Mic Jack"},
V
Vladimir Barinov 已提交
111 112 113 114 115 116 117 118 119

	/* Line In connected to (LINE1L | LINE2L), (LINE1R | LINE2R) */
	{"LINE1L", NULL, "Line In"},
	{"LINE2L", NULL, "Line In"},
	{"LINE1R", NULL, "Line In"},
	{"LINE2R", NULL, "Line In"},
};

/* Logic for a aic3x as connected on a davinci-evm */
120
static int evm_aic3x_init(struct snd_soc_pcm_runtime *rtd)
V
Vladimir Barinov 已提交
121
{
122
	struct snd_soc_codec *codec = rtd->codec;
L
Liam Girdwood 已提交
123
	struct snd_soc_dapm_context *dapm = &codec->dapm;
124

V
Vladimir Barinov 已提交
125
	/* Add davinci-evm specific widgets */
L
Liam Girdwood 已提交
126
	snd_soc_dapm_new_controls(dapm, aic3x_dapm_widgets,
127
				  ARRAY_SIZE(aic3x_dapm_widgets));
V
Vladimir Barinov 已提交
128 129

	/* Set up davinci-evm specific audio path audio_map */
L
Liam Girdwood 已提交
130
	snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
V
Vladimir Barinov 已提交
131 132

	/* not connected */
L
Liam Girdwood 已提交
133 134 135
	snd_soc_dapm_disable_pin(dapm, "MONO_LOUT");
	snd_soc_dapm_disable_pin(dapm, "HPLCOM");
	snd_soc_dapm_disable_pin(dapm, "HPRCOM");
V
Vladimir Barinov 已提交
136 137

	/* always connected */
L
Liam Girdwood 已提交
138 139 140 141
	snd_soc_dapm_enable_pin(dapm, "Headphone Jack");
	snd_soc_dapm_enable_pin(dapm, "Line Out");
	snd_soc_dapm_enable_pin(dapm, "Mic Jack");
	snd_soc_dapm_enable_pin(dapm, "Line In");
V
Vladimir Barinov 已提交
142 143 144 145 146

	return 0;
}

/* davinci-evm digital audio interface glue - connects codec <--> CPU */
147
static struct snd_soc_dai_link dm6446_evm_dai = {
V
Vladimir Barinov 已提交
148 149
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
150
	.cpu_dai_name = "davinci-mcbsp",
151
	.codec_dai_name = "tlv320aic3x-hifi",
152
	.codec_name = "tlv320aic3x-codec.1-001b",
153
	.platform_name = "davinci-mcbsp",
154 155 156 157 158 159 160 161 162 163
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};

static struct snd_soc_dai_link dm355_evm_dai = {
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
	.cpu_dai_name = "davinci-mcbsp.1",
	.codec_dai_name = "tlv320aic3x-hifi",
	.codec_name = "tlv320aic3x-codec.1-001b",
164
	.platform_name = "davinci-mcbsp.1",
V
Vladimir Barinov 已提交
165 166 167 168
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};

169 170 171 172
static struct snd_soc_dai_link dm365_evm_dai = {
#ifdef CONFIG_SND_DM365_AIC3X_CODEC
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
173
	.cpu_dai_name = "davinci-mcbsp",
174
	.codec_dai_name = "tlv320aic3x-hifi",
175
	.init = evm_aic3x_init,
176
	.codec_name = "tlv320aic3x-codec.1-0018",
177
	.ops = &evm_ops,
178
	.platform_name = "davinci-mcbsp",
179 180 181
#elif defined(CONFIG_SND_DM365_VOICE_CODEC)
	.name = "Voice Codec - CQ93VC",
	.stream_name = "CQ93",
182 183 184
	.cpu_dai_name = "davinci-vcif",
	.codec_dai_name = "cq93vc-hifi",
	.codec_name = "cq93vc-codec",
185
	.platform_name = "davinci-vcif",
186 187 188
#endif
};

189 190 191 192
static struct snd_soc_dai_link dm6467_evm_dai[] = {
	{
		.name = "TLV320AIC3X",
		.stream_name = "AIC3X",
193 194
		.cpu_dai_name= "davinci-mcasp.0",
		.codec_dai_name = "tlv320aic3x-hifi",
195
		.platform_name = "davinci-mcasp.0",
196
		.codec_name = "tlv320aic3x-codec.0-001a",
197 198 199 200 201 202
		.init = evm_aic3x_init,
		.ops = &evm_ops,
	},
	{
		.name = "McASP",
		.stream_name = "spdif",
203 204 205
		.cpu_dai_name= "davinci-mcasp.1",
		.codec_dai_name = "dit-hifi",
		.codec_name = "spdif_dit",
206
		.platform_name = "davinci-mcasp.1",
207
		.ops = &evm_spdif_ops,
208 209
	},
};
210 211 212 213 214 215 216

static struct snd_soc_dai_link da830_evm_dai = {
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
	.cpu_dai_name = "davinci-mcasp.1",
	.codec_dai_name = "tlv320aic3x-hifi",
	.codec_name = "tlv320aic3x-codec.1-0018",
217
	.platform_name = "davinci-mcasp.1",
218 219 220 221 222
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};

static struct snd_soc_dai_link da850_evm_dai = {
223 224
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
225 226
	.cpu_dai_name= "davinci-mcasp.0",
	.codec_dai_name = "tlv320aic3x-hifi",
227
	.codec_name = "tlv320aic3x-codec.1-0018",
228
	.platform_name = "davinci-mcasp.0",
229 230 231
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};
232

233
/* davinci dm6446 evm audio machine driver */
234 235 236 237 238 239 240 241 242
/*
 * ASP0 in DM6446 EVM is clocked by U55, as configured by
 * board-dm644x-evm.c using GPIOs from U18.  There are six
 * options; here we "know" we use a 48 KHz sample rate.
 */
static struct snd_soc_card_drvdata_davinci dm6446_snd_soc_card_drvdata = {
	.sysclk = 12288000,
};

243 244
static struct snd_soc_card dm6446_snd_soc_card_evm = {
	.name = "DaVinci DM6446 EVM",
245
	.owner = THIS_MODULE,
246 247
	.dai_link = &dm6446_evm_dai,
	.num_links = 1,
248
	.drvdata = &dm6446_snd_soc_card_drvdata,
249 250 251
};

/* davinci dm355 evm audio machine driver */
252 253 254 255 256
/* ASP1 on DM355 EVM is clocked by an external oscillator */
static struct snd_soc_card_drvdata_davinci dm355_snd_soc_card_drvdata = {
	.sysclk = 27000000,
};

257 258
static struct snd_soc_card dm355_snd_soc_card_evm = {
	.name = "DaVinci DM355 EVM",
259
	.owner = THIS_MODULE,
260
	.dai_link = &dm355_evm_dai,
V
Vladimir Barinov 已提交
261
	.num_links = 1,
262
	.drvdata = &dm355_snd_soc_card_drvdata,
V
Vladimir Barinov 已提交
263 264
};

265
/* davinci dm365 evm audio machine driver */
266 267 268 269
static struct snd_soc_card_drvdata_davinci dm365_snd_soc_card_drvdata = {
	.sysclk = 27000000,
};

270 271
static struct snd_soc_card dm365_snd_soc_card_evm = {
	.name = "DaVinci DM365 EVM",
272
	.owner = THIS_MODULE,
273 274
	.dai_link = &dm365_evm_dai,
	.num_links = 1,
275
	.drvdata = &dm365_snd_soc_card_drvdata,
276 277
};

278
/* davinci dm6467 evm audio machine driver */
279 280 281 282
static struct snd_soc_card_drvdata_davinci dm6467_snd_soc_card_drvdata = {
	.sysclk = 27000000,
};

283 284
static struct snd_soc_card dm6467_snd_soc_card_evm = {
	.name = "DaVinci DM6467 EVM",
285
	.owner = THIS_MODULE,
286 287
	.dai_link = dm6467_evm_dai,
	.num_links = ARRAY_SIZE(dm6467_evm_dai),
288 289 290 291 292
	.drvdata = &dm6467_snd_soc_card_drvdata,
};

static struct snd_soc_card_drvdata_davinci da830_snd_soc_card_drvdata = {
	.sysclk = 24576000,
293 294
};

295
static struct snd_soc_card da830_snd_soc_card = {
296
	.name = "DA830/OMAP-L137 EVM",
297
	.owner = THIS_MODULE,
298
	.dai_link = &da830_evm_dai,
299
	.num_links = 1,
300 301 302 303 304
	.drvdata = &da830_snd_soc_card_drvdata,
};

static struct snd_soc_card_drvdata_davinci da850_snd_soc_card_drvdata = {
	.sysclk = 24576000,
305 306 307 308
};

static struct snd_soc_card da850_snd_soc_card = {
	.name = "DA850/OMAP-L138 EVM",
309
	.owner = THIS_MODULE,
310
	.dai_link = &da850_evm_dai,
311
	.num_links = 1,
312
	.drvdata = &da850_snd_soc_card_drvdata,
313 314
};

V
Vladimir Barinov 已提交
315 316 317 318
static struct platform_device *evm_snd_device;

static int __init evm_init(void)
{
319
	struct snd_soc_card *evm_snd_dev_data;
320
	int index;
V
Vladimir Barinov 已提交
321 322
	int ret;

323
	if (machine_is_davinci_evm()) {
324
		evm_snd_dev_data = &dm6446_snd_soc_card_evm;
325 326
		index = 0;
	} else if (machine_is_davinci_dm355_evm()) {
327
		evm_snd_dev_data = &dm355_snd_soc_card_evm;
328
		index = 1;
329
	} else if (machine_is_davinci_dm365_evm()) {
330
		evm_snd_dev_data = &dm365_snd_soc_card_evm;
331
		index = 0;
332
	} else if (machine_is_davinci_dm6467_evm()) {
333
		evm_snd_dev_data = &dm6467_snd_soc_card_evm;
334
		index = 0;
335
	} else if (machine_is_davinci_da830_evm()) {
336
		evm_snd_dev_data = &da830_snd_soc_card;
337
		index = 1;
338
	} else if (machine_is_davinci_da850_evm()) {
339
		evm_snd_dev_data = &da850_snd_soc_card;
340
		index = 0;
341 342 343 344
	} else
		return -EINVAL;

	evm_snd_device = platform_device_alloc("soc-audio", index);
V
Vladimir Barinov 已提交
345 346 347
	if (!evm_snd_device)
		return -ENOMEM;

348
	platform_set_drvdata(evm_snd_device, evm_snd_dev_data);
V
Vladimir Barinov 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
	ret = platform_device_add(evm_snd_device);
	if (ret)
		platform_device_put(evm_snd_device);

	return ret;
}

static void __exit evm_exit(void)
{
	platform_device_unregister(evm_snd_device);
}

module_init(evm_init);
module_exit(evm_exit);

MODULE_AUTHOR("Vladimir Barinov");
MODULE_DESCRIPTION("TI DAVINCI EVM ASoC driver");
MODULE_LICENSE("GPL");