s3c24xx-i2s.c 13.0 KB
Newer Older
1 2 3 4 5 6
/*
 * s3c24xx-i2s.c  --  ALSA Soc Audio Layer
 *
 * (c) 2006 Wolfson Microelectronics PLC.
 * Graeme Gregory graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
 *
7
 * Copyright 2004-2005 Simtec Electronics
8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *	http://armlinux.simtec.co.uk/
 *	Ben Dooks <ben@simtec.co.uk>
 *
 *  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.
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/clk.h>
22
#include <linux/jiffies.h>
23
#include <linux/io.h>
24 25
#include <linux/gpio.h>

26 27 28 29 30 31
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/initval.h>
#include <sound/soc.h>

32 33 34
#include <mach/hardware.h>
#include <mach/regs-gpio.h>
#include <mach/regs-clock.h>
B
Ben Dooks 已提交
35

36
#include <asm/dma.h>
37
#include <mach/dma.h>
38

B
Ben Dooks 已提交
39
#include <plat/regs-iis.h>
40

J
Jassi Brar 已提交
41
#include "dma.h"
42 43 44 45 46 47 48 49 50 51
#include "s3c24xx-i2s.h"

static struct s3c2410_dma_client s3c24xx_dma_client_out = {
	.name = "I2S PCM Stereo out"
};

static struct s3c2410_dma_client s3c24xx_dma_client_in = {
	.name = "I2S PCM Stereo in"
};

52
static struct s3c_dma_params s3c24xx_i2s_pcm_stereo_out = {
53 54
	.client		= &s3c24xx_dma_client_out,
	.channel	= DMACH_I2S_OUT,
55 56
	.dma_addr	= S3C2410_PA_IIS + S3C2410_IISFIFO,
	.dma_size	= 2,
57 58
};

59
static struct s3c_dma_params s3c24xx_i2s_pcm_stereo_in = {
60 61
	.client		= &s3c24xx_dma_client_in,
	.channel	= DMACH_I2S_IN,
62 63
	.dma_addr	= S3C2410_PA_IIS + S3C2410_IISFIFO,
	.dma_size	= 2,
64 65 66 67 68
};

struct s3c24xx_i2s_info {
	void __iomem	*regs;
	struct clk	*iis_clk;
69 70 71 72
	u32		iiscon;
	u32		iismod;
	u32		iisfcon;
	u32		iispsr;
73 74 75 76 77 78 79 80 81
};
static struct s3c24xx_i2s_info s3c24xx_i2s;

static void s3c24xx_snd_txctrl(int on)
{
	u32 iisfcon;
	u32 iiscon;
	u32 iismod;

82
	pr_debug("Entered %s\n", __func__);
83 84 85 86 87

	iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON);
	iiscon  = readl(s3c24xx_i2s.regs + S3C2410_IISCON);
	iismod  = readl(s3c24xx_i2s.regs + S3C2410_IISMOD);

88
	pr_debug("r: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon, iismod, iisfcon);
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

	if (on) {
		iisfcon |= S3C2410_IISFCON_TXDMA | S3C2410_IISFCON_TXENABLE;
		iiscon  |= S3C2410_IISCON_TXDMAEN | S3C2410_IISCON_IISEN;
		iiscon  &= ~S3C2410_IISCON_TXIDLE;
		iismod  |= S3C2410_IISMOD_TXMODE;

		writel(iismod,  s3c24xx_i2s.regs + S3C2410_IISMOD);
		writel(iisfcon, s3c24xx_i2s.regs + S3C2410_IISFCON);
		writel(iiscon,  s3c24xx_i2s.regs + S3C2410_IISCON);
	} else {
		/* note, we have to disable the FIFOs otherwise bad things
		 * seem to happen when the DMA stops. According to the
		 * Samsung supplied kernel, this should allow the DMA
		 * engine and FIFOs to reset. If this isn't allowed, the
		 * DMA engine will simply freeze randomly.
		 */

		iisfcon &= ~S3C2410_IISFCON_TXENABLE;
		iisfcon &= ~S3C2410_IISFCON_TXDMA;
		iiscon  |=  S3C2410_IISCON_TXIDLE;
		iiscon  &= ~S3C2410_IISCON_TXDMAEN;
		iismod  &= ~S3C2410_IISMOD_TXMODE;

		writel(iiscon,  s3c24xx_i2s.regs + S3C2410_IISCON);
		writel(iisfcon, s3c24xx_i2s.regs + S3C2410_IISFCON);
		writel(iismod,  s3c24xx_i2s.regs + S3C2410_IISMOD);
	}

