fsi.c 41.2 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/dma-mapping.h>
17
#include <linux/pm_runtime.h>
18
#include <linux/io.h>
19 20
#include <linux/scatterlist.h>
#include <linux/sh_dma.h>
21
#include <linux/slab.h>
22
#include <linux/module.h>
23 24 25
#include <sound/soc.h>
#include <sound/sh_fsi.h>

26 27 28 29 30 31 32 33 34 35 36 37
/* 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
38
#define REG_OUT_DMAC	0x002C
39
#define REG_OUT_SEL	0x0030
40
#define REG_IN_DMAC	0x0038
41

42 43 44 45 46 47
/* master register */
#define MST_CLK_RST	0x0210
#define MST_SOFT_RST	0x0214
#define MST_FIFO_SZ	0x0218

/* core register (depend on FSI version) */
48 49
#define A_MST_CTLR	0x0180
#define B_MST_CTLR	0x01A0
50 51 52
#define CPU_INT_ST	0x01F4
#define CPU_IEMSK	0x01F8
#define CPU_IMSK	0x01FC
53 54 55 56 57 58
#define INT_ST		0x0200
#define IEMSK		0x0204
#define IMSK		0x0208

/* DO_FMT */
/* DI_FMT */
59
#define CR_BWS_MASK	(0x3 << 20) /* FSI2 */
60 61 62 63 64 65 66 67
#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 */

68 69 70 71 72 73
#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)
74

75 76 77 78 79 80 81 82 83
/* OUT_DMAC */
/* IN_DMAC */
#define VDMD_MASK	(0x3 << 4)
#define VDMD_FRONT	(0x0 << 4) /* Package in front */
#define VDMD_BACK	(0x1 << 4) /* Package in back */
#define VDMD_STREAM	(0x2 << 4) /* Stream mode(16bit * 2) */

#define DMA_ON		(0x1 << 0)

84 85 86 87 88 89 90 91
/* DOFF_CTL */
/* DIFF_CTL */
#define IRQ_HALF	0x00100000
#define FIFO_CLR	0x00000001

/* DOFF_ST */
#define ERR_OVER	0x00000010
#define ERR_UNDER	0x00000001
92
#define ST_ERR		(ERR_OVER | ERR_UNDER)
93

94 95 96
/* CKG1 */
#define ACKMD_MASK	0x00007000
#define BPFMD_MASK	0x00000700
97 98
#define DIMD		(1 << 4)
#define DOMD		(1 << 0)
99

100 101 102 103
/* A/B MST_CTLR */
#define BP	(1 << 4)	/* Fix the signal of Biphase output */
#define SE	(1 << 0)	/* Fix the master clock */

104
/* CLK_RST */
105 106
#define CRB	(1 << 4)
#define CRA	(1 << 0)
107

108 109 110 111 112 113
/* 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)
114

115 116 117 118 119 120
/* 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 */

121 122 123 124
/* OUT_SEL (FSI2) */
#define DMMD		(1 << 4) /* SPDIF output timing 0: Biphase only */
				 /*			1: Biphase and serial */

125
/* FIFO_SZ */
126
#define FIFO_SZ_MASK	0x7
127

128 129 130 131
#define FSI_RATES SNDRV_PCM_RATE_8000_96000

#define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)

132
typedef int (*set_rate_func)(struct device *dev, int rate, int enable);
133

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
/*
 * bus options
 *
 * 0x000000BA
 *
 * A : sample widtht 16bit setting
 * B : sample widtht 24bit setting
 */

#define SHIFT_16DATA		0
#define SHIFT_24DATA		4

#define PACKAGE_24BITBUS_BACK		0
#define PACKAGE_24BITBUS_FRONT		1
#define PACKAGE_16BITBUS_STREAM		2

#define BUSOP_SET(s, a)	((a) << SHIFT_ ## s ## DATA)
#define BUSOP_GET(s, a)	(((a) >> SHIFT_ ## s ## DATA) & 0xF)

153 154 155 156
/*
 * FSI driver use below type name for variable
 *
 * xxx_num	: number of data
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
 * xxx_pos	: position of data
 * xxx_capa	: capacity of data
 */

/*
 *	period/frame/sample image
 *
 * ex) PCM (2ch)
 *
 * period pos					   period pos
 *   [n]					     [n + 1]
 *   |<-------------------- period--------------------->|
 * ==|============================================ ... =|==
 *   |							|
 *   ||<-----  frame ----->|<------ frame ----->|  ...	|
 *   |+--------------------+--------------------+- ...	|
 *   ||[ sample ][ sample ]|[ sample ][ sample ]|  ...	|
 *   |+--------------------+--------------------+- ...	|
 * ==|============================================ ... =|==
 */

/*
 *	FSI FIFO image
 *
 *	|	     |
 *	|	     |
 *	| [ sample ] |
 *	| [ sample ] |
 *	| [ sample ] |
 *	| [ sample ] |
 *		--> go to codecs
188 189
 */

190 191 192
/*
 *		struct
 */
193

194
struct fsi_stream_handler;
195
struct fsi_stream {
196

197 198 199 200
	/*
	 * these are initialized by fsi_stream_init()
	 */
	struct snd_pcm_substream *substream;
201 202 203 204 205
	int fifo_sample_capa;	/* sample capacity of FSI FIFO */
	int buff_sample_capa;	/* sample capacity of ALSA buffer */
	int buff_sample_pos;	/* sample position of ALSA buffer */
	int period_samples;	/* sample number / 1 period */
	int period_pos;		/* current period position */
206
	int sample_width;	/* sample width */
207 208
	int uerr_num;
	int oerr_num;
209

210 211 212 213 214
	/*
	 * bus options
	 */
	u32 bus_option;

215 216 217 218 219
	/*
	 * thse are initialized by fsi_handler_init()
	 */
	struct fsi_stream_handler *handler;
	struct fsi_priv		*priv;
220 221 222 223 224 225 226 227

	/*
	 * these are for DMAEngine
	 */
	struct dma_chan		*chan;
	struct sh_dmae_slave	slave; /* see fsi_handler_init() */
	struct tasklet_struct	tasklet;
	dma_addr_t		dma;
228 229 230 231 232
};

struct fsi_priv {
	void __iomem *base;
	struct fsi_master *master;
233
	struct sh_fsi_port_info *info;
234 235 236

	struct fsi_stream playback;
	struct fsi_stream capture;
237

238
	u32 fmt;
239

240 241
	int chan_num:16;
	int clk_master:1;
242
	int spdif:1;
243

244
	long rate;
245 246
};

