s3c-dma.c 12.2 KB
Newer Older
1
/*
2
 * s3c-dma.c  --  ALSA Soc Audio Layer
3 4 5 6
 *
 * (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
 *	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/module.h>
#include <linux/init.h>
19
#include <linux/io.h>
20 21 22 23 24 25 26 27 28 29
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/dma-mapping.h>

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

#include <asm/dma.h>
30 31
#include <mach/hardware.h>
#include <mach/dma.h>
32

33
#include "s3c-dma.h"
34

35
static const struct snd_pcm_hardware s3c_dma_hardware = {
36 37 38
	.info			= SNDRV_PCM_INFO_INTERLEAVED |
				    SNDRV_PCM_INFO_BLOCK_TRANSFER |
				    SNDRV_PCM_INFO_MMAP |
39 40 41
				    SNDRV_PCM_INFO_MMAP_VALID |
				    SNDRV_PCM_INFO_PAUSE |
				    SNDRV_PCM_INFO_RESUME,
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
	.formats		= SNDRV_PCM_FMTBIT_S16_LE |
				    SNDRV_PCM_FMTBIT_U16_LE |
				    SNDRV_PCM_FMTBIT_U8 |
				    SNDRV_PCM_FMTBIT_S8,
	.channels_min		= 2,
	.channels_max		= 2,
	.buffer_bytes_max	= 128*1024,
	.period_bytes_min	= PAGE_SIZE,
	.period_bytes_max	= PAGE_SIZE*2,
	.periods_min		= 2,
	.periods_max		= 128,
	.fifo_size		= 32,
};

struct s3c24xx_runtime_data {
	spinlock_t lock;
	int state;
	unsigned int dma_loaded;
	unsigned int dma_limit;
	unsigned int dma_period;
	dma_addr_t dma_start;
	dma_addr_t dma_pos;
	dma_addr_t dma_end;
65
	struct s3c_dma_params *params;
66 67
};

68
/* s3c_dma_enqueue
69 70 71 72
 *
 * place a dma buffer onto the queue for the dma system
 * to handle.
*/
73
static void s3c_dma_enqueue(struct snd_pcm_substream *substream)
74 75 76
{
	struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
	dma_addr_t pos = prtd->dma_pos;
77
	unsigned int limit;
78 79
	int ret;

80
	pr_debug("Entered %s\n", __func__);
81

82
	if (s3c_dma_has_circular())
83
		limit = (prtd->dma_end - prtd->dma_start) / prtd->dma_period;
84
	else
85 86
		limit = prtd->dma_limit;

87 88
	pr_debug("%s: loaded %d, limit %d\n",
				__func__, prtd->dma_loaded, limit);
89 90

	while (prtd->dma_loaded < limit) {
91 92
		unsigned long len = prtd->dma_period;

93
		pr_debug("dma_loaded: %d\n", prtd->dma_loaded);
94 95 96

		if ((pos + len) > prtd->dma_end) {
			len  = prtd->dma_end - pos;
97
			pr_debug(KERN_DEBUG "%s: corrected dma len %ld\n",
98
			       __func__, len);
99 100
		}

101
		ret = s3c2410_dma_enqueue(prtd->params->channel,
102
			substream, pos, len);
103 104 105 106 107 108 109 110 111 112 113 114 115 116

		if (ret == 0) {
			prtd->dma_loaded++;
			pos += prtd->dma_period;
			if (pos >= prtd->dma_end)
				pos = prtd->dma_start;
		} else
			break;
	}

	prtd->dma_pos = pos;
}

static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan *channel,
117 118
				void *dev_id, int size,
				enum s3c2410_dma_buffresult result)
119 120
{
	struct snd_pcm_substream *substream = dev_id;
121
	struct s3c24xx_runtime_data *prtd;
122

123
	pr_debug("Entered %s\n", __func__);
124 125 126 127

	if (result == S3C2410_RES_ABORT || result == S3C2410_RES_ERR)
		return;

128
	prtd = substream->runtime->private_data;
129

130 131 132 133
	if (substream)
		snd_pcm_period_elapsed(substream);

	spin_lock(&prtd->lock);
134
	if (prtd->state & ST_RUNNING && !s3c_dma_has_circular()) {
135
		prtd->dma_loaded--;
136
		s3c_dma_enqueue(substream);
137 138 139 140 141
	}

	spin_unlock(&prtd->lock);
}

