fsi.c 27.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Fifo-attached Serial Interface (FSI) support for SH7724
 *
 * Copyright (C) 2009 Renesas Solutions Corp.
 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
 *
 * Based on ssi.c
 * Copyright (c) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
 *
 * 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.
 */

#include <linux/delay.h>
16
#include <linux/pm_runtime.h>
17
#include <linux/io.h>
18
#include <linux/slab.h>
19 20 21
#include <sound/soc.h>
#include <sound/sh_fsi.h>

22 23 24 25 26 27 28 29 30 31 32 33 34
/* PortA/PortB register */
#define REG_DO_FMT	0x0000
#define REG_DOFF_CTL	0x0004
#define REG_DOFF_ST	0x0008
#define REG_DI_FMT	0x000C
#define REG_DIFF_CTL	0x0010
#define REG_DIFF_ST	0x0014
#define REG_CKG1	0x0018
#define REG_CKG2	0x001C
#define REG_DIDT	0x0020
#define REG_DODT	0x0024
#define REG_MUTE_ST	0x0028
#define REG_OUT_SEL	0x0030
35

36 37 38 39 40 41
/* master register */
#define MST_CLK_RST	0x0210
#define MST_SOFT_RST	0x0214
#define MST_FIFO_SZ	0x0218

/* core register (depend on FSI version) */
42 43
#define A_MST_CTLR	0x0180
#define B_MST_CTLR	0x01A0
44 45 46
#define CPU_INT_ST	0x01F4
#define CPU_IEMSK	0x01F8
#define CPU_IMSK	0x01FC
47 48 49 50 51 52
#define INT_ST		0x0200
#define IEMSK		0x0204
#define IMSK		0x0208

/* DO_FMT */
/* DI_FMT */
53 54 55 56 57 58 59 60
#define CR_BWS_24	(0x0 << 20) /* FSI2 */
#define CR_BWS_16	(0x1 << 20) /* FSI2 */
#define CR_BWS_20	(0x2 << 20) /* FSI2 */

#define CR_DTMD_PCM		(0x0 << 8) /* FSI2 */
#define CR_DTMD_SPDIF_PCM	(0x1 << 8) /* FSI2 */
#define CR_DTMD_SPDIF_STREAM	(0x2 << 8) /* FSI2 */

61 62 63 64 65 66
#define CR_MONO		(0x0 << 4)
#define CR_MONO_D	(0x1 << 4)
#define CR_PCM		(0x2 << 4)
#define CR_I2S		(0x3 << 4)
#define CR_TDM		(0x4 << 4)
#define CR_TDM_D	(0x5 << 4)
67 68 69 70 71 72 73 74 75

/* DOFF_CTL */
/* DIFF_CTL */
#define IRQ_HALF	0x00100000
#define FIFO_CLR	0x00000001

/* DOFF_ST */
#define ERR_OVER	0x00000010
#define ERR_UNDER	0x00000001
76
#define ST_ERR		(ERR_OVER | ERR_UNDER)
77

78 79 80 81
/* CKG1 */
#define ACKMD_MASK	0x00007000
#define BPFMD_MASK	0x00000700

82 83 84 85
/* A/B MST_CTLR */
#define BP	(1 << 4)	/* Fix the signal of Biphase output */
#define SE	(1 << 0)	/* Fix the master clock */

86 87 88 89
/* CLK_RST */
#define B_CLK		0x00000010
#define A_CLK		0x00000001

90 91 92 93 94 95
/* IO SHIFT / MACRO */
#define BI_SHIFT	12
#define BO_SHIFT	8
#define AI_SHIFT	4
#define AO_SHIFT	0
#define AB_IO(param, shift)	(param << shift)
96

97 98 99 100 101 102
/* SOFT_RST */
#define PBSR		(1 << 12) /* Port B Software Reset */
#define PASR		(1 <<  8) /* Port A Software Reset */
#define IR		(1 <<  4) /* Interrupt Reset */
#define FSISR		(1 <<  0) /* Software Reset */

103 104 105 106
/* OUT_SEL (FSI2) */
#define DMMD		(1 << 4) /* SPDIF output timing 0: Biphase only */
				 /*			1: Biphase and serial */

107
/* FIFO_SZ */
108
#define FIFO_SZ_MASK	0x7
109

110 111 112 113
#define FSI_RATES SNDRV_PCM_RATE_8000_96000

#define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)

114 115 116 117 118 119 120 121 122
/*
 * FSI driver use below type name for variable
 *
 * xxx_len	: data length
 * xxx_width	: data width
 * xxx_offset	: data offset
 * xxx_num	: number of data
 */

123 124 125
/*
 *		struct
 */
126

127
struct fsi_stream {
128 129
	struct snd_pcm_substream *substream;

130 131
	int fifo_max_num;
	int chan_num;
132

133 134
	int buff_offset;
	int buff_len;
135
	int period_len;
136
	int period_num;
137 138 139 140 141 142 143 144
};

