mpc5200_dma.c 12.7 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
/*
 * Freescale MPC5200 PSC DMA
 * ALSA SoC Platform driver
 *
 * Copyright (C) 2008 Secret Lab Technologies Ltd.
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/of_device.h>
#include <linux/of_platform.h>
#include <linux/dma-mapping.h>

#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/initval.h>
#include <sound/soc.h>
#include <sound/soc-of-simple.h>

#include <sysdev/bestcomm/bestcomm.h>
#include <sysdev/bestcomm/gen_bd.h>
#include <asm/mpc52xx_psc.h>

#include "mpc5200_dma.h"

MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
MODULE_DESCRIPTION("Freescale MPC5200 PSC in DMA mode ASoC Driver");
MODULE_LICENSE("GPL");

/*
 * Interrupt handlers
 */
37
static irqreturn_t psc_dma_status_irq(int irq, void *_psc_dma)
38
{
39 40
	struct psc_dma *psc_dma = _psc_dma;
	struct mpc52xx_psc __iomem *regs = psc_dma->psc_regs;
41 42 43 44 45
	u16 isr;

	isr = in_be16(&regs->mpc52xx_psc_isr);

	/* Playback underrun error */
46 47
	if (psc_dma->playback.active && (isr & MPC52xx_PSC_IMR_TXEMP))
		psc_dma->stats.underrun_count++;
48 49

	/* Capture overrun error */
50 51
	if (psc_dma->capture.active && (isr & MPC52xx_PSC_IMR_ORERR))
		psc_dma->stats.overrun_count++;
52 53 54 55 56 57 58

	out_8(&regs->command, 4 << 4);	/* reset the error status */

	return IRQ_HANDLED;
}

/**
59
 * psc_dma_bcom_enqueue_next_buffer - Enqueue another audio buffer
60 61 62 63 64 65 66 67
 * @s: pointer to stream private data structure
 *
 * Enqueues another audio period buffer into the bestcomm queue.
 *
 * Note: The routine must only be called when there is space available in
 * the queue.  Otherwise the enqueue will fail and the audio ring buffer
 * will get out of sync
 */
68
static void psc_dma_bcom_enqueue_next_buffer(struct psc_dma_stream *s)
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
{
	struct bcom_bd *bd;

	/* Prepare and enqueue the next buffer descriptor */
	bd = bcom_prepare_next_buffer(s->bcom_task);
	bd->status = s->period_bytes;
	bd->data[0] = s->period_next_pt;
	bcom_submit_next_buffer(s->bcom_task, NULL);

	/* Update for next period */
	s->period_next_pt += s->period_bytes;
	if (s->period_next_pt >= s->period_end)
		s->period_next_pt = s->period_start;
}

/* Bestcomm DMA irq handler */
85
static irqreturn_t psc_dma_bcom_irq(int irq, void *_psc_dma_stream)
86
{
87
	struct psc_dma_stream *s = _psc_dma_stream;
88 89 90 91 92 93 94 95

	/* For each finished period, dequeue the completed period buffer
	 * and enqueue a new one in it's place. */
	while (bcom_buffer_done(s->bcom_task)) {
		bcom_retrieve_buffer(s->bcom_task, NULL, NULL);
		s->period_current_pt += s->period_bytes;
		if (s->period_current_pt >= s->period_end)
			s->period_current_pt = s->period_start;
96
		psc_dma_bcom_enqueue_next_buffer(s);
97 98 99 100 101 102 103 104 105 106 107 108
		bcom_enable(s->bcom_task);
	}

	/* If the stream is active, then also inform the PCM middle layer
	 * of the period finished event. */
	if (s->active)
		snd_pcm_period_elapsed(s->stream);

	return IRQ_HANDLED;
}

/**
109
 * psc_dma_startup: create a new substream
110 111 112 113 114 115
 *
 * This is the first function called when a stream is opened.
 *
 * If this is the first stream open, then grab the IRQ and program most of
 * the PSC registers.
 */
116
int psc_dma_startup(struct snd_pcm_substream *substream,
117 118 119
			   struct snd_soc_dai *dai)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
120
	struct psc_dma *psc_dma = rtd->dai->cpu_dai->private_data;
121 122
	int rc;

123
	dev_dbg(psc_dma->dev, "psc_dma_startup(substream=%p)\n", substream);
124

