psc-ac97.c 12.1 KB
Newer Older
1 2 3
/*
 * Au12x0/Au1550 PSC ALSA ASoC audio support.
 *
M
Manuel Lauss 已提交
4 5
 * (c) 2007-2009 MSC Vertriebsges.m.b.H.,
 *	Manuel Lauss <manuel.lauss@gmail.com>
6 7 8 9 10 11 12 13 14 15 16
 *
 * 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.
 *
 * Au1xxx-PSC AC97 glue.
 *
 */

#include <linux/init.h>
#include <linux/module.h>
17
#include <linux/slab.h>
18 19
#include <linux/device.h>
#include <linux/delay.h>
M
Manuel Lauss 已提交
20
#include <linux/mutex.h>
21 22 23 24 25 26 27 28 29 30
#include <linux/suspend.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/initval.h>
#include <sound/soc.h>
#include <asm/mach-au1x00/au1000.h>
#include <asm/mach-au1x00/au1xxx_psc.h>

#include "psc.h"

M
Manuel Lauss 已提交
31 32 33
/* how often to retry failed codec register reads/writes */
#define AC97_RW_RETRIES	5

34 35 36 37 38 39 40 41 42 43
#define AC97_DIR	\
	(SND_SOC_DAIDIR_PLAYBACK | SND_SOC_DAIDIR_CAPTURE)

#define AC97_RATES	\
	SNDRV_PCM_RATE_8000_48000

#define AC97_FMTS	\
	(SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3BE)