142
static int s3c_dma_hw_params(struct snd_pcm_substream *substream,
143 144 145 146 147 148
	struct snd_pcm_hw_params *params)
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct s3c24xx_runtime_data *prtd = runtime->private_data;
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	unsigned long totbytes = params_buffer_bytes(params);
149
	struct s3c_dma_params *dma =
150
		snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
151
	int ret = 0;
152

153

154
	pr_debug("Entered %s\n", __func__);
155 156 157 158 159 160

	/* return if this is a bufferless transfer e.g.
	 * codec <--> BT codec or GSM modem -- lg FIXME */
	if (!dma)
		return 0;

161 162 163 164 165
	/* this may get called several times by oss emulation
	 * with different params -HW */
	if (prtd->params == NULL) {
		/* prepare DMA */
		prtd->params = dma;
166

167
		pr_debug("params %p, client %p, channel %d\n", prtd->params,
168
			prtd->params->client, prtd->params->channel);
169

170 171
		ret = s3c2410_dma_request(prtd->params->channel,
					  prtd->params->client, NULL);
172

173
		if (ret < 0) {
174
			printk(KERN_ERR "failed to get dma channel\n");
175 176
			return ret;
		}
177 178 179 180 181

		/* use the circular buffering if we have it available. */
		if (s3c_dma_has_circular())
			s3c2410_dma_setflags(prtd->params->channel,
					     S3C2410_DMAF_CIRCULAR);
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
	}

	s3c2410_dma_set_buffdone_fn(prtd->params->channel,
				    s3c24xx_audio_buffdone);

	snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);

	runtime->dma_bytes = totbytes;

	spin_lock_irq(&prtd->lock);
	prtd->dma_loaded = 0;
	prtd->dma_limit = runtime->hw.periods_min;
	prtd->dma_period = params_period_bytes(params);
	prtd->dma_start = runtime->dma_addr;
	prtd->dma_pos = prtd->dma_start;
	prtd->dma_end = prtd->dma_start + totbytes;
	spin_unlock_irq(&prtd->lock);

	return 0;
}

203
static int s3c_dma_hw_free(struct snd_pcm_substream *substream)
204 205 206
{
	struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;

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

	/* TODO - do we need to ensure DMA flushed */
	snd_pcm_set_runtime_buffer(substream, NULL);

212
	if (prtd->params) {
213 214 215 216 217 218 219
		s3c2410_dma_free(prtd->params->channel, prtd->params->client);
		prtd->params = NULL;
	}

	return 0;
}

220
static int s3c_dma_prepare(struct snd_pcm_substream *substream)
221 222 223 224
{
	struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
	int ret = 0;

225
	pr_debug("Entered %s\n", __func__);
226 227 228 229

	/* return if this is a bufferless transfer e.g.
	 * codec <--> BT codec or GSM modem -- lg FIXME */
	if (!prtd->params)
230
		return 0;
231

232 233 234 235
	/* channel needs configuring for mem=>device, increment memory addr,
	 * sync to pclk, half-word transfers to the IIS-FIFO. */
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
		s3c2410_dma_devconfig(prtd->params->channel,
236 237
				      S3C2410_DMASRC_MEM,
				      prtd->params->dma_addr);
238 239
	} else {
		s3c2410_dma_devconfig(prtd->params->channel,
240 241
				      S3C2410_DMASRC_HW,
				      prtd->params->dma_addr);
242 243
	}

244 245 246
	s3c2410_dma_config(prtd->params->channel,
			   prtd->params->dma_size);

247 248 249 250 251 252
	/* flush the DMA channel */
	s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_FLUSH);
	prtd->dma_loaded = 0;
	prtd->dma_pos = prtd->dma_start;

	/* enqueue dma buffers */
253
	s3c_dma_enqueue(substream);
