sam9g20_wm8731.c 7.9 KB
Newer Older
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
/*
 * sam9g20_wm8731  --  SoC audio for AT91SAM9G20-based
 * 			ATMEL AT91SAM9G20ek board.
 *
 *  Copyright (C) 2005 SAN People
 *  Copyright (C) 2008 Atmel
 *
 * Authors: Sedji Gaouaou <sedji.gaouaou@atmel.com>
 *
 * Based on ati_b1_wm8731.c by:
 * Frank Mandarino <fmandarino@endrelia.com>
 * Copyright 2006 Endrelia Technologies Inc.
 * Based on corgi.c by:
 * Copyright 2005 Wolfson Microelectronics PLC.
 * Copyright 2005 Openedhand Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/timer.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
39
#include <linux/i2c.h>
40
#include <linux/of.h>
41 42 43 44 45 46 47 48

#include <linux/atmel-ssc.h>

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

49
#include <asm/mach-types.h>
50 51 52 53 54 55 56
#include <mach/hardware.h>
#include <mach/gpio.h>

#include "../codecs/wm8731.h"
#include "atmel-pcm.h"
#include "atmel_ssc_dai.h"

57 58
#define MCLK_RATE 12000000

59 60 61 62 63 64 65
/*
 * As shipped the board does not have inputs.  However, it is relatively
 * straightforward to modify the board to hook them up so support is left
 * in the driver.
 */
#undef ENABLE_MIC_INPUT

66
static struct clk *mclk;
67 68 69 70 71

static int at91sam9g20ek_hw_params(struct snd_pcm_substream *substream,
	struct snd_pcm_hw_params *params)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
72 73
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
74 75 76 77
	int ret;

	/* set codec DAI configuration */
	ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
78
		SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM);
79 80 81 82 83
	if (ret < 0)
		return ret;

	/* set cpu DAI configuration */
	ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
84
		SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM);
85 86 87 88 89 90 91 92 93 94
	if (ret < 0)
		return ret;

	return 0;
}

static struct snd_soc_ops at91sam9g20ek_ops = {
	.hw_params = at91sam9g20ek_hw_params,
};

95
static int at91sam9g20ek_set_bias_level(struct snd_soc_card *card,
96
					struct snd_soc_dapm_context *dapm,
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
					enum snd_soc_bias_level level)
{
	static int mclk_on;
	int ret = 0;

	switch (level) {
	case SND_SOC_BIAS_ON:
	case SND_SOC_BIAS_PREPARE:
		if (!mclk_on)
			ret = clk_enable(mclk);
		if (ret == 0)
			mclk_on = 1;
		break;

	case SND_SOC_BIAS_OFF:
	case SND_SOC_BIAS_STANDBY:
		if (mclk_on)
			clk_disable(mclk);
		mclk_on = 0;
		break;
	}

	return ret;
}
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139

static const struct snd_soc_dapm_widget at91sam9g20ek_dapm_widgets[] = {
	SND_SOC_DAPM_MIC("Int Mic", NULL),
	SND_SOC_DAPM_SPK("Ext Spk", NULL),
};

static const struct snd_soc_dapm_route intercon[] = {

	/* speaker connected to LHPOUT */
	{"Ext Spk", NULL, "LHPOUT"},

	/* mic is connected to Mic Jack, with WM8731 Mic Bias */
	{"MICIN", NULL, "Mic Bias"},
	{"Mic Bias", NULL, "Int Mic"},
};

/*
 * Logic for a wm8731 as connected on a at91sam9g20ek board.
 */
140
static int at91sam9g20ek_wm8731_init(struct snd_soc_pcm_runtime *rtd)
141
{
142 143
	struct snd_soc_codec *codec = rtd->codec;
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
L
Liam Girdwood 已提交
144
	struct snd_soc_dapm_context *dapm = &codec->dapm;
145 146
	int ret;

147 148 149 150
	printk(KERN_DEBUG
			"at91sam9g20ek_wm8731 "
			": at91sam9g20ek_wm8731_init() called\n");

151
	ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_MCLK,
152 153 154 155 156 157
		MCLK_RATE, SND_SOC_CLOCK_IN);
	if (ret < 0) {
		printk(KERN_ERR "Failed to set WM8731 SYSCLK: %d\n", ret);
		return ret;
	}

158
	/* not connected */
L
Liam Girdwood 已提交
159 160
	snd_soc_dapm_nc_pin(dapm, "RLINEIN");
	snd_soc_dapm_nc_pin(dapm, "LLINEIN");
161

162 163
#ifndef ENABLE_MIC_INPUT
	snd_soc_dapm_nc_pin(&rtd->card->dapm, "Int Mic");
164 165
#endif

166 167 168 169 170 171
	return 0;
}

static struct snd_soc_dai_link at91sam9g20ek_dai = {
	.name = "WM8731",
	.stream_name = "WM8731 PCM",
172
	.cpu_dai_name = "at91rm9200_ssc.0",
173
	.codec_dai_name = "wm8731-hifi",
174
	.init = at91sam9g20ek_wm8731_init,
175
	.platform_name = "at91rm9200_ssc.0",
176
	.codec_name = "wm8731.0-001b",
177 178 179
	.ops = &at91sam9g20ek_ops,
};

180
static struct snd_soc_card snd_soc_at91sam9g20ek = {
181
	.name = "AT91SAMG20-EK",
182
	.owner = THIS_MODULE,
183 184
	.dai_link = &at91sam9g20ek_dai,
	.num_links = 1,
185
	.set_bias_level = at91sam9g20ek_set_bias_level,
186 187 188 189 190