118
	pr_debug("w: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon, iismod, iisfcon);
119 120 121 122 123 124 125 126
}

static void s3c24xx_snd_rxctrl(int on)
{
	u32 iisfcon;
	u32 iiscon;
	u32 iismod;

127
	pr_debug("Entered %s\n", __func__);
128 129 130 131 132

	iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON);
	iiscon  = readl(s3c24xx_i2s.regs + S3C2410_IISCON);
	iismod  = readl(s3c24xx_i2s.regs + S3C2410_IISMOD);

133
	pr_debug("r: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon, iismod, iisfcon);
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

	if (on) {
		iisfcon |= S3C2410_IISFCON_RXDMA | S3C2410_IISFCON_RXENABLE;
		iiscon  |= S3C2410_IISCON_RXDMAEN | S3C2410_IISCON_IISEN;
		iiscon  &= ~S3C2410_IISCON_RXIDLE;
		iismod  |= S3C2410_IISMOD_RXMODE;

		writel(iismod,  s3c24xx_i2s.regs + S3C2410_IISMOD);
		writel(iisfcon, s3c24xx_i2s.regs + S3C2410_IISFCON);
		writel(iiscon,  s3c24xx_i2s.regs + S3C2410_IISCON);
	} else {
		/* note, we have to disable the FIFOs otherwise bad things
		 * seem to happen when the DMA stops. According to the
		 * Samsung supplied kernel, this should allow the DMA
		 * engine and FIFOs to reset. If this isn't allowed, the
		 * DMA engine will simply freeze randomly.
		 */

152 153 154 155
		iisfcon &= ~S3C2410_IISFCON_RXENABLE;
		iisfcon &= ~S3C2410_IISFCON_RXDMA;
		iiscon  |= S3C2410_IISCON_RXIDLE;
		iiscon  &= ~S3C2410_IISCON_RXDMAEN;
156 157 158 159 160 161 162
		iismod  &= ~S3C2410_IISMOD_RXMODE;

		writel(iisfcon, s3c24xx_i2s.regs + S3C2410_IISFCON);
		writel(iiscon,  s3c24xx_i2s.regs + S3C2410_IISCON);
		writel(iismod,  s3c24xx_i2s.regs + S3C2410_IISMOD);
	}

163
	pr_debug("w: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon, iismod, iisfcon);
164 165 166 167 168 169 170 171 172
}

/*
 * Wait for the LR signal to allow synchronisation to the L/R clock
 * from the codec. May only be needed for slave mode.
 */
static int s3c24xx_snd_lrsync(void)
{
	u32 iiscon;
173
	int timeout = 50; /* 5ms */
174

175
	pr_debug("Entered %s\n", __func__);
176 177 178 179 180 181

	while (1) {
		iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON);
		if (iiscon & S3C2410_IISCON_LRINDEX)
			break;

182
		if (!timeout--)
183
			return -ETIMEDOUT;
184
		udelay(100);
185 186 187 188 189 190 191 192 193 194
	}

	return 0;
}

/*
 * Check whether CPU is the master or slave
 */
static inline int s3c24xx_snd_is_clkmaster(void)
{
195
	pr_debug("Entered %s\n", __func__);
196 197 198 199 200 201 202

	return (readl(s3c24xx_i2s.regs + S3C2410_IISMOD) & S3C2410_IISMOD_SLAVE) ? 0:1;
}