254 255 256 257

	return ret;
}

258
static int s3c_dma_trigger(struct snd_pcm_substream *substream, int cmd)
259 260 261 262
{
	struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
	int ret = 0;

263
	pr_debug("Entered %s\n", __func__);
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291

	spin_lock(&prtd->lock);

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_RESUME:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
		prtd->state |= ST_RUNNING;
		s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_START);
		break;

	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_SUSPEND:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
		prtd->state &= ~ST_RUNNING;
		s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_STOP);
		break;

	default:
		ret = -EINVAL;
		break;
	}

	spin_unlock(&prtd->lock);

	return ret;
}

292
static snd_pcm_uframes_t
293
s3c_dma_pointer(struct snd_pcm_substream *substream)
294 295 296 297 298 299
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct s3c24xx_runtime_data *prtd = runtime->private_data;
	unsigned long res;
	dma_addr_t src, dst;

300
	pr_debug("Entered %s\n", __func__);
301 302 303 304 305 306 307 308 309 310 311

	spin_lock(&prtd->lock);
	s3c2410_dma_getposition(prtd->params->channel, &src, &dst);

	if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
		res = dst - prtd->dma_start;
	else
		res = src - prtd->dma_start;

	spin_unlock(&prtd->lock);

312
	pr_debug("Pointer %x %x\n", src, dst);
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327

	/* we seem to be getting the odd error from the pcm library due
	 * to out-of-bounds pointers. this is maybe due to the dma engine
	 * not having loaded the new values for the channel before being
	 * callled... (todo - fix )
	 */

	if (res >= snd_pcm_lib_buffer_bytes(substream)) {
		if (res == snd_pcm_lib_buffer_bytes(substream))
			res = 0;
	}

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

328
static int s3c_dma_open(struct snd_pcm_substream *substream)
329 330 331 332
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct s3c24xx_runtime_data *prtd;

333
	pr_debug("Entered %s\n", __func__);
334

335
	snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
336
	snd_soc_set_runtime_hwparams(substream, &s3c_dma_hardware);
337 338 339 340 341

	prtd = kzalloc(sizeof(struct s3c24xx_runtime_data), GFP_KERNEL);
	if (prtd == NULL)
		return -ENOMEM;

342 343
	spin_lock_init(&prtd->lock);

344 345 346 347
	runtime->private_data = prtd;
	return 0;
}

348
static int s3c_dma_close(struct snd_pcm_substream *substream)
349 350 351 352
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct s3c24xx_runtime_data *prtd = runtime->private_data;

353
	pr_debug("Entered %s\n", __func__);
354

355
	if (!prtd)
356
		pr_debug("s3c_dma_close called with prtd == NULL\n");
357

358 359
	kfree(prtd);

360 361 362
	return 0;
}

363
static int s3c_dma_mmap(struct snd_pcm_substream *substream,
364 365 366 367
	struct vm_area_struct *vma)
{
	struct snd_pcm_runtime *runtime = substream->runtime;

368
	pr_debug("Entered %s\n", __func__);
369 370

	return dma_mmap_writecombine(substream->pcm->card->dev, vma,
371 372 373
				     runtime->dma_area,
				     runtime->dma_addr,
				     runtime->dma_bytes);
374 375
}

376 377 378
static struct snd_pcm_ops s3c_dma_ops = {
	.open		= s3c_dma_open,
	.close		= s3c_dma_close,
379
	.ioctl		= snd_pcm_lib_ioctl,
380 381 382 383 384 385
	.hw_params	= s3c_dma_hw_params,
	.hw_free	= s3c_dma_hw_free,
	.prepare	= s3c_dma_prepare,
	.trigger	= s3c_dma_trigger,
	.pointer	= s3c_dma_pointer,
	.mmap		= s3c_dma_mmap,
386 387
};