struct fsi_priv {
	void __iomem *base;
	struct fsi_master *master;

	struct fsi_stream playback;
	struct fsi_stream capture;
145

146
	long rate;
147 148
};

149 150 151
struct fsi_core {
	int ver;

152 153 154
	u32 int_st;
	u32 iemsk;
	u32 imsk;
155 156
	u32 a_mclk;
	u32 b_mclk;
157 158
};

159 160 161 162 163
struct fsi_master {
	void __iomem *base;
	int irq;
	struct fsi_priv fsia;
	struct fsi_priv fsib;
164
	struct fsi_core *core;
165
	struct sh_fsi_platform_info *info;
166
	spinlock_t lock;
167 168
};

169 170 171
/*
 *		basic read write function
 */
172

173
static void __fsi_reg_write(u32 reg, u32 data)
174 175 176 177
{
	/* valid data area is 24bit */
	data &= 0x00ffffff;

178
	__raw_writel(data, reg);
179 180 181 182
}

static u32 __fsi_reg_read(u32 reg)
{
183
	return __raw_readl(reg);
184 185
}

186
static void __fsi_reg_mask_set(u32 reg, u32 mask, u32 data)
187 188 189 190 191 192
{
	u32 val = __fsi_reg_read(reg);

	val &= ~mask;
	val |= data & mask;

193
	__fsi_reg_write(reg, val);
194 195
}

196 197
#define fsi_reg_write(p, r, d)\
	__fsi_reg_write((u32)(p->base + REG_##r), d)
198

199 200
#define fsi_reg_read(p, r)\
	__fsi_reg_read((u32)(p->base + REG_##r))
201

202 203
#define fsi_reg_mask_set(p, r, m, d)\
	__fsi_reg_mask_set((u32)(p->base + REG_##r), m, d)
204

205 206 207
#define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
#define fsi_core_read(p, r)   _fsi_master_read(p, p->core->r)
static u32 _fsi_master_read(struct fsi_master *master, u32 reg)
208
{
209 210 211 212 213 214 215 216
	u32 ret;
	unsigned long flags;

	spin_lock_irqsave(&master->lock, flags);
	ret = __fsi_reg_read((u32)(master->base + reg));
	spin_unlock_irqrestore(&master->lock, flags);

	return ret;
217 218
}

219 220 221
#define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
#define fsi_core_mask_set(p, r, m, d)  _fsi_master_mask_set(p, p->core->r, m, d)
static void _fsi_master_mask_set(struct fsi_master *master,
222
			       u32 reg, u32 mask, u32 data)
223
{
224 225 226
	unsigned long flags;

	spin_lock_irqsave(&master->lock, flags);
227
	__fsi_reg_mask_set((u32)(master->base + reg), mask, data);
228
	spin_unlock_irqrestore(&master->lock, flags);
229 230
}

231 232 233
/*
 *		basic function
 */
234

235
static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
236
{
237
	return fsi->master;
238 239 240 241
}

static int fsi_is_port_a(struct fsi_priv *fsi)
{
242 243
	return fsi->master->base == fsi->base;
}
244

245
static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
246 247
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
248

249
	return  rtd->cpu_dai;
250 251 252 253 254
}

static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
{
	struct snd_soc_dai *dai = fsi_get_dai(substream);
255
	struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
256

257 258 259 260
	if (dai->id == 0)
		return &master->fsia;
	else
		return &master->fsib;
261 262 263 264 265
}

static u32 fsi_get_info_flags(struct fsi_priv *fsi)
{
	int is_porta = fsi_is_port_a(fsi);
266
	struct fsi_master *master = fsi_get_master(fsi);
267 268 269 270 271

	return is_porta ? master->info->porta_flags :
		master->info->portb_flags;
}

272 273 274 275 276
static inline int fsi_stream_is_play(int stream)
{
	return stream == SNDRV_PCM_STREAM_PLAYBACK;
}

K
Kuninori Morimoto 已提交
277 278
static inline int fsi_is_play(struct snd_pcm_substream *substream)
{
279 280 281 282 283 284 285
	return fsi_stream_is_play(substream->stream);
}

static inline struct fsi_stream *fsi_get_stream(struct fsi_priv *fsi,
						int is_play)
{
	return is_play ? &fsi->playback : &fsi->capture;
K
Kuninori Morimoto 已提交
286 287
}

288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
{
	u32 mode;
	u32 flags = fsi_get_info_flags(fsi);

	mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;

	/* return
	 * 1 : master mode
	 * 0 : slave mode
	 */

	return (mode & flags) != mode;
}

303
static u32 fsi_get_port_shift(struct fsi_priv *fsi, int is_play)
304 305
{
	int is_porta = fsi_is_port_a(fsi);
306
	u32 shift;
307 308

	if (is_porta)
309
		shift = is_play ? AO_SHIFT : AI_SHIFT;
310
	else
311
		shift = is_play ? BO_SHIFT : BI_SHIFT;
312

313
	return shift;
314 315 316
}

static void fsi_stream_push(struct fsi_priv *fsi,
317
			    int is_play,
318 319 320 321
			    struct snd_pcm_substream *substream,
			    u32 buffer_len,
			    u32 period_len)
{
322 323 324 325 326 327 328
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);

	io->substream	= substream;
	io->buff_len	= buffer_len;
	io->buff_offset	= 0;
	io->period_len	= period_len;
	io->period_num	= 0;
329 330
}

331
static void fsi_stream_pop(struct fsi_priv *fsi, int is_play)
332
{
333 334 335 336 337 338 339
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);

	io->substream	= NULL;
	io->buff_len	= 0;
	io->buff_offset	= 0;
	io->period_len	= 0;
	io->period_num	= 0;
340 341
}

342
static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
343 344
{
	u32 status;
345
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);
346
	int data_num;
347

348 349 350 351
	status = is_play ?
		fsi_reg_read(fsi, DOFF_ST) :
		fsi_reg_read(fsi, DIFF_ST);

352
	data_num = 0x1ff & (status >> 8);
353
	data_num *= io->chan_num;
354 355 356

	return data_num;
}
357

358 359 360 361 362 363 364 365 366
static int fsi_len2num(int len, int width)
{
	return len / width;
}

#define fsi_num2offset(a, b) fsi_num2len(a, b)
static int fsi_num2len(int num, int width)
{
	return num * width;
367 368
}

369
static int fsi_get_frame_width(struct fsi_priv *fsi, int is_play)
370
{
371 372
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);
	struct snd_pcm_substream *substream = io->substream;
373 374
	struct snd_pcm_runtime *runtime = substream->runtime;

375
	return frames_to_bytes(runtime, 1) / io->chan_num;
376 377
}

378 379 380 381
/*
 *		dma function
 */

382
static u8 *fsi_dma_get_area(struct fsi_priv *fsi, int stream)
383
{
384 385 386 387
	int is_play = fsi_stream_is_play(stream);
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);

	return io->substream->runtime->dma_area + io->buff_offset;
388 389
}