247
struct fsi_stream_handler {
248 249
	int (*init)(struct fsi_priv *fsi, struct fsi_stream *io);
	int (*quit)(struct fsi_priv *fsi, struct fsi_stream *io);
250
	int (*probe)(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev);
251 252
	int (*transfer)(struct fsi_priv *fsi, struct fsi_stream *io);
	int (*remove)(struct fsi_priv *fsi, struct fsi_stream *io);
253 254
	void (*start_stop)(struct fsi_priv *fsi, struct fsi_stream *io,
			   int enable);
255 256 257 258 259 260
};
#define fsi_stream_handler_call(io, func, args...)	\
	(!(io) ? -ENODEV :				\
	 !((io)->handler->func) ? 0 :			\
	 (io)->handler->func(args))

261 262 263
struct fsi_core {
	int ver;

264 265 266
	u32 int_st;
	u32 iemsk;
	u32 imsk;
267 268
	u32 a_mclk;
	u32 b_mclk;
269 270
};

271 272 273 274 275
struct fsi_master {
	void __iomem *base;
	int irq;
	struct fsi_priv fsia;
	struct fsi_priv fsib;
276
	struct fsi_core *core;
277
	spinlock_t lock;
278 279
};

280 281
static int fsi_stream_is_play(struct fsi_priv *fsi, struct fsi_stream *io);

282 283 284
/*
 *		basic read write function
 */
285

286
static void __fsi_reg_write(u32 __iomem *reg, u32 data)
287 288 289 290
{
	/* valid data area is 24bit */
	data &= 0x00ffffff;

291
	__raw_writel(data, reg);
292 293
}

294
static u32 __fsi_reg_read(u32 __iomem *reg)
295
{
296
	return __raw_readl(reg);
297 298
}

299
static void __fsi_reg_mask_set(u32 __iomem *reg, u32 mask, u32 data)
300 301 302 303 304 305
{
	u32 val = __fsi_reg_read(reg);

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

306
	__fsi_reg_write(reg, val);
307 308
}

