davinci-evm.c 8.9 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/i2c.h>
V
Vladimir Barinov 已提交
18 19 20 21 22
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/soc.h>

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

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

29 30
#define AUDIO_FORMAT (SND_SOC_DAIFMT_DSP_B | \
		SND_SOC_DAIFMT_CBM_CFM | SND_SOC_DAIFMT_IB_NF)
V
Vladimir Barinov 已提交
31 32 33 34
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;
35 36
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
V
Vladimir Barinov 已提交
37
	int ret = 0;
38 39 40
	unsigned sysclk;

	/* ASP1 on DM355 EVM is clocked by an external oscillator */
41 42
	if (machine_is_davinci_dm355_evm() || machine_is_davinci_dm6467_evm() ||
	    machine_is_davinci_dm365_evm())
43 44 45 46 47 48 49 50 51
		sysclk = 27000000;

	/* 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.
	 */
	else if (machine_is_davinci_evm())
		sysclk = 12288000;

52 53
	else if (machine_is_davinci_da830_evm() ||
				machine_is_davinci_da850_evm())
54 55
		sysclk = 24576000;

56 57
	else
		return -EINVAL;
V
Vladimir Barinov 已提交
58 59

	/* set codec DAI configuration */
60
	ret = snd_soc_dai_set_fmt(codec_dai, AUDIO_FORMAT);
V
Vladimir Barinov 已提交
61 62 63 64
	if (ret < 0)
		return ret;

	/* set cpu DAI configuration */
65
	ret = snd_soc_dai_set_fmt(cpu_dai, AUDIO_FORMAT);
V
Vladimir Barinov 已提交
66 67 68 69
	if (ret < 0)
		return ret;

	/* set the codec system clock */
70
	ret = snd_soc_dai_set_sysclk(codec_dai, 0, sysclk, SND_SOC_CLOCK_OUT);
V
Vladimir Barinov 已提交
71 72 73 74 75 76
	if (ret < 0)
		return ret;

	return 0;
}

77 78 79 80
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;
81
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
82 83 84 85 86

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

V
Vladimir Barinov 已提交
87 88 89 90
static struct snd_soc_ops evm_ops = {
	.hw_params = evm_hw_params,
};

91 92 93 94
static struct snd_soc_ops evm_spdif_ops = {
	.hw_params = evm_spdif_hw_params,
};

V
Vladimir Barinov 已提交
95 96 97 98 99 100 101 102 103
/* 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 */
104
static const struct snd_soc_dapm_route audio_map[] = {
V
Vladimir Barinov 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
	/* 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) */
	{"MIC3L", NULL, "Mic Bias 2V"},
	{"MIC3R", NULL, "Mic Bias 2V"},
	{"Mic Bias 2V", NULL, "Mic Jack"},

	/* 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 */
126
static int evm_aic3x_init(struct snd_soc_pcm_runtime *rtd)
V
Vladimir Barinov 已提交
127
{
128
	struct snd_soc_codec *codec = rtd->codec;
L
Liam Girdwood 已提交
129
	struct snd_soc_dapm_context *dapm = &codec->dapm;
130

V
Vladimir Barinov 已提交
131
	/* Add davinci-evm specific widgets */
L
Liam Girdwood 已提交
132
	snd_soc_dapm_new_controls(dapm, aic3x_dapm_widgets,
133
				  ARRAY_SIZE(aic3x_dapm_widgets));
V
Vladimir Barinov 已提交
134 135

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

	/* not connected */
L
Liam Girdwood 已提交
139 140 141
	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 已提交
142 143

	/* always connected */
L
Liam Girdwood 已提交
144 145 146 147
	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 已提交
148 149 150 151 152

	return 0;
}

/* davinci-evm digital audio interface glue - connects codec <--> CPU */
153
static struct snd_soc_dai_link dm6446_evm_dai = {
V
Vladimir Barinov 已提交
154 155
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
156
	.cpu_dai_name = "davinci-mcbsp",
157
	.codec_dai_name = "tlv320aic3x-hifi",
158
	.codec_name = "tlv320aic3x-codec.1-001b",
159
	.platform_name = "davinci-mcbsp",
160 161 162 163 164 165 166 167 168 169
	.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",
170
	.platform_name = "davinci-mcbsp.1",
V
Vladimir Barinov 已提交
171 172 173 174
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};

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

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

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",
223
	.platform_name = "davinci-mcasp.1",
224 225 226 227 228
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};