125 126
	if (!psc_dma->playback.active &&
	    !psc_dma->capture.active) {
127
		/* Setup the IRQs */
128 129 130 131 132 133 134 135
		rc = request_irq(psc_dma->irq, &psc_dma_status_irq, IRQF_SHARED,
				 "psc-dma-status", psc_dma);
		rc |= request_irq(psc_dma->capture.irq,
				  &psc_dma_bcom_irq, IRQF_SHARED,
				  "psc-dma-capture", &psc_dma->capture);
		rc |= request_irq(psc_dma->playback.irq,
				  &psc_dma_bcom_irq, IRQF_SHARED,
				  "psc-dma-playback", &psc_dma->playback);
136
		if (rc) {
137 138 139 140 141
			free_irq(psc_dma->irq, psc_dma);
			free_irq(psc_dma->capture.irq,
				 &psc_dma->capture);
			free_irq(psc_dma->playback.irq,
				 &psc_dma->playback);
142 143 144 145 146 147 148
			return -ENODEV;
		}
	}

	return 0;
}

149
int psc_dma_hw_free(struct snd_pcm_substream *substream,
150 151 152 153 154 155 156
			   struct snd_soc_dai *dai)
{
	snd_pcm_set_runtime_buffer(substream, NULL);
	return 0;
}

/**
157
 * psc_dma_trigger: start and stop the DMA transfer.
158 159 160 161
 *
 * This function is called by ALSA to start, stop, pause, and resume the DMA
 * transfer of data.
 */
162
int psc_dma_trigger(struct snd_pcm_substream *substream, int cmd,
163 164 165
			   struct snd_soc_dai *dai)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
166
	struct psc_dma *psc_dma = rtd->dai->cpu_dai->private_data;
167
	struct snd_pcm_runtime *runtime = substream->runtime;
168 169
	struct psc_dma_stream *s;
	struct mpc52xx_psc __iomem *regs = psc_dma->psc_regs;
170 171 172 173 174
	u16 imr;
	u8 psc_cmd;
	unsigned long flags;

	if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE)
175
		s = &psc_dma->capture;
176
	else
177
		s = &psc_dma->playback;
178

179
	dev_dbg(psc_dma->dev, "psc_dma_trigger(substream=%p, cmd=%i)"
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
		" stream_id=%i\n",
		substream, cmd, substream->pstr->stream);

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
		s->period_bytes = frames_to_bytes(runtime,
						  runtime->period_size);
		s->period_start = virt_to_phys(runtime->dma_area);
		s->period_end = s->period_start +
				(s->period_bytes * runtime->periods);
		s->period_next_pt = s->period_start;
		s->period_current_pt = s->period_start;
		s->active = 1;

		/* First; reset everything */
		if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE) {
			out_8(&regs->command, MPC52xx_PSC_RST_RX);
			out_8(&regs->command, MPC52xx_PSC_RST_ERR_STAT);
		} else {
			out_8(&regs->command, MPC52xx_PSC_RST_TX);
			out_8(&regs->command, MPC52xx_PSC_RST_ERR_STAT);
		}

		/* Next, fill up the bestcomm bd queue and enable DMA.
		 * This will begin filling the PSC's fifo. */
		if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE)
			bcom_gen_bd_rx_reset(s->bcom_task);
		else
			bcom_gen_bd_tx_reset(s->bcom_task);
		while (!bcom_queue_full(s->bcom_task))
210
			psc_dma_bcom_enqueue_next_buffer(s);
211 212
		bcom_enable(s->bcom_task);

213
		/* Due to errata in the dma mode; need to line up enabling
214 215 216
		 * the transmitter with a transition on the frame sync
		 * line */

217
		spin_lock_irqsave(&psc_dma->lock, flags);
218 219 220 221 222 223 224 225 226 227 228 229 230
		/* first make sure it is low */
		while ((in_8(&regs->ipcr_acr.ipcr) & 0x80) != 0)
			;
		/* then wait for the transition to high */
		while ((in_8(&regs->ipcr_acr.ipcr) & 0x80) == 0)
			;
		/* Finally, enable the PSC.
		 * Receiver must always be enabled; even when we only want
		 * transmit.  (see 15.3.2.3 of MPC5200B User's Guide) */
		psc_cmd = MPC52xx_PSC_RX_ENABLE;
		if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK)
			psc_cmd |= MPC52xx_PSC_TX_ENABLE;
		out_8(&regs->command, psc_cmd);