/*
 * Set S3C24xx I2S DAI format
 */
203
static int s3c24xx_i2s_set_fmt(struct snd_soc_dai *cpu_dai,
204 205 206 207
		unsigned int fmt)
{
	u32 iismod;

208
	pr_debug("Entered %s\n", __func__);
209 210

	iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD);
211
	pr_debug("hw_params r: IISMOD: %x \n", iismod);
212 213 214 215 216 217

	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
	case SND_SOC_DAIFMT_CBM_CFM:
		iismod |= S3C2410_IISMOD_SLAVE;
		break;
	case SND_SOC_DAIFMT_CBS_CFS:
218
		iismod &= ~S3C2410_IISMOD_SLAVE;
219 220 221 222 223 224 225 226 227 228
		break;
	default:
		return -EINVAL;
	}

	switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
	case SND_SOC_DAIFMT_LEFT_J:
		iismod |= S3C2410_IISMOD_MSB;
		break;
	case SND_SOC_DAIFMT_I2S:
229
		iismod &= ~S3C2410_IISMOD_MSB;
230 231 232 233 234 235
		break;
	default:
		return -EINVAL;
	}

	writel(iismod, s3c24xx_i2s.regs + S3C2410_IISMOD);
236
	pr_debug("hw_params w: IISMOD: %x \n", iismod);
237 238 239 240
	return 0;
}

static int s3c24xx_i2s_hw_params(struct snd_pcm_substream *substream,
241 242
				 struct snd_pcm_hw_params *params,
				 struct snd_soc_dai *dai)
243 244
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
245
	struct s3c_dma_params *dma_data;
246 247
	u32 iismod;

248
	pr_debug("Entered %s\n", __func__);
249 250

	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
251
		dma_data = &s3c24xx_i2s_pcm_stereo_out;
252
	else
253 254
		dma_data = &s3c24xx_i2s_pcm_stereo_in;

255
	snd_soc_dai_set_dma_data(rtd->cpu_dai, substream, dma_data);
256 257 258

	/* Working copies of register */
	iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD);
259
	pr_debug("hw_params r: IISMOD: %x\n", iismod);
260 261 262

	switch (params_format(params)) {
	case SNDRV_PCM_FORMAT_S8:
263
		iismod &= ~S3C2410_IISMOD_16BIT;
264
		dma_data->dma_size = 1;
265 266 267
		break;
	case SNDRV_PCM_FORMAT_S16_LE:
		iismod |= S3C2410_IISMOD_16BIT;
268
		dma_data->dma_size = 2;
269
		break;
270 271
	default:
		return -EINVAL;
272 273 274
	}

	writel(iismod, s3c24xx_i2s.regs + S3C2410_IISMOD);
275
	pr_debug("hw_params w: IISMOD: %x\n", iismod);
276 277 278
	return 0;
}

279 280
static int s3c24xx_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
			       struct snd_soc_dai *dai)
281 282
{
	int ret = 0;
283
	struct s3c_dma_params *dma_data =
284
		snd_soc_dai_get_dma_data(dai, substream);
285

286
	pr_debug("Entered %s\n", __func__);
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_RESUME:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
		if (!s3c24xx_snd_is_clkmaster()) {
			ret = s3c24xx_snd_lrsync();
			if (ret)
				goto exit_err;
		}

		if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
			s3c24xx_snd_rxctrl(1);
		else
			s3c24xx_snd_txctrl(1);
302

303
		s3c2410_dma_ctrl(dma_data->channel, S3C2410_DMAOP_STARTED);
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_SUSPEND:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
		if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
			s3c24xx_snd_rxctrl(0);
		else
			s3c24xx_snd_txctrl(0);
		break;
	default:
		ret = -EINVAL;
		break;
	}

exit_err:
	return ret;
}

/*
 * Set S3C24xx Clock source
 */
325
static int s3c24xx_i2s_set_sysclk(struct snd_soc_dai *cpu_dai,
326 327 328 329
	int clk_id, unsigned int freq, int dir)
{
	u32 iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD);