309
#define fsi_reg_write(p, r, d)\
310
	__fsi_reg_write((p->base + REG_##r), d)
311

312
#define fsi_reg_read(p, r)\
313
	__fsi_reg_read((p->base + REG_##r))
314

315
#define fsi_reg_mask_set(p, r, m, d)\
316
	__fsi_reg_mask_set((p->base + REG_##r), m, d)
317

318 319 320
#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)
321
{
322 323 324 325
	u32 ret;
	unsigned long flags;

	spin_lock_irqsave(&master->lock, flags);
326
	ret = __fsi_reg_read(master->base + reg);
327 328 329
	spin_unlock_irqrestore(&master->lock, flags);

	return ret;
330 331
}

332 333 334
#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,
335
			       u32 reg, u32 mask, u32 data)
336
{
337 338 339
	unsigned long flags;

	spin_lock_irqsave(&master->lock, flags);
340
	__fsi_reg_mask_set(master->base + reg, mask, data);
341
	spin_unlock_irqrestore(&master->lock, flags);
342 343
}

344 345 346
/*
 *		basic function
 */
347 348 349 350
static int fsi_version(struct fsi_master *master)
{
	return master->core->ver;
}
351

352
static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
353
{
354
	return fsi->master;
355 356
}

357 358 359 360 361
static int fsi_is_clk_master(struct fsi_priv *fsi)
{
	return fsi->clk_master;
}

362 363
static int fsi_is_port_a(struct fsi_priv *fsi)
{
364 365
	return fsi->master->base == fsi->base;
}
366

367 368 369 370 371
static int fsi_is_spdif(struct fsi_priv *fsi)
{
	return fsi->spdif;
}

372 373 374 375 376
static int fsi_is_play(struct snd_pcm_substream *substream)
{
	return substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
}

377
static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
378 379
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
380

381
	return  rtd->cpu_dai;
382 383
}

384
static struct fsi_priv *fsi_get_priv_frm_dai(struct snd_soc_dai *dai)
385
{
386
	struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
387

388 389 390 391
	if (dai->id == 0)
		return &master->fsia;
	else
		return &master->fsib;
392 393
}

394 395 396 397 398
static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
{
	return fsi_get_priv_frm_dai(fsi_get_dai(substream));
}

399
static set_rate_func fsi_get_info_set_rate(struct fsi_priv *fsi)
400
{
401
	if (!fsi->info)
402 403
		return NULL;

404
	return fsi->info->set_rate;
405 406
}

407 408
static u32 fsi_get_info_flags(struct fsi_priv *fsi)
{
409
	if (!fsi->info)
410 411
		return 0;

412
	return fsi->info->flags;
413 414
}

415
static u32 fsi_get_port_shift(struct fsi_priv *fsi, struct fsi_stream *io)
416
{
417
	int is_play = fsi_stream_is_play(fsi, io);
418
	int is_porta = fsi_is_port_a(fsi);
419
	u32 shift;
420 421

	if (is_porta)
422
		shift = is_play ? AO_SHIFT : AI_SHIFT;
423
	else
424
		shift = is_play ? BO_SHIFT : BI_SHIFT;
425

426
	return shift;
427 428
}

429 430 431 432 433 434 435 436 437 438
static int fsi_frame2sample(struct fsi_priv *fsi, int frames)
{
	return frames * fsi->chan_num;
}

static int fsi_sample2frame(struct fsi_priv *fsi, int samples)
{
	return samples / fsi->chan_num;
}

439 440
static int fsi_get_current_fifo_samples(struct fsi_priv *fsi,
					struct fsi_stream *io)
441
{
442
	int is_play = fsi_stream_is_play(fsi, io);
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
	u32 status;
	int frames;

	status = is_play ?
		fsi_reg_read(fsi, DOFF_ST) :
		fsi_reg_read(fsi, DIFF_ST);

	frames = 0x1ff & (status >> 8);

	return fsi_frame2sample(fsi, frames);
}

static void fsi_count_fifo_err(struct fsi_priv *fsi)
{
	u32 ostatus = fsi_reg_read(fsi, DOFF_ST);
	u32 istatus = fsi_reg_read(fsi, DIFF_ST);

	if (ostatus & ERR_OVER)
		fsi->playback.oerr_num++;

	if (ostatus & ERR_UNDER)
		fsi->playback.uerr_num++;

	if (istatus & ERR_OVER)
		fsi->capture.oerr_num++;

	if (istatus & ERR_UNDER)
		fsi->capture.uerr_num++;

	fsi_reg_write(fsi, DOFF_ST, 0);
	fsi_reg_write(fsi, DIFF_ST, 0);
}

/*
 *		fsi_stream_xx() function
 */
479 480
static inline int fsi_stream_is_play(struct fsi_priv *fsi,
				     struct fsi_stream *io)
481
{
482
	return &fsi->playback == io;
483 484 485
}

static inline struct fsi_stream *fsi_stream_get(struct fsi_priv *fsi,
486
					struct snd_pcm_substream *substream)
487
{
488
	return fsi_is_play(substream) ? &fsi->playback : &fsi->capture;
489 490
}

491
static int fsi_stream_is_working(struct fsi_priv *fsi,
492
				 struct fsi_stream *io)
493 494 495 496 497 498
{
	struct fsi_master *master = fsi_get_master(fsi);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&master->lock, flags);
499
	ret = !!(io->substream && io->substream->runtime);
500 501 502 503 504
	spin_unlock_irqrestore(&master->lock, flags);

	return ret;
}

505 506 507 508 509
static struct fsi_priv *fsi_stream_to_priv(struct fsi_stream *io)
{
	return io->priv;
}

510
static void fsi_stream_init(struct fsi_priv *fsi,
511
			    struct fsi_stream *io,
512
			    struct snd_pcm_substream *substream)
513
{
514
	struct snd_pcm_runtime *runtime = substream->runtime;
515 516
	struct fsi_master *master = fsi_get_master(fsi);
	unsigned long flags;
517

518
	spin_lock_irqsave(&master->lock, flags);
519
	io->substream	= substream;
520 521 522 523
	io->buff_sample_capa	= fsi_frame2sample(fsi, runtime->buffer_size);
	io->buff_sample_pos	= 0;
	io->period_samples	= fsi_frame2sample(fsi, runtime->period_size);
	io->period_pos		= 0;
524
	io->sample_width	= samples_to_bytes(runtime, 1);
525
	io->bus_option		= 0;
526 527
	io->oerr_num	= -1; /* ignore 1st err */
	io->uerr_num	= -1; /* ignore 1st err */
528
	fsi_stream_handler_call(io, init, fsi, io);
529
	spin_unlock_irqrestore(&master->lock, flags);
530 531
}

532
static void fsi_stream_quit(struct fsi_priv *fsi, struct fsi_stream *io)
533
{
534
	struct snd_soc_dai *dai = fsi_get_dai(io->substream);
535 536
	struct fsi_master *master = fsi_get_master(fsi);
	unsigned long flags;
537

538
	spin_lock_irqsave(&master->lock, flags);
539 540 541 542 543 544

	if (io->oerr_num > 0)
		dev_err(dai->dev, "over_run = %d\n", io->oerr_num);

	if (io->uerr_num > 0)
		dev_err(dai->dev, "under_run = %d\n", io->uerr_num);
545

546
	fsi_stream_handler_call(io, quit, fsi, io);
547
	io->substream	= NULL;
548 549 550 551
	io->buff_sample_capa	= 0;
	io->buff_sample_pos	= 0;
	io->period_samples	= 0;
	io->period_pos		= 0;
552
	io->sample_width	= 0;
553
	io->bus_option		= 0;
554 555
	io->oerr_num	= 0;
	io->uerr_num	= 0;
556
	spin_unlock_irqrestore(&master->lock, flags);
557 558
}

559 560 561 562 563 564 565 566 567
static int fsi_stream_transfer(struct fsi_stream *io)
{
	struct fsi_priv *fsi = fsi_stream_to_priv(io);
	if (!fsi)
		return -EIO;

	return fsi_stream_handler_call(io, transfer, fsi, io);
}

568 569 570 571 572 573
#define fsi_stream_start(fsi, io)\
	fsi_stream_handler_call(io, start_stop, fsi, io, 1)

#define fsi_stream_stop(fsi, io)\
	fsi_stream_handler_call(io, start_stop, fsi, io, 0)

574
static int fsi_stream_probe(struct fsi_priv *fsi, struct device *dev)
575 576 577 578 579
{
	struct fsi_stream *io;
	int ret1, ret2;

	io = &fsi->playback;
580
	ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev);
581 582

	io = &fsi->capture;
583
	ret2 = fsi_stream_handler_call(io, probe, fsi, io, dev);
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611

	if (ret1 < 0)
		return ret1;
	if (ret2 < 0)
		return ret2;

	return 0;
}

static int fsi_stream_remove(struct fsi_priv *fsi)
{
	struct fsi_stream *io;
	int ret1, ret2;

	io = &fsi->playback;
	ret1 = fsi_stream_handler_call(io, remove, fsi, io);

	io = &fsi->capture;
	ret2 = fsi_stream_handler_call(io, remove, fsi, io);

	if (ret1 < 0)
		return ret1;
	if (ret2 < 0)
		return ret2;

	return 0;
}

612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 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
/*
 *	format/bus/dma setting
 */
static void fsi_format_bus_setup(struct fsi_priv *fsi, struct fsi_stream *io,
				 u32 bus, struct device *dev)
{
	struct fsi_master *master = fsi_get_master(fsi);
	int is_play = fsi_stream_is_play(fsi, io);
	u32 fmt = fsi->fmt;

	if (fsi_version(master) >= 2) {
		u32 dma = 0;

		/*
		 * FSI2 needs DMA/Bus setting
		 */
		switch (bus) {
		case PACKAGE_24BITBUS_FRONT:
			fmt |= CR_BWS_24;
			dma |= VDMD_FRONT;
			dev_dbg(dev, "24bit bus / package in front\n");
			break;
		case PACKAGE_16BITBUS_STREAM:
			fmt |= CR_BWS_16;
			dma |= VDMD_STREAM;
			dev_dbg(dev, "16bit bus / stream mode\n");
			break;
		case PACKAGE_24BITBUS_BACK:
		default:
			fmt |= CR_BWS_24;
			dma |= VDMD_BACK;
			dev_dbg(dev, "24bit bus / package in back\n");
			break;
		}

		if (is_play)
			fsi_reg_write(fsi, OUT_DMAC,	dma);
		else
			fsi_reg_write(fsi, IN_DMAC,	dma);
	}

	if (is_play)
		fsi_reg_write(fsi, DO_FMT, fmt);
	else
		fsi_reg_write(fsi, DI_FMT, fmt);
}

659 660 661
/*
 *		irq function
 */
662

663
static void fsi_irq_enable(struct fsi_priv *fsi, struct fsi_stream *io)
664
{
665
	u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
666
	struct fsi_master *master = fsi_get_master(fsi);
667

668 669
	fsi_core_mask_set(master, imsk,  data, data);
	fsi_core_mask_set(master, iemsk, data, data);
670 671
}

672
static void fsi_irq_disable(struct fsi_priv *fsi, struct fsi_stream *io)
673
{
674
	u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
675
	struct fsi_master *master = fsi_get_master(fsi);
676

677 678
	fsi_core_mask_set(master, imsk,  data, 0);
	fsi_core_mask_set(master, iemsk, data, 0);
679 680
}

681 682
static u32 fsi_irq_get_status(struct fsi_master *master)
{
683
	return fsi_core_read(master, int_st);
684 685 686 687 688 689 690
}

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

691 692
	data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->playback));
	data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->capture));