231
		spin_unlock_irqrestore(&psc_dma->lock, flags);
232 233 234 235 236 237 238

		break;

	case SNDRV_PCM_TRIGGER_STOP:
		/* Turn off the PSC */
		s->active = 0;
		if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE) {
239
			if (!psc_dma->playback.active) {
240 241 242 243 244 245 246
				out_8(&regs->command, 2 << 4);	/* reset rx */
				out_8(&regs->command, 3 << 4);	/* reset tx */
				out_8(&regs->command, 4 << 4);	/* reset err */
			}
		} else {
			out_8(&regs->command, 3 << 4);	/* reset tx */
			out_8(&regs->command, 4 << 4);	/* reset err */
247
			if (!psc_dma->capture.active)
248 249 250 251 252 253 254 255 256 257
				out_8(&regs->command, 2 << 4);	/* reset rx */
		}

		bcom_disable(s->bcom_task);
		while (!bcom_queue_empty(s->bcom_task))
			bcom_retrieve_buffer(s->bcom_task, NULL, NULL);

		break;

	default:
258
		dev_dbg(psc_dma->dev, "invalid command\n");
259 260 261 262 263
		return -EINVAL;
	}

	/* Update interrupt enable settings */
	imr = 0;
264
	if (psc_dma->playback.active)
265
		imr |= MPC52xx_PSC_IMR_TXEMP;
266
	if (psc_dma->capture.active)
267 268 269 270 271 272 273
		imr |= MPC52xx_PSC_IMR_ORERR;
	out_be16(&regs->isr_imr.imr, imr);

	return 0;
}

/**
274
 * psc_dma_shutdown: shutdown the data transfer on a stream
275 276 277
 *
 * Shutdown the PSC if there are no other substreams open.
 */
278
void psc_dma_shutdown(struct snd_pcm_substream *substream,
279 280 281
			     struct snd_soc_dai *dai)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
282
	struct psc_dma *psc_dma = rtd->dai->cpu_dai->private_data;
283

284
	dev_dbg(psc_dma->dev, "psc_dma_shutdown(substream=%p)\n", substream);
285 286 287 288 289

	/*
	 * If this is the last active substream, disable the PSC and release
	 * the IRQ.
	 */
290 291
	if (!psc_dma->playback.active &&
	    !psc_dma->capture.active) {
292 293

		/* Disable all interrupts and reset the PSC */
294 295 296 297 298
		out_be16(&psc_dma->psc_regs->isr_imr.imr, 0);
		out_8(&psc_dma->psc_regs->command, 3 << 4); /* reset tx */
		out_8(&psc_dma->psc_regs->command, 2 << 4); /* reset rx */
		out_8(&psc_dma->psc_regs->command, 1 << 4); /* reset mode */
		out_8(&psc_dma->psc_regs->command, 4 << 4); /* reset error */
299 300

		/* Release irqs */
301 302 303
		free_irq(psc_dma->irq, psc_dma);
		free_irq(psc_dma->capture.irq, &psc_dma->capture);
		free_irq(psc_dma->playback.irq, &psc_dma->playback);
304 305 306 307 308 309 310 311 312 313 314
	}
}

/* ---------------------------------------------------------------------
 * The PSC DMA 'ASoC platform' driver
 *
 * Can be referenced by an 'ASoC machine' driver
 * This driver only deals with the audio bus; it doesn't have any
 * interaction with the attached codec
 */

315
static const struct snd_pcm_hardware psc_dma_pcm_hardware = {
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
	.info = SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID |
		SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER |
		SNDRV_PCM_INFO_BATCH,
	.formats = SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_BE |
		   SNDRV_PCM_FMTBIT_S24_BE | SNDRV_PCM_FMTBIT_S32_BE,
	.rate_min = 8000,
	.rate_max = 48000,
	.channels_min = 2,
	.channels_max = 2,
	.period_bytes_max	= 1024 * 1024,
	.period_bytes_min	= 32,
	.periods_min		= 2,
	.periods_max		= 256,
	.buffer_bytes_max	= 2 * 1024 * 1024,
	.fifo_size		= 0,
};

333
static int psc_dma_pcm_open(struct snd_pcm_substream *substream)
334 335
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
336 337
	struct psc_dma *psc_dma = rtd->dai->cpu_dai->private_data;
	struct psc_dma_stream *s;
338

339
	dev_dbg(psc_dma->dev, "psc_dma_pcm_open(substream=%p)\n", substream);
