summaryrefslogtreecommitdiff
path: root/sound/soc/tegra/tegra_vcm.c
blob: afb444e3f19fec192143c3777e902c9250c9273c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
 * tegra_vcm.c - Tegra machine ASoC driver for P852/P1852/P1853 Boards.
 *
 * Author: Nitin Pai <npai@nvidia.com>
 * Copyright (C) 2010-2012 - NVIDIA, Corporation. All rights reserved.
 *
 * Based on code copyright/by:
 * Copyright (c) 2009-2010, NVIDIA Corporation.
 * Stephen Warren <swarren@nvidia.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.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#include <asm/mach-types.h>

#include <linux/clk.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/slab.h>

#include <mach/tegra_p1852_pdata.h>

#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/soc.h>

#include "tegra_pcm.h"
#include "tegra_asoc_utils.h"

#ifdef CONFIG_MACH_P1852
#define DRV_NAME "tegra-snd-p1852"
#endif
#ifdef CONFIG_MACH_E1853
#define DRV_NAME "tegra-snd-e1853"
#endif
#ifdef CONFIG_MACH_P852
#define DRV_NAME "tegra-snd-p852"
#endif


struct tegra_vcm {
	struct tegra_asoc_utils_data util_data;
	struct tegra_p1852_platform_data *pdata;
};

static int tegra_vcm_hw_params(struct snd_pcm_substream *substream,
					struct snd_pcm_hw_params *params,
					int codec_id)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
	struct snd_soc_codec *codec = rtd->codec;
	struct snd_soc_card *card = codec->card;
	struct tegra_vcm *machine = snd_soc_card_get_drvdata(card);
	int srate, mclk;
	int i2s_daifmt = 0;
	int err;
	struct tegra_p1852_platform_data *pdata;

	pdata = machine->pdata;

	srate = params_rate(params);
	switch (srate) {
	case 64000:
	case 88200:
	case 96000:
		mclk = 128 * srate;
		break;
	default:
		mclk = 256 * srate;
		break;
	}

	err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk);
	if (err < 0) {
		if (!(machine->util_data.set_mclk % mclk))
			mclk = machine->util_data.set_mclk;
		else {
			dev_err(card->dev, "Can't configure clocks\n");
			return err;
		}
	}

	tegra_asoc_utils_lock_clk_rate(&machine->util_data, 1);

	if (pdata->codec_info[codec_id].master)
		i2s_daifmt |= SND_SOC_DAIFMT_CBM_CFM;
	else
		i2s_daifmt |= SND_SOC_DAIFMT_CBS_CFS;

	switch (pdata->codec_info[codec_id].i2s_format) {
	case format_tdm:
		i2s_daifmt |= SND_SOC_DAIFMT_DSP_A;
		break;
	case format_i2s:
		i2s_daifmt |= SND_SOC_DAIFMT_I2S;
		break;
	case format_rjm:
		i2s_daifmt |= SND_SOC_DAIFMT_RIGHT_J;
		break;
	case format_ljm:
		i2s_daifmt |= SND_SOC_DAIFMT_LEFT_J;
		break;
	default:
		break;
	}

	err = snd_soc_dai_set_fmt(codec_dai, i2s_daifmt);
	if (err < 0)
		dev_info(card->dev, "codec_dai fmt not set\n");

	err = snd_soc_dai_set_fmt(cpu_dai, i2s_daifmt);
	if (err < 0) {
		dev_err(card->dev, "cpu_dai fmt not set\n");
		return err;
	}
	err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
					SND_SOC_CLOCK_IN);
	if (err < 0)
		dev_info(card->dev, "codec_dai clock not set\n");

	if (pdata->codec_info[codec_id].i2s_format ==
			format_tdm) {
		err = snd_soc_dai_set_tdm_slot(cpu_dai,
					pdata->codec_info[codec_id].rx_mask,
					pdata->codec_info[codec_id].tx_mask,
					pdata->codec_info[codec_id].num_slots,
					pdata->codec_info[codec_id].slot_width);
		if (err < 0)
			dev_err(card->dev, "cpu_dai tdm mode setting not done\n");
	}

	return 0;
}

static int tegra_vcm_hw_params_controller1(
				struct snd_pcm_substream *substream,
				struct snd_pcm_hw_params *params)
{
	return tegra_vcm_hw_params(substream, params, 0);
}

static int tegra_vcm_hw_params_controller2(
				struct snd_pcm_substream *substream,
				struct snd_pcm_hw_params *params)
{
	return tegra_vcm_hw_params(substream, params, 1);
}