693 694

	/* clear interrupt factor */
695
	fsi_core_mask_set(master, int_st, data, 0);
696 697
}

698 699 700 701 702
/*
 *		SPDIF master clock function
 *
 * These functions are used later FSI2
 */
703 704 705
static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
{
	struct fsi_master *master = fsi_get_master(fsi);
706
	u32 mask, val;
707

708 709 710 711
	mask = BP | SE;
	val = enable ? mask : 0;

	fsi_is_port_a(fsi) ?
712 713
		fsi_core_mask_set(master, a_mclk, mask, val) :
		fsi_core_mask_set(master, b_mclk, mask, val);
714 715
}

716
/*
717
 *		clock function
718
 */
719 720 721
static int fsi_set_master_clk(struct device *dev, struct fsi_priv *fsi,
			      long rate, int enable)
{
722
	set_rate_func set_rate = fsi_get_info_set_rate(fsi);
723 724
	int ret;

725 726 727 728
	if (!set_rate)
		return 0;

	ret = set_rate(dev, rate, enable);
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
	if (ret < 0) /* error */
		return ret;

	if (!enable)
		return 0;

	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:
754
			data |= (0x4 << 12);
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
			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:
777
			data |= (0x7 << 8);
778 779 780 781 782 783 784 785 786 787 788
			break;
		}

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

	return ret;
}

789
/*
790
 *		pio data transfer handler
791
 */
792 793
static void fsi_pio_push16(struct fsi_priv *fsi, u8 *_buf, int samples)
{
794
	u32 enable_stream = fsi_get_info_flags(fsi) & SH_FSI_ENABLE_STREAM_MODE;
795 796
	int i;

797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
	if (enable_stream) {
		/*
		 * stream mode
		 * see
		 *	fsi_pio_push_init()
		 */
		u32 *buf = (u32 *)_buf;

		for (i = 0; i < samples / 2; i++)
			fsi_reg_write(fsi, DODT, buf[i]);
	} else {
		/* normal mode */
		u16 *buf = (u16 *)_buf;

		for (i = 0; i < samples; i++)
			fsi_reg_write(fsi, DODT, ((u32)*(buf + i) << 8));
	}
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
}

static void fsi_pio_pop16(struct fsi_priv *fsi, u8 *_buf, int samples)
{
	u16 *buf = (u16 *)_buf;
	int i;

	for (i = 0; i < samples; i++)
		*(buf + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
}

static void fsi_pio_push32(struct fsi_priv *fsi, u8 *_buf, int samples)
{
	u32 *buf = (u32 *)_buf;
	int i;

	for (i = 0; i < samples; i++)
		fsi_reg_write(fsi, DODT, *(buf + i));
}

static void fsi_pio_pop32(struct fsi_priv *fsi, u8 *_buf, int samples)
{
	u32 *buf = (u32 *)_buf;
	int i;

	for (i = 0; i < samples; i++)
		*(buf + i) = fsi_reg_read(fsi, DIDT);
}

static u8 *fsi_pio_get_area(struct fsi_priv *fsi, struct fsi_stream *io)
{
	struct snd_pcm_runtime *runtime = io->substream->runtime;

	return runtime->dma_area +
		samples_to_bytes(runtime, io->buff_sample_pos);
}

static int fsi_pio_transfer(struct fsi_priv *fsi, struct fsi_stream *io,
852 853 854
		void (*run16)(struct fsi_priv *fsi, u8 *buf, int samples),
		void (*run32)(struct fsi_priv *fsi, u8 *buf, int samples),
		int samples)
855 856
{
	struct snd_pcm_runtime *runtime;
857
	struct snd_pcm_substream *substream;
858
	u8 *buf;
859
	int over_period;
860

861
	if (!fsi_stream_is_working(fsi, io))
862 863
		return -EINVAL;

864
	over_period	= 0;
865
	substream	= io->substream;
866
	runtime		= substream->runtime;
867 868 869 870

	/* FSI FIFO has limit.
	 * So, this driver can not send periods data at a time
	 */
871 872
	if (io->buff_sample_pos >=
	    io->period_samples * (io->period_pos + 1)) {
873

874
		over_period = 1;
875
		io->period_pos = (io->period_pos + 1) % runtime->periods;
876

877 878
		if (0 == io->period_pos)
			io->buff_sample_pos = 0;
879 880
	}

881 882
	buf = fsi_pio_get_area(fsi, io);

883 884
	switch (io->sample_width) {
	case 2:
885
		run16(fsi, buf, samples);
886 887
		break;
	case 4:
888
		run32(fsi, buf, samples);
889 890 891
		break;
	default:
		return -EINVAL;
892
	}
893

894 895
	/* update buff_sample_pos */
	io->buff_sample_pos += samples;
896

897
	if (over_period)
898 899
		snd_pcm_period_elapsed(substream);

900
	return 0;
901 902
}

903
static int fsi_pio_pop(struct fsi_priv *fsi, struct fsi_stream *io)
904
{
905 906 907 908
	int sample_residues;	/* samples in FSI fifo */
	int sample_space;	/* ALSA free samples space */
	int samples;

909
	sample_residues	= fsi_get_current_fifo_samples(fsi, io);
910 911 912 913
	sample_space	= io->buff_sample_capa - io->buff_sample_pos;

	samples = min(sample_residues, sample_space);

914
	return fsi_pio_transfer(fsi, io,
915 916
				  fsi_pio_pop16,
				  fsi_pio_pop32,
917
				  samples);
918
}
919

920
static int fsi_pio_push(struct fsi_priv *fsi, struct fsi_stream *io)
921
{
922 923 924 925 926 927
	int sample_residues;	/* ALSA residue samples */
	int sample_space;	/* FSI fifo free samples space */
	int samples;

	sample_residues	= io->buff_sample_capa - io->buff_sample_pos;
	sample_space	= io->fifo_sample_capa -
928
		fsi_get_current_fifo_samples(fsi, io);
929 930 931

	samples = min(sample_residues, sample_space);

932
	return fsi_pio_transfer(fsi, io,
933 934
				  fsi_pio_push16,
				  fsi_pio_push32,
935
				  samples);
936 937
}

938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
static void fsi_pio_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
			       int enable)
{
	struct fsi_master *master = fsi_get_master(fsi);
	u32 clk  = fsi_is_port_a(fsi) ? CRA  : CRB;

	if (enable)
		fsi_irq_enable(fsi, io);
	else
		fsi_irq_disable(fsi, io);

	if (fsi_is_clk_master(fsi))
		fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
}