#define AC97PCR_START(stype)	\
44
	((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97PCR_TS : PSC_AC97PCR_RS)
45
#define AC97PCR_STOP(stype)	\
46
	((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97PCR_TP : PSC_AC97PCR_RP)
47
#define AC97PCR_CLRFIFO(stype)	\
48
	((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97PCR_TC : PSC_AC97PCR_RC)
49

M
Manuel Lauss 已提交
50
#define AC97STAT_BUSY(stype)	\
51
	((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97STAT_TB : PSC_AC97STAT_RB)
M
Manuel Lauss 已提交
52

53 54 55
/* instance data. There can be only one, MacLeod!!!! */
static struct au1xpsc_audio_data *au1xpsc_ac97_workdata;

M
Manuel Lauss 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
#if 0

/* this could theoretically work, but ac97->bus->card->private_data can be NULL
 * when snd_ac97_mixer() is called; I don't know if the rest further down the
 * chain are always valid either.
 */
static inline struct au1xpsc_audio_data *ac97_to_pscdata(struct snd_ac97 *x)
{
	struct snd_soc_card *c = x->bus->card->private_data;
	return snd_soc_dai_get_drvdata(c->rtd->cpu_dai);
}

#else

#define ac97_to_pscdata(x)	au1xpsc_ac97_workdata

#endif

74 75 76 77
/* AC97 controller reads codec register */
static unsigned short au1xpsc_ac97_read(struct snd_ac97 *ac97,
					unsigned short reg)
{
M
Manuel Lauss 已提交
78
	struct au1xpsc_audio_data *pscdata = ac97_to_pscdata(ac97);
79 80
	unsigned short retry, tmo;
	unsigned long data;
81

M
Manuel Lauss 已提交
82
	au_writel(PSC_AC97EVNT_CD, AC97_EVNT(pscdata));
83 84
	au_sync();

M
Manuel Lauss 已提交
85 86 87 88 89 90 91 92
	retry = AC97_RW_RETRIES;
	do {
		mutex_lock(&pscdata->lock);

		au_writel(PSC_AC97CDC_RD | PSC_AC97CDC_INDX(reg),
			  AC97_CDC(pscdata));
		au_sync();

93 94 95 96 97 98
		tmo = 20;
		do {
			udelay(21);
			if (au_readl(AC97_EVNT(pscdata)) & PSC_AC97EVNT_CD)
				break;
		} while (--tmo);
99

100
		data = au_readl(AC97_CDC(pscdata));
101

M
Manuel Lauss 已提交
102 103 104 105
		au_writel(PSC_AC97EVNT_CD, AC97_EVNT(pscdata));
		au_sync();

		mutex_unlock(&pscdata->lock);
106 107 108 109

		if (reg != ((data >> 16) & 0x7f))
			tmo = 1;	/* wrong register, try again */

M
Manuel Lauss 已提交
110
	} while (--retry && !tmo);
111

112
	return retry ? data & 0xffff : 0xffff;
113 114 115 116 117 118
}

/* AC97 controller writes to codec register */
static void au1xpsc_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
				unsigned short val)
{
M
Manuel Lauss 已提交
119
	struct au1xpsc_audio_data *pscdata = ac97_to_pscdata(ac97);
M
Manuel Lauss 已提交
120
	unsigned int tmo, retry;
121

M
Manuel Lauss 已提交
122
	au_writel(PSC_AC97EVNT_CD, AC97_EVNT(pscdata));
123
	au_sync();
M
Manuel Lauss 已提交
124 125 126 127 128 129 130

	retry = AC97_RW_RETRIES;
	do {
		mutex_lock(&pscdata->lock);

		au_writel(PSC_AC97CDC_INDX(reg) | (val & 0xffff),
			  AC97_CDC(pscdata));
131 132
		au_sync();

133 134 135 136 137 138
		tmo = 20;
		do {
			udelay(21);
			if (au_readl(AC97_EVNT(pscdata)) & PSC_AC97EVNT_CD)
				break;
		} while (--tmo);
M
Manuel Lauss 已提交
139 140 141 142 143 144

		au_writel(PSC_AC97EVNT_CD, AC97_EVNT(pscdata));
		au_sync();

		mutex_unlock(&pscdata->lock);
	} while (--retry && !tmo);
145 146 147 148 149
}

/* AC97 controller asserts a warm reset */
static void au1xpsc_ac97_warm_reset(struct snd_ac97 *ac97)
{
M
Manuel Lauss 已提交
150
	struct au1xpsc_audio_data *pscdata = ac97_to_pscdata(ac97);
151 152 153 154 155 156 157 158 159 160

	au_writel(PSC_AC97RST_SNC, AC97_RST(pscdata));
	au_sync();
	msleep(10);
	au_writel(0, AC97_RST(pscdata));
	au_sync();
}

static void au1xpsc_ac97_cold_reset(struct snd_ac97 *ac97)
{
M
Manuel Lauss 已提交
161
	struct au1xpsc_audio_data *pscdata = ac97_to_pscdata(ac97);
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
	int i;

	/* disable PSC during cold reset */
	au_writel(0, AC97_CFG(au1xpsc_ac97_workdata));
	au_sync();
	au_writel(PSC_CTRL_DISABLE, PSC_CTRL(pscdata));
	au_sync();

	/* issue cold reset */
	au_writel(PSC_AC97RST_RST, AC97_RST(pscdata));
	au_sync();
	msleep(500);
	au_writel(0, AC97_RST(pscdata));
	au_sync();

	/* enable PSC */
	au_writel(PSC_CTRL_ENABLE, PSC_CTRL(pscdata));
	au_sync();

	/* wait for PSC to indicate it's ready */
M
Manuel Lauss 已提交
182
	i = 1000;
183
	while (!((au_readl(AC97_STAT(pscdata)) & PSC_AC97STAT_SR)) && (--i))
M
Manuel Lauss 已提交
184
		msleep(1);
185 186 187 188 189 190 191 192 193 194 195

	if (i == 0) {
		printk(KERN_ERR "au1xpsc-ac97: PSC not ready!\n");
		return;
	}

	/* enable the ac97 function */
	au_writel(pscdata->cfg | PSC_AC97CFG_DE_ENABLE, AC97_CFG(pscdata));
	au_sync();

	/* wait for AC97 core to become ready */
M
Manuel Lauss 已提交
196
	i = 1000;
197
	while (!((au_readl(AC97_STAT(pscdata)) & PSC_AC97STAT_DR)) && (--i))
M
Manuel Lauss 已提交
198
		msleep(1);
199 200 201 202 203
	if (i == 0)
		printk(KERN_ERR "au1xpsc-ac97: AC97 ctrl not ready\n");
}

/* AC97 controller operations */
204
static struct snd_ac97_bus_ops psc_ac97_ops = {
205 206 207 208 209 210 211
	.read		= au1xpsc_ac97_read,
	.write		= au1xpsc_ac97_write,
	.reset		= au1xpsc_ac97_cold_reset,
	.warm_reset	= au1xpsc_ac97_warm_reset,
};

static int au1xpsc_ac97_hw_params(struct snd_pcm_substream *substream,
212 213
				  struct snd_pcm_hw_params *params,
				  struct snd_soc_dai *dai)
214
{
M
Manuel Lauss 已提交
215
	struct au1xpsc_audio_data *pscdata = snd_soc_dai_get_drvdata(dai);
M
Manuel Lauss 已提交
216
	unsigned long r, ro, stat;
217
	int chans, t, stype = substream->stream;
218 219 220

	chans = params_channels(params);

M
Manuel Lauss 已提交
221
	r = ro = au_readl(AC97_CFG(pscdata));
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
	stat = au_readl(AC97_STAT(pscdata));

	/* already active? */
	if (stat & (PSC_AC97STAT_TB | PSC_AC97STAT_RB)) {
		/* reject parameters not currently set up */
		if ((PSC_AC97CFG_GET_LEN(r) != params->msbits) ||
		    (pscdata->rate != params_rate(params)))
			return -EINVAL;
	} else {

		/* set sample bitdepth: REG[24:21]=(BITS-2)/2 */
		r &= ~PSC_AC97CFG_LEN_MASK;
		r |= PSC_AC97CFG_SET_LEN(params->msbits);

		/* channels: enable slots for front L/R channel */
237
		if (stype == SNDRV_PCM_STREAM_PLAYBACK) {
238 239 240 241 242 243 244 245 246
			r &= ~PSC_AC97CFG_TXSLOT_MASK;
			r |= PSC_AC97CFG_TXSLOT_ENA(3);
			r |= PSC_AC97CFG_TXSLOT_ENA(4);
		} else {
			r &= ~PSC_AC97CFG_RXSLOT_MASK;
			r |= PSC_AC97CFG_RXSLOT_ENA(3);
			r |= PSC_AC97CFG_RXSLOT_ENA(4);
		}

M
Manuel Lauss 已提交
247 248 249 250 251 252 253 254 255 256 257 258
		/* do we need to poke the hardware? */
		if (!(r ^ ro))
			goto out;

		/* ac97 engine is about to be disabled */
		mutex_lock(&pscdata->lock);

		/* disable AC97 device controller first... */
		au_writel(r & ~PSC_AC97CFG_DE_ENABLE, AC97_CFG(pscdata));
		au_sync();

		/* ...wait for it... */
259 260 261 262 263 264
		t = 100;
		while ((au_readl(AC97_STAT(pscdata)) & PSC_AC97STAT_DR) && --t)
			msleep(1);

		if (!t)
			printk(KERN_ERR "PSC-AC97: can't disable!\n");
M
Manuel Lauss 已提交
265 266 267 268 269 270

		/* ...write config... */
		au_writel(r, AC97_CFG(pscdata));
		au_sync();

		/* ...enable the AC97 controller again... */
271 272 273
		au_writel(r | PSC_AC97CFG_DE_ENABLE, AC97_CFG(pscdata));
		au_sync();

M
Manuel Lauss 已提交
274
		/* ...and wait for ready bit */
275 276 277 278 279 280
		t = 100;
		while ((!(au_readl(AC97_STAT(pscdata)) & PSC_AC97STAT_DR)) && --t)
			msleep(1);

		if (!t)
			printk(KERN_ERR "PSC-AC97: can't enable!\n");
M
Manuel Lauss 已提交
281 282 283

		mutex_unlock(&pscdata->lock);

284 285 286 287
		pscdata->cfg = r;
		pscdata->rate = params_rate(params);
	}

M
Manuel Lauss 已提交
288
out:
289 290 291 292
	return 0;
}

static int au1xpsc_ac97_trigger(struct snd_pcm_substream *substream,
293
				int cmd, struct snd_soc_dai *dai)
294
{
M
Manuel Lauss 已提交
295
	struct au1xpsc_audio_data *pscdata = snd_soc_dai_get_drvdata(dai);
296
	int ret, stype = substream->stream;
297 298 299 300 301 302

	ret = 0;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_RESUME:
M
Manuel Lauss 已提交
303 304
		au_writel(AC97PCR_CLRFIFO(stype), AC97_PCR(pscdata));
		au_sync();
305 306 307 308 309 310 311
		au_writel(AC97PCR_START(stype), AC97_PCR(pscdata));
		au_sync();
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_SUSPEND:
		au_writel(AC97PCR_STOP(stype), AC97_PCR(pscdata));
		au_sync();
M
Manuel Lauss 已提交
312 313 314 315 316 317 318

		while (au_readl(AC97_STAT(pscdata)) & AC97STAT_BUSY(stype))
			asm volatile ("nop");

		au_writel(AC97PCR_CLRFIFO(stype), AC97_PCR(pscdata));
		au_sync();

319 320 321 322 323 324 325
		break;
	default:
		ret = -EINVAL;
	}
	return ret;
}

326 327 328 329 330 331 332 333
static int au1xpsc_ac97_startup(struct snd_pcm_substream *substream,
				struct snd_soc_dai *dai)
{
	struct au1xpsc_audio_data *pscdata = snd_soc_dai_get_drvdata(dai);
	snd_soc_dai_set_dma_data(dai, substream, &pscdata->dmaids[0]);
	return 0;
}

334
static int au1xpsc_ac97_probe(struct snd_soc_dai *dai)
335 336 337 338
{
	return au1xpsc_ac97_workdata ? 0 : -ENODEV;
}

339
static const struct snd_soc_dai_ops au1xpsc_ac97_dai_ops = {
340
	.startup	= au1xpsc_ac97_startup,
341 342 343 344
	.trigger	= au1xpsc_ac97_trigger,
	.hw_params	= au1xpsc_ac97_hw_params,
};

M
Manuel Lauss 已提交
345
static const struct snd_soc_dai_driver au1xpsc_ac97_dai_template = {
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
	.ac97_control		= 1,
	.probe			= au1xpsc_ac97_probe,
	.playback = {
		.rates		= AC97_RATES,
		.formats	= AC97_FMTS,
		.channels_min	= 2,
		.channels_max	= 2,
	},
	.capture = {
		.rates		= AC97_RATES,
		.formats	= AC97_FMTS,
		.channels_min	= 2,
		.channels_max	= 2,
	},
	.ops = &au1xpsc_ac97_dai_ops,
};

363 364 365 366
static const struct snd_soc_component_driver au1xpsc_ac97_component = {
	.name		= "au1xpsc-ac97",
};

367
static int au1xpsc_ac97_drvprobe(struct platform_device *pdev)
368 369
{
	int ret;
370
	struct resource *iores, *dmares;
371
	unsigned long sel;
372
	struct au1xpsc_audio_data *wd;
373

374 375
	wd = devm_kzalloc(&pdev->dev, sizeof(struct au1xpsc_audio_data),
			  GFP_KERNEL);
376
	if (!wd)
377 378
		return -ENOMEM;

379
	mutex_init(&wd->lock);
M
Manuel Lauss 已提交
380

381
	iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
382 383
	if (!iores)
		return -ENODEV;
384

385 386 387
	wd->mmio = devm_ioremap_resource(&pdev->dev, iores);
	if (IS_ERR(wd->mmio))
		return PTR_ERR(wd->mmio);
388

389 390
	dmares = platform_get_resource(pdev, IORESOURCE_DMA, 0);
	if (!dmares)
391
		return -EBUSY;
392
	wd->dmaids[SNDRV_PCM_STREAM_PLAYBACK] = dmares->start;
393

394 395
	dmares = platform_get_resource(pdev, IORESOURCE_DMA, 1);
	if (!dmares)
396
		return -EBUSY;
397
	wd->dmaids[SNDRV_PCM_STREAM_CAPTURE] = dmares->start;
398

399
	/* configuration: max dma trigger threshold, enable ac97 */
400 401
	wd->cfg = PSC_AC97CFG_RT_FIFO8 | PSC_AC97CFG_TT_FIFO8 |
		  PSC_AC97CFG_DE_ENABLE;
402

403 404 405
	/* preserve PSC clock source set up by platform	 */
	sel = au_readl(PSC_SEL(wd)) & PSC_SEL_CLK_MASK;
	au_writel(PSC_CTRL_DISABLE, PSC_CTRL(wd));
406
	au_sync();
407
	au_writel(0, PSC_SEL(wd));
408
	au_sync();
409
	au_writel(PSC_SEL_PS_AC97MODE | sel, PSC_SEL(wd));
410 411
	au_sync();

M
Manuel Lauss 已提交
412 413 414 415 416 417 418
	/* name the DAI like this device instance ("au1xpsc-ac97.PSCINDEX") */
	memcpy(&wd->dai_drv, &au1xpsc_ac97_dai_template,
	       sizeof(struct snd_soc_dai_driver));
	wd->dai_drv.name = dev_name(&pdev->dev);

	platform_set_drvdata(pdev, wd);

419 420 421 422
	ret = snd_soc_set_ac97_ops(&psc_ac97_ops);
	if (ret)
		return ret;

423 424
	ret = snd_soc_register_component(&pdev->dev, &au1xpsc_ac97_component,
					 &wd->dai_drv, 1);
425
	if (ret)
426
		return ret;
427

428 429
	au1xpsc_ac97_workdata = wd;
	return 0;
430 431
}

432
static int au1xpsc_ac97_drvremove(struct platform_device *pdev)
433
{
434 435
	struct au1xpsc_audio_data *wd = platform_get_drvdata(pdev);

436
	snd_soc_unregister_component(&pdev->dev);
437

438
	/* disable PSC completely */
439
	au_writel(0, AC97_CFG(wd));
440
	au_sync();
441
	au_writel(PSC_CTRL_DISABLE, PSC_CTRL(wd));
442 443
	au_sync();

444 445 446
	au1xpsc_ac97_workdata = NULL;	/* MDEV */

	return 0;
447 448
}

449 450
#ifdef CONFIG_PM
static int au1xpsc_ac97_drvsuspend(struct device *dev)
451
{
452 453
	struct au1xpsc_audio_data *wd = dev_get_drvdata(dev);

454
	/* save interesting registers and disable PSC */
455
	wd->pm[0] = au_readl(PSC_SEL(wd));
456

457
	au_writel(0, AC97_CFG(wd));
458
	au_sync();
459
	au_writel(PSC_CTRL_DISABLE, PSC_CTRL(wd));
460 461 462 463 464
	au_sync();

	return 0;
}

465
static int au1xpsc_ac97_drvresume(struct device *dev)
466
{
467 468
	struct au1xpsc_audio_data *wd = dev_get_drvdata(dev);

469
	/* restore PSC clock config */
470
	au_writel(wd->pm[0] | PSC_SEL_PS_AC97MODE, PSC_SEL(wd));
471 472 473 474 475 476 477 478 479
	au_sync();

	/* after this point the ac97 core will cold-reset the codec.
	 * During cold-reset the PSC is reinitialized and the last
	 * configuration set up in hw_params() is restored.
	 */
	return 0;
}

480 481 482
static struct dev_pm_ops au1xpscac97_pmops = {
	.suspend	= au1xpsc_ac97_drvsuspend,
	.resume		= au1xpsc_ac97_drvresume,
483 484
};

485 486 487 488 489 490 491 492 493 494
#define AU1XPSCAC97_PMOPS &au1xpscac97_pmops

#else

#define AU1XPSCAC97_PMOPS NULL

#endif

static struct platform_driver au1xpsc_ac97_driver = {
	.driver	= {
M
Manuel Lauss 已提交
495
		.name	= "au1xpsc_ac97",
496 497
		.owner	= THIS_MODULE,
		.pm	= AU1XPSCAC97_PMOPS,
498
	},
499
	.probe		= au1xpsc_ac97_drvprobe,
500
	.remove		= au1xpsc_ac97_drvremove,
501 502
};

503
module_platform_driver(au1xpsc_ac97_driver);
504 505 506

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Au12x0/Au1550 PSC AC97 ALSA ASoC audio driver");
507 508
MODULE_AUTHOR("Manuel Lauss");