390
static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
391 392 393 394
{
	u16 *start;
	int i;

395
	start  = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
396

397
	for (i = 0; i < num; i++)
398 399 400
		fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
}

401
static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int num)
402 403 404 405
{
	u16 *start;
	int i;

406 407
	start  = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);

408

409
	for (i = 0; i < num; i++)
410 411 412
		*(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
}

413
static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
414 415 416 417
{
	u32 *start;
	int i;

418 419
	start  = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);

420

421
	for (i = 0; i < num; i++)
422 423 424
		fsi_reg_write(fsi, DODT, *(start + i));
}

425
static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
426 427 428 429
{
	u32 *start;
	int i;

430
	start  = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
431

432
	for (i = 0; i < num; i++)
433 434 435
		*(start + i) = fsi_reg_read(fsi, DIDT);
}

436 437 438
/*
 *		irq function
 */
439 440 441

static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
{
442
	u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
443
	struct fsi_master *master = fsi_get_master(fsi);
444

445 446
	fsi_core_mask_set(master, imsk,  data, data);
	fsi_core_mask_set(master, iemsk, data, data);
447 448 449 450
}

static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
{
451
	u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
452
	struct fsi_master *master = fsi_get_master(fsi);
453

454 455
	fsi_core_mask_set(master, imsk,  data, 0);
	fsi_core_mask_set(master, iemsk, data, 0);
456 457
}

458 459
static u32 fsi_irq_get_status(struct fsi_master *master)
{
460
	return fsi_core_read(master, int_st);
461 462 463 464 465 466 467
}

static void fsi_irq_clear_status(struct fsi_priv *fsi)
{
	u32 data = 0;
	struct fsi_master *master = fsi_get_master(fsi);

468 469
	data |= AB_IO(1, fsi_get_port_shift(fsi, 0));
	data |= AB_IO(1, fsi_get_port_shift(fsi, 1));
470 471

	/* clear interrupt factor */
472
	fsi_core_mask_set(master, int_st, data, 0);
473 474
}

475 476 477 478 479
/*
 *		SPDIF master clock function
 *
 * These functions are used later FSI2
 */
480 481 482
static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
{
	struct fsi_master *master = fsi_get_master(fsi);
483
	u32 mask, val;
484 485 486 487 488 489

	if (master->core->ver < 2) {
		pr_err("fsi: register access err (%s)\n", __func__);
		return;
	}

490 491 492 493
	mask = BP | SE;
	val = enable ? mask : 0;

	fsi_is_port_a(fsi) ?
494 495
		fsi_core_mask_set(master, a_mclk, mask, val) :
		fsi_core_mask_set(master, b_mclk, mask, val);
496 497
}

498 499 500
/*
 *		ctrl function
 */
501

502 503 504
static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
{
	u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
505
	struct fsi_master *master = fsi_get_master(fsi);
506 507

	if (enable)
508
		fsi_master_mask_set(master, CLK_RST, val, val);
509
	else
510
		fsi_master_mask_set(master, CLK_RST, val, 0);
511 512
}