static int tegra_hw_free(struct snd_pcm_substream *substream)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct tegra_vcm *machine = snd_soc_card_get_drvdata(rtd->card);

	tegra_asoc_utils_lock_clk_rate(&machine->util_data, 0);

	return 0;
}

static struct snd_soc_ops tegra_vcm_ops_controller1 = {
	.hw_params = tegra_vcm_hw_params_controller1,
	.hw_free = tegra_hw_free,
};
static struct snd_soc_ops tegra_vcm_ops_controller2 = {
	.hw_params = tegra_vcm_hw_params_controller2,
	.hw_free = tegra_hw_free,
};

static struct snd_soc_dai_link tegra_vcm_dai_link[] = {
	{
		.name = "I2S-TDM-1",
		.stream_name = "TEGRA PCM",
		.platform_name = "tegra-pcm-audio",
		.ops = &tegra_vcm_ops_controller1,
	},
	{
		.name = "I2S-TDM-2",
		.stream_name = "TEGRA PCM",
		.platform_name = "tegra-pcm-audio",
		.ops = &tegra_vcm_ops_controller2,
	}
};

static struct snd_soc_card snd_soc_tegra_vcm = {
	.name = "tegra-vcm",
	.dai_link = tegra_vcm_dai_link,
	.num_links = ARRAY_SIZE(tegra_vcm_dai_link),
};

static __devinit int tegra_vcm_driver_probe(struct platform_device *pdev)
{
	struct snd_soc_card *card = &snd_soc_tegra_vcm;
	struct tegra_vcm *machine;
	struct tegra_p1852_platform_data *pdata;
	int ret;
	int i;

	pdata = pdev->dev.platform_data;
	if (!pdata) {
		dev_err(&pdev->dev, "No platform data supplied\n");
		return -EINVAL;
	}

	machine = kzalloc(sizeof(struct tegra_vcm), GFP_KERNEL);
	if (!machine) {
		dev_err(&pdev->dev, "Can't allocate tegra_vcm struct\n");
		return -ENOMEM;
	}

	machine->pdata = pdata;

	/* The codec driver and codec dai have to come from the system
	 * level board configuration file
	 * */
	for (i = 0; i < ARRAY_SIZE(tegra_vcm_dai_link); i++) {
		tegra_vcm_dai_link[i].codec_name =
				pdata->codec_info[i].codec_name;
		tegra_vcm_dai_link[i].cpu_dai_name =
				pdata->codec_info[i].cpu_dai_name;
		tegra_vcm_dai_link[i].codec_dai_name =
				pdata->codec_info[i].codec_dai_name;
		tegra_vcm_dai_link[i].name =
				pdata->codec_info[i].name;
		if (pdata->codec_info[i].pcm_driver)
			tegra_vcm_dai_link[i].platform_name =
				pdata->codec_info[i].pcm_driver;
	}

	ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev, card);
	if (ret)
		goto err_free_machine;

	card->dev = &pdev->dev;
	platform_set_drvdata(pdev, card);
	snd_soc_card_set_drvdata(card, machine);

	ret = snd_soc_register_card(card);
	if (ret) {
		dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
			ret);
	}

	if (!card->instantiated) {
		ret = -ENODEV;
		dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
			ret);
		goto err_unregister_card;
	}

	return 0;

err_unregister_card:
	snd_soc_unregister_card(card);
	tegra_asoc_utils_fini(&machine->util_data);
err_free_machine:
	kfree(machine);
	return ret;
}

static int __devexit tegra_vcm_driver_remove(struct platform_device *pdev)
{
	struct snd_soc_card *card = platform_get_drvdata(pdev);
	struct tegra_vcm *machine = snd_soc_card_get_drvdata(card);

	snd_soc_unregister_card(card);
	tegra_asoc_utils_fini(&machine->util_data);
	kfree(machine);

	return 0;
}

static struct platform_driver tegra_vcm_driver = {
	.driver = {
		.name = DRV_NAME,
		.owner = THIS_MODULE,
		.pm = &snd_soc_pm_ops,
	},
	.probe = tegra_vcm_driver_probe,
	.remove = __devexit_p(tegra_vcm_driver_remove),
};

static int __init tegra_vcm_modinit(void)
{
	return platform_driver_register(&tegra_vcm_driver);
}
module_init(tegra_vcm_modinit);

static void __exit tegra_vcm_modexit(void)
{
	platform_driver_unregister(&tegra_vcm_driver);
}
module_exit(tegra_vcm_modexit);

MODULE_AUTHOR("Nitin Pai <npai@nvidia.com>");
MODULE_DESCRIPTION("Tegra+VCM machine ASoC driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:" DRV_NAME);