953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
static int fsi_pio_push_init(struct fsi_priv *fsi, struct fsi_stream *io)
{
	u32 enable_stream = fsi_get_info_flags(fsi) & SH_FSI_ENABLE_STREAM_MODE;

	/*
	 * we can use 16bit stream mode
	 * when "playback" and "16bit data"
	 * and platform allows "stream mode"
	 * see
	 *	fsi_pio_push16()
	 */
	if (enable_stream)
		io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
				 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM);
	else
		io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
				 BUSOP_SET(16, PACKAGE_24BITBUS_BACK);
	return 0;
}

static int fsi_pio_pop_init(struct fsi_priv *fsi, struct fsi_stream *io)
{
	/*
	 * always 24bit bus, package back when "capture"
	 */
	io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
			 BUSOP_SET(16, PACKAGE_24BITBUS_BACK);
	return 0;
}

983
static struct fsi_stream_handler fsi_pio_push_handler = {
984
	.init		= fsi_pio_push_init,
985
	.transfer	= fsi_pio_push,
986
	.start_stop	= fsi_pio_start_stop,
987 988 989
};

static struct fsi_stream_handler fsi_pio_pop_handler = {
990
	.init		= fsi_pio_pop_init,
991
	.transfer	= fsi_pio_pop,
992
	.start_stop	= fsi_pio_start_stop,
993 994
};

995 996
static irqreturn_t fsi_interrupt(int irq, void *data)
{
997
	struct fsi_master *master = data;
998
	u32 int_st = fsi_irq_get_status(master);
999 1000

	/* clear irq status */
1001 1002
	fsi_master_mask_set(master, SOFT_RST, IR, 0);
	fsi_master_mask_set(master, SOFT_RST, IR, IR);
1003

1004
	if (int_st & AB_IO(1, AO_SHIFT))
1005
		fsi_stream_transfer(&master->fsia.playback);
1006
	if (int_st & AB_IO(1, BO_SHIFT))
1007
		fsi_stream_transfer(&master->fsib.playback);
1008
	if (int_st & AB_IO(1, AI_SHIFT))
1009
		fsi_stream_transfer(&master->fsia.capture);
1010
	if (int_st & AB_IO(1, BI_SHIFT))
1011
		fsi_stream_transfer(&master->fsib.capture);
1012 1013 1014

	fsi_count_fifo_err(&master->fsia);
	fsi_count_fifo_err(&master->fsib);
1015

1016 1017
	fsi_irq_clear_status(&master->fsia);
	fsi_irq_clear_status(&master->fsib);
1018 1019 1020 1021

	return IRQ_HANDLED;
}

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
/*
 *		dma data transfer handler
 */
static int fsi_dma_init(struct fsi_priv *fsi, struct fsi_stream *io)
{
	struct snd_pcm_runtime *runtime = io->substream->runtime;
	struct snd_soc_dai *dai = fsi_get_dai(io->substream);
	enum dma_data_direction dir = fsi_stream_is_play(fsi, io) ?
				DMA_TO_DEVICE : DMA_FROM_DEVICE;

1032 1033 1034 1035 1036 1037 1038
	/*
	 * 24bit data : 24bit bus / package in back
	 * 16bit data : 16bit bus / stream mode
	 */
	io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
			 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM);

1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
	io->dma = dma_map_single(dai->dev, runtime->dma_area,
				 snd_pcm_lib_buffer_bytes(io->substream), dir);
	return 0;
}

static int fsi_dma_quit(struct fsi_priv *fsi, struct fsi_stream *io)
{
	struct snd_soc_dai *dai = fsi_get_dai(io->substream);
	enum dma_data_direction dir = fsi_stream_is_play(fsi, io) ?
		DMA_TO_DEVICE : DMA_FROM_DEVICE;

	dma_unmap_single(dai->dev, io->dma,
			 snd_pcm_lib_buffer_bytes(io->substream), dir);
	return 0;
}

1055 1056 1057 1058 1059 1060 1061
static dma_addr_t fsi_dma_get_area(struct fsi_stream *io)
{
	struct snd_pcm_runtime *runtime = io->substream->runtime;

	return io->dma + samples_to_bytes(runtime, io->buff_sample_pos);
}

1062 1063 1064 1065 1066 1067 1068 1069 1070
static void fsi_dma_complete(void *data)
{
	struct fsi_stream *io = (struct fsi_stream *)data;
	struct fsi_priv *fsi = fsi_stream_to_priv(io);
	struct snd_pcm_runtime *runtime = io->substream->runtime;
	struct snd_soc_dai *dai = fsi_get_dai(io->substream);
	enum dma_data_direction dir = fsi_stream_is_play(fsi, io) ?
		DMA_TO_DEVICE : DMA_FROM_DEVICE;

1071
	dma_sync_single_for_cpu(dai->dev, fsi_dma_get_area(io),
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
			samples_to_bytes(runtime, io->period_samples), dir);

	io->buff_sample_pos += io->period_samples;
	io->period_pos++;

	if (io->period_pos >= runtime->periods) {
		io->period_pos = 0;
		io->buff_sample_pos = 0;
	}

	fsi_count_fifo_err(fsi);
	fsi_stream_transfer(io);

	snd_pcm_period_elapsed(io->substream);
}

static void fsi_dma_do_tasklet(unsigned long data)
{
	struct fsi_stream *io = (struct fsi_stream *)data;
	struct fsi_priv *fsi = fsi_stream_to_priv(io);
	struct snd_soc_dai *dai;
	struct dma_async_tx_descriptor *desc;
	struct snd_pcm_runtime *runtime;
	enum dma_data_direction dir;
	int is_play = fsi_stream_is_play(fsi, io);
	int len;
	dma_addr_t buf;

	if (!fsi_stream_is_working(fsi, io))
		return;

	dai	= fsi_get_dai(io->substream);
	runtime	= io->substream->runtime;
	dir	= is_play ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
	len	= samples_to_bytes(runtime, io->period_samples);
	buf	= fsi_dma_get_area(io);

1109
	dma_sync_single_for_device(dai->dev, buf, len, dir);
1110

1111 1112
	desc = dmaengine_prep_slave_single(io->chan, buf, len, dir,
					   DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1113
	if (!desc) {
1114
		dev_err(dai->dev, "dmaengine_prep_slave_sg() fail\n");
1115 1116 1117 1118 1119 1120
		return;
	}

	desc->callback		= fsi_dma_complete;
	desc->callback_param	= io;

1121
	if (dmaengine_submit(desc) < 0) {
1122 1123 1124 1125
		dev_err(dai->dev, "tx_submit() fail\n");
		return;
	}

1126
	dma_async_issue_pending(io->chan);
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163

	/*
	 * FIXME
	 *
	 * In DMAEngine case, codec and FSI cannot be started simultaneously
	 * since FSI is using tasklet.
	 * Therefore, in capture case, probably FSI FIFO will have got
	 * overflow error in this point.
	 * in that case, DMA cannot start transfer until error was cleared.
	 */
	if (!is_play) {
		if (ERR_OVER & fsi_reg_read(fsi, DIFF_ST)) {
			fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
			fsi_reg_write(fsi, DIFF_ST, 0);
		}
	}
}

static bool fsi_dma_filter(struct dma_chan *chan, void *param)
{
	struct sh_dmae_slave *slave = param;

	chan->private = slave;

	return true;
}

static int fsi_dma_transfer(struct fsi_priv *fsi, struct fsi_stream *io)
{
	tasklet_schedule(&io->tasklet);

	return 0;
}

static void fsi_dma_push_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
				 int start)
{
1164 1165
	struct fsi_master *master = fsi_get_master(fsi);
	u32 clk  = fsi_is_port_a(fsi) ? CRA  : CRB;
1166
	u32 enable = start ? DMA_ON : 0;
1167

1168
	fsi_reg_mask_set(fsi, OUT_DMAC, DMA_ON, enable);
1169

1170 1171
	dmaengine_terminate_all(io->chan);

1172 1173
	if (fsi_is_clk_master(fsi))
		fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
1174 1175
}