388
static int s3c_preallocate_dma_buffer(struct snd_pcm *pcm, int stream)
389 390 391
{
	struct snd_pcm_substream *substream = pcm->streams[stream].substream;
	struct snd_dma_buffer *buf = &substream->dma_buffer;
392
	size_t size = s3c_dma_hardware.buffer_bytes_max;
393

394
	pr_debug("Entered %s\n", __func__);
395 396 397 398 399 400 401 402 403 404 405 406

	buf->dev.type = SNDRV_DMA_TYPE_DEV;
	buf->dev.dev = pcm->card->dev;
	buf->private_data = NULL;
	buf->area = dma_alloc_writecombine(pcm->card->dev, size,
					   &buf->addr, GFP_KERNEL);
	if (!buf->area)
		return -ENOMEM;
	buf->bytes = size;
	return 0;
}

407
static void s3c_dma_free_dma_buffers(struct snd_pcm *pcm)
408 409 410 411 412
{
	struct snd_pcm_substream *substream;
	struct snd_dma_buffer *buf;
	int stream;

413
	pr_debug("Entered %s\n", __func__);
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429

	for (stream = 0; stream < 2; stream++) {
		substream = pcm->streams[stream].substream;
		if (!substream)
			continue;

		buf = &substream->dma_buffer;
		if (!buf->area)
			continue;

		dma_free_writecombine(pcm->card->dev, buf->bytes,
				      buf->area, buf->addr);
		buf->area = NULL;
	}
}

430
static u64 s3c_dma_mask = DMA_BIT_MASK(32);
431

432
static int s3c_dma_new(struct snd_card *card,
433
	struct snd_soc_dai *dai, struct snd_pcm *pcm)
434 435 436
{
	int ret = 0;

437
	pr_debug("Entered %s\n", __func__);
438 439

	if (!card->dev->dma_mask)
440
		card->dev->dma_mask = &s3c_dma_mask;
441 442 443
	if (!card->dev->coherent_dma_mask)
		card->dev->coherent_dma_mask = 0xffffffff;

444
	if (dai->driver->playback.channels_min) {
445
		ret = s3c_preallocate_dma_buffer(pcm,
446 447 448 449 450
			SNDRV_PCM_STREAM_PLAYBACK);
		if (ret)
			goto out;
	}

451
	if (dai->driver->capture.channels_min) {
452
		ret = s3c_preallocate_dma_buffer(pcm,
453 454 455 456 457 458 459 460
			SNDRV_PCM_STREAM_CAPTURE);
		if (ret)
			goto out;
	}
 out:
	return ret;
}

461 462
static struct snd_soc_platform_driver s3c24xx_soc_platform = {
	.ops		= &s3c_dma_ops,
463 464
	.pcm_new	= s3c_dma_new,
	.pcm_free	= s3c_dma_free_dma_buffers,
465 466
};

467
static int __devinit s3c24xx_soc_platform_probe(struct platform_device *pdev)
M
Mark Brown 已提交
468
{
469
	return snd_soc_register_platform(&pdev->dev, &s3c24xx_soc_platform);
M
Mark Brown 已提交
470 471
}

472
static int __devexit s3c24xx_soc_platform_remove(struct platform_device *pdev)
M
Mark Brown 已提交
473
{
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
	snd_soc_unregister_platform(&pdev->dev);
	return 0;
}

static struct platform_driver s3c24xx_pcm_driver = {
	.driver = {
		.name = "s3c24xx-pcm-audio",
		.owner = THIS_MODULE,
	},

	.probe = s3c24xx_soc_platform_probe,
	.remove = __devexit_p(s3c24xx_soc_platform_remove),
};

static int __init snd_s3c24xx_pcm_init(void)
{
	return platform_driver_register(&s3c24xx_pcm_driver);
}
module_init(snd_s3c24xx_pcm_init);

static void __exit snd_s3c24xx_pcm_exit(void)
{
	platform_driver_unregister(&s3c24xx_pcm_driver);
M
Mark Brown 已提交
497
}
498
module_exit(snd_s3c24xx_pcm_exit);
M
Mark Brown 已提交
499

500
MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
501
MODULE_DESCRIPTION("Samsung S3C Audio DMA module");
502
MODULE_LICENSE("GPL");
503
MODULE_ALIAS("platform:s3c24xx-pcm-audio");