	.dapm_widgets = at91sam9g20ek_dapm_widgets,
	.num_dapm_widgets = ARRAY_SIZE(at91sam9g20ek_dapm_widgets),
	.dapm_routes = intercon,
	.num_dapm_routes = ARRAY_SIZE(intercon),
191 192
};

193
static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
194
{
195 196
	struct device_node *np = pdev->dev.of_node;
	struct device_node *codec_np, *cpu_np;
197
	struct clk *pllb;
198
	struct snd_soc_card *card = &snd_soc_at91sam9g20ek;
199 200
	int ret;

201 202 203 204 205
	if (!np) {
		if (!(machine_is_at91sam9g20ek() ||
			machine_is_at91sam9g20ek_2mmc()))
			return -ENODEV;
	}
206

207 208 209 210 211 212
	ret = atmel_ssc_set_audio(0);
	if (ret) {
		dev_err(&pdev->dev, "ssc channel is not valid\n");
		return -EINVAL;
	}

213 214 215 216 217 218 219 220 221 222 223
	/*
	 * Codec MCLK is supplied by PCK0 - set it up.
	 */
	mclk = clk_get(NULL, "pck0");
	if (IS_ERR(mclk)) {
		printk(KERN_ERR "ASoC: Failed to get MCLK\n");
		ret = PTR_ERR(mclk);
		goto err;
	}

	pllb = clk_get(NULL, "pllb");
V
Vasiliy Kulikov 已提交
224
	if (IS_ERR(pllb)) {
225
		printk(KERN_ERR "ASoC: Failed to get PLLB\n");
V
Vasiliy Kulikov 已提交
226
		ret = PTR_ERR(pllb);
227 228 229 230 231 232 233 234 235 236 237
		goto err_mclk;
	}
	ret = clk_set_parent(mclk, pllb);
	clk_put(pllb);
	if (ret != 0) {
		printk(KERN_ERR "ASoC: Failed to set MCLK parent\n");
		goto err_mclk;
	}

	clk_set_rate(mclk, MCLK_RATE);

238
	card->dev = &pdev->dev;
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

	/* Parse device node info */
	if (np) {
		ret = snd_soc_of_parse_card_name(card, "atmel,model");
		if (ret)
			goto err;

		ret = snd_soc_of_parse_audio_routing(card,
			"atmel,audio-routing");
		if (ret)
			goto err;

		/* Parse codec info */
		at91sam9g20ek_dai.codec_name = NULL;
		codec_np = of_parse_phandle(np, "atmel,audio-codec", 0);
		if (!codec_np) {
			dev_err(&pdev->dev, "codec info missing\n");
			return -EINVAL;
		}
		at91sam9g20ek_dai.codec_of_node = codec_np;

		/* Parse dai and platform info */
		at91sam9g20ek_dai.cpu_dai_name = NULL;
		at91sam9g20ek_dai.platform_name = NULL;
		cpu_np = of_parse_phandle(np, "atmel,ssc-controller", 0);
		if (!cpu_np) {
			dev_err(&pdev->dev, "dai and pcm info missing\n");
			return -EINVAL;
		}
		at91sam9g20ek_dai.cpu_of_node = cpu_np;
		at91sam9g20ek_dai.platform_of_node = cpu_np;

		of_node_put(codec_np);
		of_node_put(cpu_np);
	}

275
	ret = snd_soc_register_card(card);
276
	if (ret) {
277
		printk(KERN_ERR "ASoC: snd_soc_register_card() failed\n");
278 279 280 281
	}

	return ret;

282 283 284 285
err_mclk:
	clk_put(mclk);
	mclk = NULL;
err:
286
	atmel_ssc_put_audio(0);
287 288 289
	return ret;
}

290
static int at91sam9g20ek_audio_remove(struct platform_device *pdev)
291
{
292 293
	struct snd_soc_card *card = platform_get_drvdata(pdev);

294
	clk_disable(mclk);
295
	mclk = NULL;
296 297
	snd_soc_unregister_card(card);
	atmel_ssc_put_audio(0);
298 299

	return 0;
300 301
}

302 303 304 305 306 307 308 309
#ifdef CONFIG_OF
static const struct of_device_id at91sam9g20ek_wm8731_dt_ids[] = {
	{ .compatible = "atmel,at91sam9g20ek-wm8731-audio", },
	{ }
};
MODULE_DEVICE_TABLE(of, at91sam9g20ek_wm8731_dt_ids);
#endif

310 311 312 313
static struct platform_driver at91sam9g20ek_audio_driver = {
	.driver = {
		.name	= "at91sam9g20ek-audio",
		.owner	= THIS_MODULE,
314
		.of_match_table = of_match_ptr(at91sam9g20ek_wm8731_dt_ids),
315 316
	},
	.probe	= at91sam9g20ek_audio_probe,
317
	.remove	= at91sam9g20ek_audio_remove,
318 319 320
};

module_platform_driver(at91sam9g20ek_audio_driver);
321 322 323 324

/* Module information */
MODULE_AUTHOR("Sedji Gaouaou <sedji.gaouaou@atmel.com>");
MODULE_DESCRIPTION("ALSA SoC AT91SAM9G20EK_WM8731");
325
MODULE_ALIAS("platform:at91sam9g20ek-audio");
326
MODULE_LICENSE("GPL");