1176
static int fsi_dma_probe(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev)
1177 1178 1179 1180 1181 1182 1183
{
	dma_cap_mask_t mask;

	dma_cap_zero(mask);
	dma_cap_set(DMA_SLAVE, mask);

	io->chan = dma_request_channel(mask, fsi_dma_filter, &io->slave);
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
	if (!io->chan) {

		/* switch to PIO handler */
		if (fsi_stream_is_play(fsi, io))
			fsi->playback.handler	= &fsi_pio_push_handler;
		else
			fsi->capture.handler	= &fsi_pio_pop_handler;

		dev_info(dev, "switch handler (dma => pio)\n");

		/* probe again */
		return fsi_stream_probe(fsi, dev);
	}
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224

	tasklet_init(&io->tasklet, fsi_dma_do_tasklet, (unsigned long)io);

	return 0;
}

static int fsi_dma_remove(struct fsi_priv *fsi, struct fsi_stream *io)
{
	tasklet_kill(&io->tasklet);

	fsi_stream_stop(fsi, io);

	if (io->chan)
		dma_release_channel(io->chan);

	io->chan = NULL;
	return 0;
}

static struct fsi_stream_handler fsi_dma_push_handler = {
	.init		= fsi_dma_init,
	.quit		= fsi_dma_quit,
	.probe		= fsi_dma_probe,
	.transfer	= fsi_dma_transfer,
	.remove		= fsi_dma_remove,
	.start_stop	= fsi_dma_push_start_stop,
};

1225 1226 1227
/*
 *		dai ops
 */
1228
static void fsi_fifo_init(struct fsi_priv *fsi,
1229
			  struct fsi_stream *io,
1230 1231 1232
			  struct device *dev)
{
	struct fsi_master *master = fsi_get_master(fsi);
1233
	int is_play = fsi_stream_is_play(fsi, io);
1234 1235 1236 1237 1238
	u32 shift, i;
	int frame_capa;

	/* get on-chip RAM capacity */
	shift = fsi_master_read(master, FIFO_SZ);
1239
	shift >>= fsi_get_port_shift(fsi, io);
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
	shift &= FIFO_SZ_MASK;
	frame_capa = 256 << shift;
	dev_dbg(dev, "fifo = %d words\n", frame_capa);

	/*
	 * 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)
	 */
	for (i = 1; i < fsi->chan_num; i <<= 1)
		frame_capa >>= 1;
	dev_dbg(dev, "%d channel %d store\n",
		fsi->chan_num, frame_capa);

	io->fifo_sample_capa = fsi_frame2sample(fsi, frame_capa);

	/*
	 * 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);
	}
}
1282

1283
static int fsi_hw_startup(struct fsi_priv *fsi,
1284
			  struct fsi_stream *io,
1285
			  struct device *dev)
1286
{
1287
	u32 flags = fsi_get_info_flags(fsi);
1288
	u32 data = 0;
1289

1290 1291 1292 1293 1294
	/* clock setting */
	if (fsi_is_clk_master(fsi))
		data = DIMD | DOMD;

	fsi_reg_mask_set(fsi, CKG1, (DIMD | DOMD), data);
1295 1296 1297

	/* clock inversion (CKG2) */
	data = 0;
1298 1299 1300 1301 1302 1303 1304 1305 1306
	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;

1307 1308
	fsi_reg_write(fsi, CKG2, data);

1309 1310 1311 1312 1313 1314
	/* spdif ? */
	if (fsi_is_spdif(fsi)) {
		fsi_spdif_clk_ctrl(fsi, 1);
		fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
	}

1315
	/*
1316
	 * get bus settings
1317
	 */
1318 1319 1320 1321 1322 1323 1324 1325
	data = 0;
	switch (io->sample_width) {
	case 2:
		data = BUSOP_GET(16, io->bus_option);
		break;
	case 4:
		data = BUSOP_GET(24, io->bus_option);
		break;
1326
	}
1327
	fsi_format_bus_setup(fsi, io, data, dev);
1328

1329
	/* irq clear */
1330
	fsi_irq_disable(fsi, io);
1331 1332 1333
	fsi_irq_clear_status(fsi);

	/* fifo init */
1334
	fsi_fifo_init(fsi, io, dev);
1335

1336
	return 0;
1337 1338
}

1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
static void fsi_hw_shutdown(struct fsi_priv *fsi,
			    struct device *dev)
{
	if (fsi_is_clk_master(fsi))
		fsi_set_master_clk(dev, fsi, fsi->rate, 0);
}

static int fsi_dai_startup(struct snd_pcm_substream *substream,
			   struct snd_soc_dai *dai)
{
	struct fsi_priv *fsi = fsi_get_priv(substream);

1351 1352 1353
	fsi->rate = 0;

	return 0;
1354 1355
}

1356 1357 1358
static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
			     struct snd_soc_dai *dai)
{
1359
	struct fsi_priv *fsi = fsi_get_priv(substream);
1360

1361
	fsi->rate = 0;
1362 1363 1364 1365 1366
}

static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
			   struct snd_soc_dai *dai)
{
1367
	struct fsi_priv *fsi = fsi_get_priv(substream);
1368
	struct fsi_stream *io = fsi_stream_get(fsi, substream);
1369 1370 1371 1372
	int ret = 0;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
1373
		fsi_stream_init(fsi, io, substream);
1374
		fsi_hw_startup(fsi, io, dai->dev);
1375 1376
		ret = fsi_stream_transfer(io);
		if (0 == ret)
1377
			fsi_stream_start(fsi, io);
1378 1379
		break;
	case SNDRV_PCM_TRIGGER_STOP:
1380
		fsi_hw_shutdown(fsi, dai->dev);
1381
		fsi_stream_stop(fsi, io);
1382
		fsi_stream_quit(fsi, io);
1383 1384 1385 1386 1387 1388
		break;
	}

	return ret;
}