340 341

	if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE)
342
		s = &psc_dma->capture;
343
	else
344
		s = &psc_dma->playback;
345

346
	snd_soc_set_runtime_hwparams(substream, &psc_dma_pcm_hardware);
347 348 349 350 351

	s->stream = substream;
	return 0;
}

352
static int psc_dma_pcm_close(struct snd_pcm_substream *substream)
353 354
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
355 356
	struct psc_dma *psc_dma = rtd->dai->cpu_dai->private_data;
	struct psc_dma_stream *s;
357

358
	dev_dbg(psc_dma->dev, "psc_dma_pcm_close(substream=%p)\n", substream);
359 360

	if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE)
361
		s = &psc_dma->capture;
362
	else
363
		s = &psc_dma->playback;
364 365 366 367 368 369

	s->stream = NULL;
	return 0;
}

static snd_pcm_uframes_t
370
psc_dma_pcm_pointer(struct snd_pcm_substream *substream)
371 372
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
373 374
	struct psc_dma *psc_dma = rtd->dai->cpu_dai->private_data;
	struct psc_dma_stream *s;
375 376 377
	dma_addr_t count;

	if (substream->pstr->stream == SNDRV_PCM_STREAM_CAPTURE)
378
		s = &psc_dma->capture;
379
	else
380
		s = &psc_dma->playback;
381 382 383 384 385 386

	count = s->period_current_pt - s->period_start;

	return bytes_to_frames(substream->runtime, count);
}

387 388 389
static struct snd_pcm_ops psc_dma_pcm_ops = {
	.open		= psc_dma_pcm_open,
	.close		= psc_dma_pcm_close,
390
	.ioctl		= snd_pcm_lib_ioctl,
391
	.pointer	= psc_dma_pcm_pointer,
392 393
};

394 395
static u64 psc_dma_pcm_dmamask = 0xffffffff;
static int psc_dma_pcm_new(struct snd_card *card, struct snd_soc_dai *dai,
396 397 398
			   struct snd_pcm *pcm)
{
	struct snd_soc_pcm_runtime *rtd = pcm->private_data;
399
	size_t size = psc_dma_pcm_hardware.buffer_bytes_max;
400 401
	int rc = 0;

402
	dev_dbg(rtd->socdev->dev, "psc_dma_pcm_new(card=%p, dai=%p, pcm=%p)\n",
403 404 405
		card, dai, pcm);

	if (!card->dev->dma_mask)
406
		card->dev->dma_mask = &psc_dma_pcm_dmamask;
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
	if (!card->dev->coherent_dma_mask)
		card->dev->coherent_dma_mask = 0xffffffff;

	if (pcm->streams[0].substream) {
		rc = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, pcm->dev, size,
					&pcm->streams[0].substream->dma_buffer);
		if (rc)
			goto playback_alloc_err;
	}

	if (pcm->streams[1].substream) {
		rc = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, pcm->dev, size,
					&pcm->streams[1].substream->dma_buffer);
		if (rc)
			goto capture_alloc_err;
	}

	return 0;

 capture_alloc_err:
	if (pcm->streams[0].substream)
		snd_dma_free_pages(&pcm->streams[0].substream->dma_buffer);
 playback_alloc_err:
	dev_err(card->dev, "Cannot allocate buffer(s)\n");
	return -ENOMEM;
}

434
static void psc_dma_pcm_free(struct snd_pcm *pcm)
435 436 437 438 439
{
	struct snd_soc_pcm_runtime *rtd = pcm->private_data;
	struct snd_pcm_substream *substream;
	int stream;

440
	dev_dbg(rtd->socdev->dev, "psc_dma_pcm_free(pcm=%p)\n", pcm);
441 442 443 444 445 446 447 448 449 450 451

	for (stream = 0; stream < 2; stream++) {
		substream = pcm->streams[stream].substream;
		if (substream) {
			snd_dma_free_pages(&substream->dma_buffer);
			substream->dma_buffer.area = NULL;
			substream->dma_buffer.addr = 0;
		}
	}
}

452
struct snd_soc_platform psc_dma_pcm_soc_platform = {
453
	.name		= "mpc5200-psc-audio",
454 455 456
	.pcm_ops	= &psc_dma_pcm_ops,
	.pcm_new	= &psc_dma_pcm_new,
	.pcm_free	= &psc_dma_pcm_free,
457 458
};