330
	pr_debug("Entered %s\n", __func__);
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

	iismod &= ~S3C2440_IISMOD_MPLL;

	switch (clk_id) {
	case S3C24XX_CLKSRC_PCLK:
		break;
	case S3C24XX_CLKSRC_MPLL:
		iismod |= S3C2440_IISMOD_MPLL;
		break;
	default:
		return -EINVAL;
	}

	writel(iismod, s3c24xx_i2s.regs + S3C2410_IISMOD);
	return 0;
}

/*
 * Set S3C24xx Clock dividers
 */
351
static int s3c24xx_i2s_set_clkdiv(struct snd_soc_dai *cpu_dai,
352 353 354 355
	int div_id, int div)
{
	u32 reg;

356
	pr_debug("Entered %s\n", __func__);
357 358

	switch (div_id) {
359
	case S3C24XX_DIV_BCLK:
360 361 362
		reg = readl(s3c24xx_i2s.regs + S3C2410_IISMOD) & ~S3C2410_IISMOD_FS_MASK;
		writel(reg | div, s3c24xx_i2s.regs + S3C2410_IISMOD);
		break;
363
	case S3C24XX_DIV_MCLK:
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
		reg = readl(s3c24xx_i2s.regs + S3C2410_IISMOD) & ~(S3C2410_IISMOD_384FS);
		writel(reg | div, s3c24xx_i2s.regs + S3C2410_IISMOD);
		break;
	case S3C24XX_DIV_PRESCALER:
		writel(div, s3c24xx_i2s.regs + S3C2410_IISPSR);
		reg = readl(s3c24xx_i2s.regs + S3C2410_IISCON);
		writel(reg | S3C2410_IISCON_PSCEN, s3c24xx_i2s.regs + S3C2410_IISCON);
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

/*
 * To avoid duplicating clock code, allow machine driver to
 * get the clockrate from here.
 */
u32 s3c24xx_i2s_get_clockrate(void)
{
	return clk_get_rate(s3c24xx_i2s.iis_clk);
}
EXPORT_SYMBOL_GPL(s3c24xx_i2s_get_clockrate);

389
static int s3c24xx_i2s_probe(struct snd_soc_dai *dai)
390
{
391
	pr_debug("Entered %s\n", __func__);
392 393 394 395 396

	s3c24xx_i2s.regs = ioremap(S3C2410_PA_IIS, 0x100);
	if (s3c24xx_i2s.regs == NULL)
		return -ENXIO;

397
	s3c24xx_i2s.iis_clk = clk_get(dai->dev, "iis");
398
	if (s3c24xx_i2s.iis_clk == NULL) {
399
		pr_err("failed to get iis_clock\n");
400
		iounmap(s3c24xx_i2s.regs);
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
		return -ENODEV;
	}
	clk_enable(s3c24xx_i2s.iis_clk);

	/* Configure the I2S pins in correct mode */
	s3c2410_gpio_cfgpin(S3C2410_GPE0, S3C2410_GPE0_I2SLRCK);
	s3c2410_gpio_cfgpin(S3C2410_GPE1, S3C2410_GPE1_I2SSCLK);
	s3c2410_gpio_cfgpin(S3C2410_GPE2, S3C2410_GPE2_CDCLK);
	s3c2410_gpio_cfgpin(S3C2410_GPE3, S3C2410_GPE3_I2SSDI);
	s3c2410_gpio_cfgpin(S3C2410_GPE4, S3C2410_GPE4_I2SSDO);

	writel(S3C2410_IISCON_IISEN, s3c24xx_i2s.regs + S3C2410_IISCON);

	s3c24xx_snd_txctrl(0);
	s3c24xx_snd_rxctrl(0);

	return 0;
}

420
#ifdef CONFIG_PM
421
static int s3c24xx_i2s_suspend(struct snd_soc_dai *cpu_dai)
422
{
423
	pr_debug("Entered %s\n", __func__);
424

425 426 427 428 429 430 431 432 433 434
	s3c24xx_i2s.iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON);
	s3c24xx_i2s.iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD);
	s3c24xx_i2s.iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON);
	s3c24xx_i2s.iispsr = readl(s3c24xx_i2s.regs + S3C2410_IISPSR);

	clk_disable(s3c24xx_i2s.iis_clk);

	return 0;
}