513 514 515
static void fsi_fifo_init(struct fsi_priv *fsi,
			  int is_play,
			  struct snd_soc_dai *dai)
516
{
517
	struct fsi_master *master = fsi_get_master(fsi);
518
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);
519
	u32 shift, i;
520

521 522
	/* get on-chip RAM capacity */
	shift = fsi_master_read(master, FIFO_SZ);
523 524
	shift >>= fsi_get_port_shift(fsi, is_play);
	shift &= FIFO_SZ_MASK;
525 526
	io->fifo_max_num = 256 << shift;
	dev_dbg(dai->dev, "fifo = %d words\n", io->fifo_max_num);
527

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
	/*
	 * The maximum number of sample data varies depending
	 * on the number of channels selected for the format.
	 *
	 * FIFOs are used in 4-channel units in 3-channel mode
	 * and in 8-channel units in 5- to 7-channel mode
	 * meaning that more FIFOs than the required size of DPRAM
	 * are used.
	 *
	 * ex) if 256 words of DP-RAM is connected
	 * 1 channel:  256 (256 x 1 = 256)
	 * 2 channels: 128 (128 x 2 = 256)
	 * 3 channels:  64 ( 64 x 3 = 192)
	 * 4 channels:  64 ( 64 x 4 = 256)
	 * 5 channels:  32 ( 32 x 5 = 160)
	 * 6 channels:  32 ( 32 x 6 = 192)
	 * 7 channels:  32 ( 32 x 7 = 224)
	 * 8 channels:  32 ( 32 x 8 = 256)
	 */
547 548
	for (i = 1; i < io->chan_num; i <<= 1)
		io->fifo_max_num >>= 1;
549
	dev_dbg(dai->dev, "%d channel %d store\n",
550
		io->chan_num, io->fifo_max_num);
551

552 553 554 555 556 557 558 559 560 561 562
	/*
	 * set interrupt generation factor
	 * clear FIFO
	 */
	if (is_play) {
		fsi_reg_write(fsi,	DOFF_CTL, IRQ_HALF);
		fsi_reg_mask_set(fsi,	DOFF_CTL, FIFO_CLR, FIFO_CLR);
	} else {
		fsi_reg_write(fsi,	DIFF_CTL, IRQ_HALF);
		fsi_reg_mask_set(fsi,	DIFF_CTL, FIFO_CLR, FIFO_CLR);
	}
563 564
}

565
static void fsi_soft_all_reset(struct fsi_master *master)
566 567
{
	/* port AB reset */
568
	fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
569 570 571
	mdelay(10);

	/* soft reset */
572 573
	fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
	fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
574 575 576
	mdelay(10);
}

577
static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int startup, int stream)
578 579 580
{
	struct snd_pcm_runtime *runtime;
	struct snd_pcm_substream *substream = NULL;
581 582
	int is_play = fsi_stream_is_play(stream);
	struct fsi_stream *io = fsi_get_stream(fsi, is_play);
583 584 585
	int data_residue_num;
	int data_num;
	int data_num_max;
586
	int ch_width;
587
	int over_period;
588
	void (*fn)(struct fsi_priv *fsi, int size);
589 590

	if (!fsi			||
591 592
	    !io->substream		||
	    !io->substream->runtime)
593 594
		return -EINVAL;

595
	over_period	= 0;
596
	substream	= io->substream;
597
	runtime		= substream->runtime;
598 599 600 601

	/* FSI FIFO has limit.
	 * So, this driver can not send periods data at a time
	 */
602 603
	if (io->buff_offset >=
	    fsi_num2offset(io->period_num + 1, io->period_len)) {
604

605
		over_period = 1;
606
		io->period_num = (io->period_num + 1) % runtime->periods;
607

608 609
		if (0 == io->period_num)
			io->buff_offset = 0;
610 611 612
	}

	/* get 1 channel data width */
613
	ch_width = fsi_get_frame_width(fsi, is_play);
614

615
	/* get residue data number of alsa */
616
	data_residue_num = fsi_len2num(io->buff_len - io->buff_offset,
617 618 619 620 621 622 623 624 625
				       ch_width);

	if (is_play) {
		/*
		 * for play-back
		 *
		 * data_num_max	: number of FSI fifo free space
		 * data_num	: number of ALSA residue data
		 */
626
		data_num_max  = io->fifo_max_num * io->chan_num;
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
		data_num_max -= fsi_get_fifo_data_num(fsi, is_play);

		data_num = data_residue_num;

		switch (ch_width) {
		case 2:
			fn = fsi_dma_soft_push16;
			break;
		case 4:
			fn = fsi_dma_soft_push32;
			break;
		default:
			return -EINVAL;
		}
	} else {
		/*
		 * for capture
		 *
		 * data_num_max	: number of ALSA free space
		 * data_num	: number of data in FSI fifo
		 */
		data_num_max = data_residue_num;
		data_num     = fsi_get_fifo_data_num(fsi, is_play);

		switch (ch_width) {
		case 2:
			fn = fsi_dma_soft_pop16;
			break;
		case 4:
			fn = fsi_dma_soft_pop32;
			break;
		default:
			return -EINVAL;
		}
	}
662

663
	data_num = min(data_num, data_num_max);
664

665
	fn(fsi, data_num);
666

667
	/* update buff_offset */
668
	io->buff_offset += fsi_num2offset(data_num, ch_width);
669

670
	/* check fifo status */
671
	if (!startup) {
672
		struct snd_soc_dai *dai = fsi_get_dai(substream);
673 674 675
		u32 status = is_play ?
			fsi_reg_read(fsi, DOFF_ST) :
			fsi_reg_read(fsi, DIFF_ST);
676 677 678 679 680

		if (status & ERR_OVER)
			dev_err(dai->dev, "over run\n");
		if (status & ERR_UNDER)
			dev_err(dai->dev, "under run\n");
681
	}
682 683 684 685

	is_play ?
		fsi_reg_write(fsi, DOFF_ST, 0) :
		fsi_reg_write(fsi, DIFF_ST, 0);
686

687 688
	/* re-enable irq */
	fsi_irq_enable(fsi, is_play);
689

690
	if (over_period)
691 692
		snd_pcm_period_elapsed(substream);

693
	return 0;
694 695
}

