omap-abe-twl6040.c 7.4 KB
Newer Older
1
/*
2 3
 * omap-abe-twl6040.c  --  SoC audio for TI OMAP based boards with ABE and
 *			   twl6040 codec
4
 *
5
 * Author: Misael Lopez Cruz <misael.lopez@ti.com>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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 <linux/clk.h>
#include <linux/platform_device.h>
25
#include <linux/mfd/twl6040.h>
26
#include <linux/platform_data/omap-abe-twl6040.h>
27
#include <linux/module.h>
28

29 30 31
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/soc.h>
32
#include <sound/jack.h>
33 34 35 36 37

#include <asm/mach-types.h>
#include <plat/hardware.h>
#include <plat/mux.h>

38
#include "omap-dmic.h"
39
#include "omap-mcpdm.h"
40 41 42
#include "omap-pcm.h"
#include "../codecs/twl6040.h"

43
static int omap_abe_hw_params(struct snd_pcm_substream *substream,
44 45 46
	struct snd_pcm_hw_params *params)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
47
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
48 49 50
	int clk_id, freq;
	int ret;

51 52
	clk_id = twl6040_get_clk_id(rtd->codec);
	if (clk_id == TWL6040_SYSCLK_SEL_HPPLL)
53
		freq = 38400000;
54
	else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL)
55
		freq = 32768;
56 57
	else
		return -EINVAL;
58 59 60 61 62 63 64 65

	/* set the codec mclk */
	ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq,
				SND_SOC_CLOCK_IN);
	if (ret) {
		printk(KERN_ERR "can't set codec system clock\n");
		return ret;
	}
66
	return ret;
67 68
}

69 70
static struct snd_soc_ops omap_abe_ops = {
	.hw_params = omap_abe_hw_params,
71 72
};

73
static int omap_abe_dmic_hw_params(struct snd_pcm_substream *substream,
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
	struct snd_pcm_hw_params *params)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
	int ret = 0;

	ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_SYSCLK_PAD_CLKS,
				     19200000, SND_SOC_CLOCK_IN);
	if (ret < 0) {
		printk(KERN_ERR "can't set DMIC cpu system clock\n");
		return ret;
	}
	ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_DMIC_ABE_DMIC_CLK, 2400000,
				     SND_SOC_CLOCK_OUT);
	if (ret < 0) {
		printk(KERN_ERR "can't set DMIC output clock\n");
		return ret;
	}
	return 0;
}

95 96
static struct snd_soc_ops omap_abe_dmic_ops = {
	.hw_params = omap_abe_dmic_hw_params,
97 98
};

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
/* Headset jack */
static struct snd_soc_jack hs_jack;

/*Headset jack detection DAPM pins */
static struct snd_soc_jack_pin hs_jack_pins[] = {
	{
		.pin = "Headset Mic",
		.mask = SND_JACK_MICROPHONE,
	},
	{
		.pin = "Headset Stereophone",
		.mask = SND_JACK_HEADPHONE,
	},
};

114
/* SDP4430 machine DAPM */
115
static const struct snd_soc_dapm_widget twl6040_dapm_widgets[] = {
116 117 118 119
	SND_SOC_DAPM_MIC("Ext Mic", NULL),
	SND_SOC_DAPM_SPK("Ext Spk", NULL),
	SND_SOC_DAPM_MIC("Headset Mic", NULL),
	SND_SOC_DAPM_HP("Headset Stereophone", NULL),
120
	SND_SOC_DAPM_SPK("Earphone Spk", NULL),
121
	SND_SOC_DAPM_INPUT("FM Stereo In"),
122 123 124 125
};

static const struct snd_soc_dapm_route audio_map[] = {
	/* External Mics: MAINMIC, SUBMIC with bias*/
126 127 128
	{"MAINMIC", NULL, "Ext Mic"},
	{"SUBMIC", NULL, "Ext Mic"},
	{"Ext Mic", NULL, "Main Mic Bias"},
129 130 131 132 133 134

	/* External Speakers: HFL, HFR */
	{"Ext Spk", NULL, "HFL"},
	{"Ext Spk", NULL, "HFR"},

	/* Headset Mic: HSMIC with bias */
135 136
	{"HSMIC", NULL, "Headset Mic"},
	{"Headset Mic", NULL, "Headset Mic Bias"},
137 138 139 140

	/* Headset Stereophone (Headphone): HSOL, HSOR */
	{"Headset Stereophone", NULL, "HSOL"},
	{"Headset Stereophone", NULL, "HSOR"},
141 142 143

	/* Earphone speaker */
	{"Earphone Spk", NULL, "EP"},
144 145

	/* Aux/FM Stereo In: AFML, AFMR */
146 147
	{"AFML", NULL, "FM Stereo In"},
	{"AFMR", NULL, "FM Stereo In"},
148 149
};