static struct snd_soc_dai_link da850_evm_dai = {
229 230
	.name = "TLV320AIC3X",
	.stream_name = "AIC3X",
231 232
	.cpu_dai_name= "davinci-mcasp.0",
	.codec_dai_name = "tlv320aic3x-hifi",
233
	.codec_name = "tlv320aic3x-codec.1-0018",
234
	.platform_name = "davinci-mcasp.0",
235 236 237
	.init = evm_aic3x_init,
	.ops = &evm_ops,
};
238

239 240 241
/* davinci dm6446 evm audio machine driver */
static struct snd_soc_card dm6446_snd_soc_card_evm = {
	.name = "DaVinci DM6446 EVM",
242
	.owner = THIS_MODULE,
243 244 245 246 247 248 249
	.dai_link = &dm6446_evm_dai,
	.num_links = 1,
};

/* davinci dm355 evm audio machine driver */
static struct snd_soc_card dm355_snd_soc_card_evm = {
	.name = "DaVinci DM355 EVM",
250
	.owner = THIS_MODULE,
251
	.dai_link = &dm355_evm_dai,
V
Vladimir Barinov 已提交
252 253 254
	.num_links = 1,
};

255 256 257
/* davinci dm365 evm audio machine driver */
static struct snd_soc_card dm365_snd_soc_card_evm = {
	.name = "DaVinci DM365 EVM",
258
	.owner = THIS_MODULE,
259 260 261 262
	.dai_link = &dm365_evm_dai,
	.num_links = 1,
};

263 264 265
/* davinci dm6467 evm audio machine driver */
static struct snd_soc_card dm6467_snd_soc_card_evm = {
	.name = "DaVinci DM6467 EVM",
266
	.owner = THIS_MODULE,
267 268 269 270
	.dai_link = dm6467_evm_dai,
	.num_links = ARRAY_SIZE(dm6467_evm_dai),
};

271
static struct snd_soc_card da830_snd_soc_card = {
272
	.name = "DA830/OMAP-L137 EVM",
273
	.owner = THIS_MODULE,
274
	.dai_link = &da830_evm_dai,
275 276 277 278 279
	.num_links = 1,
};

static struct snd_soc_card da850_snd_soc_card = {
	.name = "DA850/OMAP-L138 EVM",
280
	.owner = THIS_MODULE,
281
	.dai_link = &da850_evm_dai,
282 283 284
	.num_links = 1,
};

V
Vladimir Barinov 已提交
285 286 287 288
static struct platform_device *evm_snd_device;

static int __init evm_init(void)
{
289
	struct snd_soc_card *evm_snd_dev_data;
290
	int index;
V
Vladimir Barinov 已提交
291 292
	int ret;

293
	if (machine_is_davinci_evm()) {
294
		evm_snd_dev_data = &dm6446_snd_soc_card_evm;
295 296
		index = 0;
	} else if (machine_is_davinci_dm355_evm()) {
297
		evm_snd_dev_data = &dm355_snd_soc_card_evm;
298
		index = 1;
299
	} else if (machine_is_davinci_dm365_evm()) {
300
		evm_snd_dev_data = &dm365_snd_soc_card_evm;
301
		index = 0;
302
	} else if (machine_is_davinci_dm6467_evm()) {
303
		evm_snd_dev_data = &dm6467_snd_soc_card_evm;
304
		index = 0;
305
	} else if (machine_is_davinci_da830_evm()) {
306
		evm_snd_dev_data = &da830_snd_soc_card;
307
		index = 1;
308
	} else if (machine_is_davinci_da850_evm()) {
309
		evm_snd_dev_data = &da850_snd_soc_card;
310
		index = 0;
311 312 313 314
	} else
		return -EINVAL;

	evm_snd_device = platform_device_alloc("soc-audio", index);
V
Vladimir Barinov 已提交
315 316 317
	if (!evm_snd_device)
		return -ENOMEM;

318
	platform_set_drvdata(evm_snd_device, evm_snd_dev_data);
V
Vladimir Barinov 已提交
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
	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");