696
static int fsi_data_pop(struct fsi_priv *fsi, int startup)
697
{
698
	return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_CAPTURE);
699
}
700

701 702
static int fsi_data_push(struct fsi_priv *fsi, int startup)
{
703
	return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_PLAYBACK);
704 705
}

706 707
static irqreturn_t fsi_interrupt(int irq, void *data)
{
708
	struct fsi_master *master = data;
709
	u32 int_st = fsi_irq_get_status(master);
710 711

	/* clear irq status */
712 713
	fsi_master_mask_set(master, SOFT_RST, IR, 0);
	fsi_master_mask_set(master, SOFT_RST, IR, IR);
714

715
	if (int_st & AB_IO(1, AO_SHIFT))
716
		fsi_data_push(&master->fsia, 0);
717
	if (int_st & AB_IO(1, BO_SHIFT))
718
		fsi_data_push(&master->fsib, 0);
719
	if (int_st & AB_IO(1, AI_SHIFT))
720
		fsi_data_pop(&master->fsia, 0);
721
	if (int_st & AB_IO(1, BI_SHIFT))
722
		fsi_data_pop(&master->fsib, 0);
723

724 725
	fsi_irq_clear_status(&master->fsia);
	fsi_irq_clear_status(&master->fsib);
726 727 728 729

	return IRQ_HANDLED;
}

730 731 732
/*
 *		dai ops
 */
733 734 735 736

static int fsi_dai_startup(struct snd_pcm_substream *substream,
			   struct snd_soc_dai *dai)
{
737
	struct fsi_priv *fsi = fsi_get_priv(substream);
738
	struct fsi_master *master = fsi_get_master(fsi);
739 740
	struct fsi_stream *io;
	u32 flags = fsi_get_info_flags(fsi);
741 742
	u32 fmt;
	u32 data;
K
Kuninori Morimoto 已提交
743
	int is_play = fsi_is_play(substream);
744 745
	int is_master;

746 747
	io = fsi_get_stream(fsi, is_play);

748
	pm_runtime_get_sync(dai->dev);
749 750 751 752 753 754 755 756 757 758 759

	/* CKG1 */
	data = is_play ? (1 << 0) : (1 << 4);
	is_master = fsi_is_master_mode(fsi, is_play);
	if (is_master)
		fsi_reg_mask_set(fsi, CKG1, data, data);
	else
		fsi_reg_mask_set(fsi, CKG1, data, 0);

	/* clock inversion (CKG2) */
	data = 0;
760 761 762 763 764 765 766 767 768
	if (SH_FSI_LRM_INV & flags)
		data |= 1 << 12;
	if (SH_FSI_BRM_INV & flags)
		data |= 1 << 8;
	if (SH_FSI_LRS_INV & flags)
		data |= 1 << 4;
	if (SH_FSI_BRS_INV & flags)
		data |= 1 << 0;

769 770 771 772 773 774 775
	fsi_reg_write(fsi, CKG2, data);