435
static int s3c24xx_i2s_resume(struct snd_soc_dai *cpu_dai)
436
{
437
	pr_debug("Entered %s\n", __func__);
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
	clk_enable(s3c24xx_i2s.iis_clk);

	writel(s3c24xx_i2s.iiscon, s3c24xx_i2s.regs + S3C2410_IISCON);
	writel(s3c24xx_i2s.iismod, s3c24xx_i2s.regs + S3C2410_IISMOD);
	writel(s3c24xx_i2s.iisfcon, s3c24xx_i2s.regs + S3C2410_IISFCON);
	writel(s3c24xx_i2s.iispsr, s3c24xx_i2s.regs + S3C2410_IISPSR);

	return 0;
}
#else
#define s3c24xx_i2s_suspend NULL
#define s3c24xx_i2s_resume NULL
#endif


453 454 455 456 457
#define S3C24XX_I2S_RATES \
	(SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 | SNDRV_PCM_RATE_16000 | \
	SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
	SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)

458 459 460 461 462 463 464 465
static struct snd_soc_dai_ops s3c24xx_i2s_dai_ops = {
	.trigger	= s3c24xx_i2s_trigger,
	.hw_params	= s3c24xx_i2s_hw_params,
	.set_fmt	= s3c24xx_i2s_set_fmt,
	.set_clkdiv	= s3c24xx_i2s_set_clkdiv,
	.set_sysclk	= s3c24xx_i2s_set_sysclk,
};

466
static struct snd_soc_dai_driver s3c24xx_i2s_dai = {
467
	.probe = s3c24xx_i2s_probe,
468 469
	.suspend = s3c24xx_i2s_suspend,
	.resume = s3c24xx_i2s_resume,
470 471 472 473 474 475 476 477 478 479
	.playback = {
		.channels_min = 2,
		.channels_max = 2,
		.rates = S3C24XX_I2S_RATES,
		.formats = SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE,},
	.capture = {
		.channels_min = 2,
		.channels_max = 2,
		.rates = S3C24XX_I2S_RATES,
		.formats = SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE,},
480
	.ops = &s3c24xx_i2s_dai_ops,
481
};
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501

static __devinit int s3c24xx_iis_dev_probe(struct platform_device *pdev)
{
	return snd_soc_register_dai(&pdev->dev, &s3c24xx_i2s_dai);
}

static __devexit int s3c24xx_iis_dev_remove(struct platform_device *pdev)
{
	snd_soc_unregister_dai(&pdev->dev);
	return 0;
}

static struct platform_driver s3c24xx_iis_driver = {
	.probe  = s3c24xx_iis_dev_probe,
	.remove = s3c24xx_iis_dev_remove,
	.driver = {
		.name = "s3c24xx-iis",
		.owner = THIS_MODULE,
	},
};
502

503
static int __init s3c24xx_i2s_init(void)
M
Mark Brown 已提交
504
{
505
	return platform_driver_register(&s3c24xx_iis_driver);
M
Mark Brown 已提交
506 507 508 509 510
}
module_init(s3c24xx_i2s_init);

static void __exit s3c24xx_i2s_exit(void)
{
511
	platform_driver_unregister(&s3c24xx_iis_driver);
M
Mark Brown 已提交
512 513 514
}
module_exit(s3c24xx_i2s_exit);

515 516 517 518
/* Module information */
MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
MODULE_DESCRIPTION("s3c24xx I2S SoC Interface");
MODULE_LICENSE("GPL");
519
MODULE_ALIAS("platform:s3c24xx-iis");