150
static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
151
{
152
	struct snd_soc_codec *codec = rtd->codec;
153
	int ret, hs_trim;
154

155 156 157 158 159 160 161 162
	/*
	 * Configure McPDM offset cancellation based on the HSOTRIM value from
	 * twl6040.
	 */
	hs_trim = twl6040_get_trim_value(codec, TWL6040_TRIM_HSOTRIM);
	omap_mcpdm_configure_dn_offsets(rtd, TWL6040_HSF_TRIM_LEFT(hs_trim),
					TWL6040_HSF_TRIM_RIGHT(hs_trim));

163 164 165 166 167 168 169 170 171 172 173 174 175
	/* Headset jack detection */
	ret = snd_soc_jack_new(codec, "Headset Jack",
				SND_JACK_HEADSET, &hs_jack);
	if (ret)
		return ret;

	ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
				hs_jack_pins);

	if (machine_is_omap_4430sdp())
		twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
	else
		snd_soc_jack_report(&hs_jack, SND_JACK_HEADSET, SND_JACK_HEADSET);
176 177 178 179

	return ret;
}

180
static const struct snd_soc_dapm_widget dmic_dapm_widgets[] = {
181 182 183 184
	SND_SOC_DAPM_MIC("Digital Mic", NULL),
};

static const struct snd_soc_dapm_route dmic_audio_map[] = {
185 186
	{"DMic", NULL, "Digital Mic"},
	{"Digital Mic", NULL, "Digital Mic1 Bias"},
187 188
};

189
static int omap_abe_dmic_init(struct snd_soc_pcm_runtime *rtd)
190 191 192 193 194
{
	struct snd_soc_codec *codec = rtd->codec;
	struct snd_soc_dapm_context *dapm = &codec->dapm;
	int ret;

195 196
	ret = snd_soc_dapm_new_controls(dapm, dmic_dapm_widgets,
				ARRAY_SIZE(dmic_dapm_widgets));
197 198 199 200 201 202 203
	if (ret)
		return ret;

	return snd_soc_dapm_add_routes(dapm, dmic_audio_map,
				ARRAY_SIZE(dmic_audio_map));
}

204
/* Digital audio interface glue - connects codec <--> CPU */
205 206 207 208 209 210 211 212
static struct snd_soc_dai_link sdp4430_dai[] = {
	{
		.name = "TWL6040",
		.stream_name = "TWL6040",
		.cpu_dai_name = "omap-mcpdm",
		.codec_dai_name = "twl6040-legacy",
		.platform_name = "omap-pcm-audio",
		.codec_name = "twl6040-codec",
213 214
		.init = omap_abe_twl6040_init,
		.ops = &omap_abe_ops,
215 216 217 218 219 220 221 222
	},
	{
		.name = "DMIC",
		.stream_name = "DMIC Capture",
		.cpu_dai_name = "omap-dmic",
		.codec_dai_name = "dmic-hifi",
		.platform_name = "omap-pcm-audio",
		.codec_name = "dmic-codec",
223 224
		.init = omap_abe_dmic_init,
		.ops = &omap_abe_dmic_ops,
225
	},
226 227 228
};

/* Audio machine driver */
229
static struct snd_soc_card omap_abe_card = {
230
	.owner = THIS_MODULE,
231 232
	.dai_link = sdp4430_dai,
	.num_links = ARRAY_SIZE(sdp4430_dai),
233

234 235
	.dapm_widgets = twl6040_dapm_widgets,
	.num_dapm_widgets = ARRAY_SIZE(twl6040_dapm_widgets),
236 237
	.dapm_routes = audio_map,
	.num_dapm_routes = ARRAY_SIZE(audio_map),
238 239
};

240
static __devinit int omap_abe_probe(struct platform_device *pdev)
241
{
242 243
	struct omap_abe_twl6040_data *pdata = dev_get_platdata(&pdev->dev);
	struct snd_soc_card *card = &omap_abe_card;
244 245
	int ret;

246
	card->dev = &pdev->dev;
247

248 249 250
	if (!pdata) {
		dev_err(&pdev->dev, "Missing pdata\n");
		return -ENODEV;
251 252
	}

253 254 255 256 257 258
	if (pdata->card_name) {
		card->name = pdata->card_name;
	} else {
		dev_err(&pdev->dev, "Card name is not provided\n");
		return -ENODEV;
	}
259

260
	ret = snd_soc_register_card(card);
261
	if (ret)
262 263
		dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
			ret);
264 265 266 267

	return ret;
}

268
static int __devexit omap_abe_remove(struct platform_device *pdev)
269
{
270 271 272 273 274
	struct snd_soc_card *card = platform_get_drvdata(pdev);

	snd_soc_unregister_card(card);

	return 0;
275
}
276 277 278 279 280 281 282 283 284 285 286 287

static struct platform_driver omap_abe_driver = {
	.driver = {
		.name = "omap-abe-twl6040",
		.owner = THIS_MODULE,
		.pm = &snd_soc_pm_ops,
	},
	.probe = omap_abe_probe,
	.remove = __devexit_p(omap_abe_remove),
};

module_platform_driver(omap_abe_driver);
288

289
MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
290
MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
291
MODULE_LICENSE("GPL");
292
MODULE_ALIAS("platform:omap-abe-twl6040");