	/* do fmt, di fmt */
	data = 0;
	fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
	switch (fmt) {
	case SH_FSI_FMT_MONO:
776
		data = CR_MONO;
777
		io->chan_num = 1;
778 779
		break;
	case SH_FSI_FMT_MONO_DELAY:
780
		data = CR_MONO_D;
781
		io->chan_num = 1;
782 783
		break;
	case SH_FSI_FMT_PCM:
784
		data = CR_PCM;
785
		io->chan_num = 2;
786 787
		break;
	case SH_FSI_FMT_I2S:
788
		data = CR_I2S;
789
		io->chan_num = 2;
790 791
		break;
	case SH_FSI_FMT_TDM:
792
		io->chan_num = is_play ?
793
			SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
794
		data = CR_TDM | (io->chan_num - 1);
795 796
		break;
	case SH_FSI_FMT_TDM_DELAY:
797
		io->chan_num = is_play ?
798
			SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
799
		data = CR_TDM_D | (io->chan_num - 1);
800
		break;
801 802 803 804 805
	case SH_FSI_FMT_SPDIF:
		if (master->core->ver < 2) {
			dev_err(dai->dev, "This FSI can not use SPDIF\n");
			return -EINVAL;
		}
806
		data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
807
		io->chan_num = 2;
808
		fsi_spdif_clk_ctrl(fsi, 1);
809
		fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
810
		break;
811 812 813 814
	default:
		dev_err(dai->dev, "unknown format.\n");
		return -EINVAL;
	}
815 816 817
	is_play ?
		fsi_reg_write(fsi, DO_FMT, data) :
		fsi_reg_write(fsi, DI_FMT, data);
818

819 820 821 822 823
	/* irq clear */
	fsi_irq_disable(fsi, is_play);
	fsi_irq_clear_status(fsi);

	/* fifo init */
824
	fsi_fifo_init(fsi, is_play, dai);
825

826
	return 0;
827 828 829 830 831
}

static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
			     struct snd_soc_dai *dai)
{
832
	struct fsi_priv *fsi = fsi_get_priv(substream);
K
Kuninori Morimoto 已提交
833
	int is_play = fsi_is_play(substream);
834 835
	struct fsi_master *master = fsi_get_master(fsi);
	int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
836 837 838 839

	fsi_irq_disable(fsi, is_play);
	fsi_clk_ctrl(fsi, 0);

840 841 842 843 844
	set_rate = master->info->set_rate;
	if (set_rate && fsi->rate)
		set_rate(dai->dev, fsi_is_port_a(fsi), fsi->rate, 0);
	fsi->rate = 0;

845
	pm_runtime_put_sync(dai->dev);
846 847 848 849 850
}

static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
			   struct snd_soc_dai *dai)
{
851
	struct fsi_priv *fsi = fsi_get_priv(substream);
852
	struct snd_pcm_runtime *runtime = substream->runtime;
K
Kuninori Morimoto 已提交
853
	int is_play = fsi_is_play(substream);
854 855 856 857
	int ret = 0;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
858
		fsi_stream_push(fsi, is_play, substream,
859 860
				frames_to_bytes(runtime, runtime->buffer_size),
				frames_to_bytes(runtime, runtime->period_size));
861
		ret = is_play ? fsi_data_push(fsi, 1) : fsi_data_pop(fsi, 1);
862 863 864
		break;
	case SNDRV_PCM_TRIGGER_STOP:
		fsi_irq_disable(fsi, is_play);
865
		fsi_stream_pop(fsi, is_play);
866 867 868 869 870 871
		break;
	}

	return ret;
}

872 873 874 875 876 877
static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
			     struct snd_pcm_hw_params *params,
			     struct snd_soc_dai *dai)
{
	struct fsi_priv *fsi = fsi_get_priv(substream);
	struct fsi_master *master = fsi_get_master(fsi);
878
	int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
879
	int fsi_ver = master->core->ver;
880
	long rate = params_rate(params);
881 882
	int ret;

883
	set_rate = master->info->set_rate;
884 885 886
	if (!set_rate)
		return 0;

887 888 889
	ret = set_rate(dai->dev, fsi_is_port_a(fsi), rate, 1);
	if (ret < 0) /* error */
		return ret;
890

891
	fsi->rate = rate;
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953
	if (ret > 0) {
		u32 data = 0;

		switch (ret & SH_FSI_ACKMD_MASK) {
		default:
			/* FALL THROUGH */
		case SH_FSI_ACKMD_512:
			data |= (0x0 << 12);
			break;
		case SH_FSI_ACKMD_256:
			data |= (0x1 << 12);
			break;
		case SH_FSI_ACKMD_128:
			data |= (0x2 << 12);
			break;
		case SH_FSI_ACKMD_64:
			data |= (0x3 << 12);
			break;
		case SH_FSI_ACKMD_32:
			if (fsi_ver < 2)
				dev_err(dai->dev, "unsupported ACKMD\n");
			else
				data |= (0x4 << 12);
			break;
		}

		switch (ret & SH_FSI_BPFMD_MASK) {
		default:
			/* FALL THROUGH */
		case SH_FSI_BPFMD_32:
			data |= (0x0 << 8);
			break;
		case SH_FSI_BPFMD_64:
			data |= (0x1 << 8);
			break;
		case SH_FSI_BPFMD_128:
			data |= (0x2 << 8);
			break;
		case SH_FSI_BPFMD_256:
			data |= (0x3 << 8);
			break;
		case SH_FSI_BPFMD_512:
			data |= (0x4 << 8);
			break;
		case SH_FSI_BPFMD_16:
			if (fsi_ver < 2)
				dev_err(dai->dev, "unsupported ACKMD\n");
			else
				data |= (0x7 << 8);
			break;
		}

		fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
		udelay(10);
		fsi_clk_ctrl(fsi, 1);
		ret = 0;
	}