1389 1390 1391 1392
static int fsi_set_fmt_dai(struct fsi_priv *fsi, unsigned int fmt)
{
	switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
	case SND_SOC_DAIFMT_I2S:
1393
		fsi->fmt = CR_I2S;
1394 1395 1396
		fsi->chan_num = 2;
		break;
	case SND_SOC_DAIFMT_LEFT_J:
1397
		fsi->fmt = CR_PCM;
1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
		fsi->chan_num = 2;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

static int fsi_set_fmt_spdif(struct fsi_priv *fsi)
{
	struct fsi_master *master = fsi_get_master(fsi);

1411
	if (fsi_version(master) < 2)
1412 1413
		return -EINVAL;

1414
	fsi->fmt = CR_DTMD_SPDIF_PCM | CR_PCM;
1415
	fsi->chan_num = 2;
1416
	fsi->spdif = 1;
1417 1418 1419 1420

	return 0;
}

1421 1422 1423
static int fsi_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
{
	struct fsi_priv *fsi = fsi_get_priv_frm_dai(dai);
1424
	set_rate_func set_rate = fsi_get_info_set_rate(fsi);
1425
	u32 flags = fsi_get_info_flags(fsi);
1426 1427 1428 1429 1430
	int ret;

	/* set master/slave audio interface */
	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
	case SND_SOC_DAIFMT_CBM_CFM:
1431
		fsi->clk_master = 1;
1432 1433 1434 1435
		break;
	case SND_SOC_DAIFMT_CBS_CFS:
		break;
	default:
1436
		return -EINVAL;
1437
	}
1438 1439 1440

	if (fsi_is_clk_master(fsi) && !set_rate) {
		dev_err(dai->dev, "platform doesn't have set_rate\n");
1441
		return -EINVAL;
1442 1443
	}

1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
	/* set format */
	switch (flags & SH_FSI_FMT_MASK) {
	case SH_FSI_FMT_DAI:
		ret = fsi_set_fmt_dai(fsi, fmt & SND_SOC_DAIFMT_FORMAT_MASK);
		break;
	case SH_FSI_FMT_SPDIF:
		ret = fsi_set_fmt_spdif(fsi);
		break;
	default:
		ret = -EINVAL;
	}
1455 1456 1457 1458

	return ret;
}

1459 1460 1461 1462 1463
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);
1464
	long rate = params_rate(params);
1465 1466
	int ret;

1467
	if (!fsi_is_clk_master(fsi))
1468 1469
		return 0;

1470 1471
	ret = fsi_set_master_clk(dai->dev, fsi, rate, 1);
	if (ret < 0)
1472
		return ret;
1473

1474
	fsi->rate = rate;
1475 1476 1477 1478

	return ret;
}

1479
static const struct snd_soc_dai_ops fsi_dai_ops = {
1480 1481 1482
	.startup	= fsi_dai_startup,
	.shutdown	= fsi_dai_shutdown,
	.trigger	= fsi_dai_trigger,
1483
	.set_fmt	= fsi_dai_set_fmt,
1484
	.hw_params	= fsi_dai_hw_params,
1485 1486
};

1487 1488 1489
/*
 *		pcm ops
 */
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536

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)
{
1537
	struct fsi_priv *fsi = fsi_get_priv(substream);
1538
	struct fsi_stream *io = fsi_stream_get(fsi, substream);
1539

1540
	return fsi_sample2frame(fsi, io->buff_sample_pos);
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
}

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,
};

1551 1552 1553
/*
 *		snd_soc_platform
 */
1554 1555 1556 1557 1558 1559 1560 1561 1562

#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);
}

1563
static int fsi_pcm_new(struct snd_soc_pcm_runtime *rtd)
1564
{
1565 1566
	struct snd_pcm *pcm = rtd->pcm;

1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
	/*
	 * 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);
}

1578 1579 1580
/*
 *		alsa struct
 */
1581

1582
static struct snd_soc_dai_driver fsi_soc_dai[] = {
1583
	{
1584
		.name			= "fsia-dai",
1585 1586 1587 1588 1589 1590
		.playback = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1591 1592 1593 1594 1595 1596
		.capture = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1597 1598 1599
		.ops = &fsi_dai_ops,
	},
	{
1600
		.name			= "fsib-dai",
1601 1602 1603 1604 1605 1606
		.playback = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1607 1608 1609 1610 1611 1612
		.capture = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
			.channels_min	= 1,
			.channels_max	= 8,
		},
1613 1614 1615 1616
		.ops = &fsi_dai_ops,
	},
};

1617 1618
static struct snd_soc_platform_driver fsi_soc_platform = {
	.ops		= &fsi_pcm_ops,
1619 1620 1621 1622
	.pcm_new	= fsi_pcm_new,
	.pcm_free	= fsi_pcm_free,
};

1623 1624 1625
/*
 *		platform function
 */
1626 1627 1628 1629 1630 1631
static void fsi_handler_init(struct fsi_priv *fsi)
{
	fsi->playback.handler	= &fsi_pio_push_handler; /* default PIO */
	fsi->playback.priv	= fsi;
	fsi->capture.handler	= &fsi_pio_pop_handler;  /* default PIO */
	fsi->capture.priv	= fsi;
1632 1633

	if (fsi->info->tx_id) {
1634 1635
		fsi->playback.slave.shdma_slave.slave_id = fsi->info->tx_id;
		fsi->playback.handler = &fsi_dma_push_handler;
1636
	}
1637
}
1638 1639 1640