	return ret;

}

954 955 956 957
static struct snd_soc_dai_ops fsi_dai_ops = {
	.startup	= fsi_dai_startup,
	.shutdown	= fsi_dai_shutdown,
	.trigger	= fsi_dai_trigger,
958
	.hw_params	= fsi_dai_hw_params,
959 960
};

961 962 963
/*
 *		pcm ops
 */
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011

static struct snd_pcm_hardware fsi_pcm_hardware = {
	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
			SNDRV_PCM_INFO_MMAP		|
			SNDRV_PCM_INFO_MMAP_VALID	|
			SNDRV_PCM_INFO_PAUSE,
	.formats		= FSI_FMTS,
	.rates			= FSI_RATES,
	.rate_min		= 8000,
	.rate_max		= 192000,
	.channels_min		= 1,
	.channels_max		= 2,
	.buffer_bytes_max	= 64 * 1024,
	.period_bytes_min	= 32,
	.period_bytes_max	= 8192,
	.periods_min		= 1,
	.periods_max		= 32,
	.fifo_size		= 256,
};

static int fsi_pcm_open(struct snd_pcm_substream *substream)
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	int ret = 0;

	snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);

	ret = snd_pcm_hw_constraint_integer(runtime,
					    SNDRV_PCM_HW_PARAM_PERIODS);

	return ret;
}

static int fsi_hw_params(struct snd_pcm_substream *substream,
			 struct snd_pcm_hw_params *hw_params)
{
	return snd_pcm_lib_malloc_pages(substream,
					params_buffer_bytes(hw_params));
}

static int fsi_hw_free(struct snd_pcm_substream *substream)
{
	return snd_pcm_lib_free_pages(substream);
}

static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
{
	struct snd_pcm_runtime *runtime = substream->runtime;
1012
	struct fsi_priv *fsi = fsi_get_priv(substream);
1013
	struct fsi_stream *io = fsi_get_stream(fsi, fsi_is_play(substream));
1014 1015
	long location;

1016
	location = (io->buff_offset - 1);
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
	if (location < 0)
		location = 0;

	return bytes_to_frames(runtime, location);
}

static struct snd_pcm_ops fsi_pcm_ops = {
	.open		= fsi_pcm_open,
	.ioctl		= snd_pcm_lib_ioctl,
	.hw_params	= fsi_hw_params,
	.hw_free	= fsi_hw_free,
	.pointer	= fsi_pointer,
};

1031 1032 1033
/*
 *		snd_soc_platform
 */
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057

#define PREALLOC_BUFFER		(32 * 1024)
#define PREALLOC_BUFFER_MAX	(32 * 1024)

static void fsi_pcm_free(struct snd_pcm *pcm)
{
	snd_pcm_lib_preallocate_free_for_all(pcm);
}

static int fsi_pcm_new(struct snd_card *card,
		       struct snd_soc_dai *dai,
		       struct snd_pcm *pcm)
{
	/*
	 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
	 * in MMAP mode (i.e. aplay -M)
	 */
	return snd_pcm_lib_preallocate_pages_for_all(
		pcm,
		SNDRV_DMA_TYPE_CONTINUOUS,
		snd_dma_continuous_data(GFP_KERNEL),
		PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
}

1058 1059 1060
/*
 *		alsa struct
 */
1061

1062
static struct snd_soc_dai_driver fsi_soc_dai[] = {
1063
	{
1064
		.name			= "fsia-dai",
1065 1066 1067 1068 1069 1070
		.playback = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1071 1072 1073 1074 1075 1076
		.capture = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1077 1078 1079
		.ops = &fsi_dai_ops,
	},
	{
1080
		.name			= "fsib-dai",
1081 1082 1083 1084 1085 1086
		.playback = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1087 1088 1089 1090 1091 1092
		.capture = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1093 1094 1095 1096
		.ops = &fsi_dai_ops,
	},
};

1097 1098
static struct snd_soc_platform_driver fsi_soc_platform = {
	.ops		= &fsi_pcm_ops,
1099 1100 1101 1102
	.pcm_new	= fsi_pcm_new,
	.pcm_free	= fsi_pcm_free,
};

1103 1104 1105
/*
 *		platform function
 */
1106 1107 1108

static int fsi_probe(struct platform_device *pdev)
{
1109
	struct fsi_master *master;
1110
	const struct platform_device_id	*id_entry;
1111 1112 1113 1114
	struct resource *res;
	unsigned int irq;
	int ret;

1115 1116 1117 1118 1119 1120
	id_entry = pdev->id_entry;
	if (!id_entry) {
		dev_err(&pdev->dev, "unknown fsi device\n");
		return -ENODEV;
	}

1121 1122
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	irq = platform_get_irq(pdev, 0);
1123
	if (!res || (int)irq <= 0) {
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
		dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
		ret = -ENODEV;
		goto exit;
	}

	master = kzalloc(sizeof(*master), GFP_KERNEL);
	if (!master) {
		dev_err(&pdev->dev, "Could not allocate master\n");
		ret = -ENOMEM;
		goto exit;
	}

	master->base = ioremap_nocache(res->start, resource_size(res));
	if (!master->base) {
		ret = -ENXIO;
		dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
		goto exit_kfree;
	}

1143
	/* master setting */
1144 1145
	master->irq		= irq;
	master->info		= pdev->dev.platform_data;
1146 1147 1148 1149
	master->core		= (struct fsi_core *)id_entry->driver_data;
	spin_lock_init(&master->lock);

	/* FSI A setting */
1150
	master->fsia.base	= master->base;
1151
	master->fsia.master	= master;
1152 1153

	/* FSI B setting */
1154
	master->fsib.base	= master->base + 0x40;
1155
	master->fsib.master	= master;
1156

1157 1158
	pm_runtime_enable(&pdev->dev);
	pm_runtime_resume(&pdev->dev);
1159
	dev_set_drvdata(&pdev->dev, master);
1160

1161
	fsi_soft_all_reset(master);
1162

1163 1164
	ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
			  id_entry->name, master);
1165 1166
	if (ret) {
		dev_err(&pdev->dev, "irq request err\n");
1167
		goto exit_iounmap;
1168 1169
	}

1170
	ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
1171 1172 1173 1174 1175
	if (ret < 0) {
		dev_err(&pdev->dev, "cannot snd soc register\n");
		goto exit_free_irq;
	}

1176
	return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
1177 1178 1179 1180 1181

exit_free_irq:
	free_irq(irq, master);
exit_iounmap:
	iounmap(master->base);
1182
	pm_runtime_disable(&pdev->dev);
1183 1184 1185 1186 1187 1188 1189 1190 1191
exit_kfree:
	kfree(master);
	master = NULL;
exit:
	return ret;
}

static int fsi_remove(struct platform_device *pdev)
{
1192 1193
	struct fsi_master *master;

1194
	master = dev_get_drvdata(&pdev->dev);
1195

1196 1197
	snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
	snd_soc_unregister_platform(&pdev->dev);
1198

1199
	pm_runtime_disable(&pdev->dev);
1200 1201 1202 1203 1204

	free_irq(master->irq, master);

	iounmap(master->base);
	kfree(master);
1205

1206 1207 1208
	return 0;
}

1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
static int fsi_runtime_nop(struct device *dev)
{
	/* Runtime PM callback shared between ->runtime_suspend()
	 * and ->runtime_resume(). Simply returns success.
	 *
	 * This driver re-initializes all registers after
	 * pm_runtime_get_sync() anyway so there is no need
	 * to save and restore registers here.
	 */
	return 0;
}

static struct dev_pm_ops fsi_pm_ops = {
	.runtime_suspend	= fsi_runtime_nop,
	.runtime_resume		= fsi_runtime_nop,
};

1226 1227 1228 1229
static struct fsi_core fsi1_core = {
	.ver	= 1,

	/* Interrupt */
1230 1231 1232 1233 1234
	.int_st	= INT_ST,
	.iemsk	= IEMSK,
	.imsk	= IMSK,
};

1235 1236 1237 1238
static struct fsi_core fsi2_core = {
	.ver	= 2,

	/* Interrupt */
1239 1240 1241
	.int_st	= CPU_INT_ST,
	.iemsk	= CPU_IEMSK,
	.imsk	= CPU_IMSK,
1242 1243
	.a_mclk	= A_MST_CTLR,
	.b_mclk	= B_MST_CTLR,
1244 1245 1246
};

static struct platform_device_id fsi_id_table[] = {
1247 1248
	{ "sh_fsi",	(kernel_ulong_t)&fsi1_core },
	{ "sh_fsi2",	(kernel_ulong_t)&fsi2_core },
1249
	{},
1250
};
1251
MODULE_DEVICE_TABLE(platform, fsi_id_table);
1252

1253 1254
static struct platform_driver fsi_driver = {
	.driver 	= {
1255
		.name	= "fsi-pcm-audio",
1256
		.pm	= &fsi_pm_ops,
1257 1258 1259
	},
	.probe		= fsi_probe,
	.remove		= fsi_remove,
1260
	.id_table	= fsi_id_table,
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
};

static int __init fsi_mobile_init(void)
{
	return platform_driver_register(&fsi_driver);
}

static void __exit fsi_mobile_exit(void)
{
	platform_driver_unregister(&fsi_driver);
}
1272

1273 1274 1275 1276 1277 1278
module_init(fsi_mobile_init);
module_exit(fsi_mobile_exit);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");