static int fsi_probe(struct platform_device *pdev)
{
1641
	struct fsi_master *master;
1642
	const struct platform_device_id	*id_entry;
1643
	struct sh_fsi_platform_info *info = pdev->dev.platform_data;
1644 1645 1646 1647
	struct resource *res;
	unsigned int irq;
	int ret;

1648 1649 1650 1651 1652 1653
	id_entry = pdev->id_entry;
	if (!id_entry) {
		dev_err(&pdev->dev, "unknown fsi device\n");
		return -ENODEV;
	}

1654 1655
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	irq = platform_get_irq(pdev, 0);
1656
	if (!res || (int)irq <= 0) {
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
		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;
	}

1676
	/* master setting */
1677
	master->irq		= irq;
1678 1679 1680 1681
	master->core		= (struct fsi_core *)id_entry->driver_data;
	spin_lock_init(&master->lock);

	/* FSI A setting */
1682
	master->fsia.base	= master->base;
1683
	master->fsia.master	= master;
1684
	master->fsia.info	= &info->port_a;
1685
	fsi_handler_init(&master->fsia);
1686
	ret = fsi_stream_probe(&master->fsia, &pdev->dev);
1687 1688 1689 1690
	if (ret < 0) {
		dev_err(&pdev->dev, "FSIA stream probe failed\n");
		goto exit_iounmap;
	}
1691 1692

	/* FSI B setting */
1693
	master->fsib.base	= master->base + 0x40;
1694
	master->fsib.master	= master;
1695
	master->fsib.info	= &info->port_b;
1696
	fsi_handler_init(&master->fsib);
1697
	ret = fsi_stream_probe(&master->fsib, &pdev->dev);
1698 1699 1700 1701
	if (ret < 0) {
		dev_err(&pdev->dev, "FSIB stream probe failed\n");
		goto exit_fsia;
	}
1702

1703
	pm_runtime_enable(&pdev->dev);
1704
	dev_set_drvdata(&pdev->dev, master);
1705

Y
Yong Zhang 已提交
1706
	ret = request_irq(irq, &fsi_interrupt, 0,
1707
			  id_entry->name, master);
1708 1709
	if (ret) {
		dev_err(&pdev->dev, "irq request err\n");
1710
		goto exit_fsib;
1711 1712
	}

1713
	ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
1714 1715 1716 1717 1718
	if (ret < 0) {
		dev_err(&pdev->dev, "cannot snd soc register\n");
		goto exit_free_irq;
	}

1719 1720 1721 1722 1723 1724
	ret = snd_soc_register_dais(&pdev->dev, fsi_soc_dai,
				    ARRAY_SIZE(fsi_soc_dai));
	if (ret < 0) {
		dev_err(&pdev->dev, "cannot snd dai register\n");
		goto exit_snd_soc;
	}
1725

1726 1727 1728 1729
	return ret;

exit_snd_soc:
	snd_soc_unregister_platform(&pdev->dev);
1730 1731
exit_free_irq:
	free_irq(irq, master);
1732
exit_fsib:
1733
	pm_runtime_disable(&pdev->dev);
1734 1735 1736
	fsi_stream_remove(&master->fsib);
exit_fsia:
	fsi_stream_remove(&master->fsia);
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
exit_iounmap:
	iounmap(master->base);
exit_kfree:
	kfree(master);
exit:
	return ret;
}

static int fsi_remove(struct platform_device *pdev)
{
1747 1748
	struct fsi_master *master;

1749
	master = dev_get_drvdata(&pdev->dev);
1750

1751
	free_irq(master->irq, master);
1752
	pm_runtime_disable(&pdev->dev);
1753

1754 1755
	snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
	snd_soc_unregister_platform(&pdev->dev);
1756

1757 1758 1759
	fsi_stream_remove(&master->fsia);
	fsi_stream_remove(&master->fsib);

1760 1761
	iounmap(master->base);
	kfree(master);
1762

1763 1764 1765
	return 0;
}

1766
static void __fsi_suspend(struct fsi_priv *fsi,
1767
			  struct fsi_stream *io,
1768
			  struct device *dev)
1769
{
1770
	if (!fsi_stream_is_working(fsi, io))
1771
		return;
1772

1773
	fsi_stream_stop(fsi, io);
1774
	fsi_hw_shutdown(fsi, dev);
1775 1776 1777
}

static void __fsi_resume(struct fsi_priv *fsi,
1778
			 struct fsi_stream *io,
1779
			 struct device *dev)
1780
{
1781
	if (!fsi_stream_is_working(fsi, io))
1782
		return;
1783

1784
	fsi_hw_startup(fsi, io, dev);
1785 1786

	if (fsi_is_clk_master(fsi) && fsi->rate)
1787
		fsi_set_master_clk(dev, fsi, fsi->rate, 1);
1788

1789
	fsi_stream_start(fsi, io);
1790 1791 1792 1793 1794
}

static int fsi_suspend(struct device *dev)
{
	struct fsi_master *master = dev_get_drvdata(dev);
1795 1796
	struct fsi_priv *fsia = &master->fsia;
	struct fsi_priv *fsib = &master->fsib;
1797

1798 1799
	__fsi_suspend(fsia, &fsia->playback, dev);
	__fsi_suspend(fsia, &fsia->capture, dev);
1800

1801 1802
	__fsi_suspend(fsib, &fsib->playback, dev);
	__fsi_suspend(fsib, &fsib->capture, dev);
1803 1804 1805 1806 1807 1808 1809

	return 0;
}

static int fsi_resume(struct device *dev)
{
	struct fsi_master *master = dev_get_drvdata(dev);
1810 1811
	struct fsi_priv *fsia = &master->fsia;
	struct fsi_priv *fsib = &master->fsib;
1812

1813 1814
	__fsi_resume(fsia, &fsia->playback, dev);
	__fsi_resume(fsia, &fsia->capture, dev);
1815

1816 1817
	__fsi_resume(fsib, &fsib->playback, dev);
	__fsi_resume(fsib, &fsib->capture, dev);
1818 1819 1820 1821

	return 0;
}

1822
static struct dev_pm_ops fsi_pm_ops = {
1823 1824
	.suspend		= fsi_suspend,
	.resume			= fsi_resume,
1825 1826
};

1827 1828 1829 1830
static struct fsi_core fsi1_core = {
	.ver	= 1,

	/* Interrupt */
1831 1832 1833 1834 1835
	.int_st	= INT_ST,
	.iemsk	= IEMSK,
	.imsk	= IMSK,
};

1836 1837 1838 1839
static struct fsi_core fsi2_core = {
	.ver	= 2,

	/* Interrupt */
1840 1841 1842
	.int_st	= CPU_INT_ST,
	.iemsk	= CPU_IEMSK,
	.imsk	= CPU_IMSK,
1843 1844
	.a_mclk	= A_MST_CTLR,
	.b_mclk	= B_MST_CTLR,
1845 1846 1847
};

static struct platform_device_id fsi_id_table[] = {
1848 1849
	{ "sh_fsi",	(kernel_ulong_t)&fsi1_core },
	{ "sh_fsi2",	(kernel_ulong_t)&fsi2_core },
1850
	{},
1851
};
1852
MODULE_DEVICE_TABLE(platform, fsi_id_table);
1853

1854 1855
static struct platform_driver fsi_driver = {
	.driver 	= {
1856
		.name	= "fsi-pcm-audio",
1857
		.pm	= &fsi_pm_ops,
1858 1859 1860
	},
	.probe		= fsi_probe,
	.remove		= fsi_remove,
1861
	.id_table	= fsi_id_table,
1862 1863
};

1864
module_platform_driver(fsi_driver);
1865 1866 1867 1868

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
1869
MODULE_ALIAS("platform:fsi-pcm-audio");