fsi.c 45.6 KB
Newer Older
1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: GPL-2.0
//
// 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>
10 11

#include <linux/delay.h>
12
#include <linux/dma-mapping.h>
13
#include <linux/pm_runtime.h>
14
#include <linux/io.h>
15 16
#include <linux/of.h>
#include <linux/of_device.h>
17 18
#include <linux/scatterlist.h>
#include <linux/sh_dma.h>
19
#include <linux/slab.h>
20
#include <linux/module.h>
21
#include <linux/workqueue.h>
22
#include <sound/soc.h>
23
#include <sound/pcm_params.h>
24 25
#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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/*
 * 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)

151 152 153 154
/*
 * FSI driver use below type name for variable
 *
 * xxx_num	: number of data
155 156 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
 * 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
186 187
 */

188 189 190 191 192 193 194 195
/*
 *	FSI clock
 *
 * FSIxCLK [CPG] (ick) ------->	|
 *				|-> FSI_DIV (div)-> FSI2
 * FSIxCK [external] (xck) --->	|
 */

196 197 198
/*
 *		struct
 */
199

200
struct fsi_stream_handler;
201
struct fsi_stream {
202

203 204 205 206
	/*
	 * these are initialized by fsi_stream_init()
	 */
	struct snd_pcm_substream *substream;
207 208 209 210 211
	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 */
212
	int sample_width;	/* sample width */
213 214
	int uerr_num;
	int oerr_num;
215

216 217 218 219 220
	/*
	 * bus options
	 */
	u32 bus_option;

221 222 223 224 225
	/*
	 * thse are initialized by fsi_handler_init()
	 */
	struct fsi_stream_handler *handler;
	struct fsi_priv		*priv;
226 227 228 229 230

	/*
	 * these are for DMAEngine
	 */
	struct dma_chan		*chan;
231
	int			dma_id;
232 233
};

234 235 236 237 238 239 240
struct fsi_clk {
	/* see [FSI clock] */
	struct clk *own;
	struct clk *xck;
	struct clk *ick;
	struct clk *div;
	int (*set_rate)(struct device *dev,
241
			struct fsi_priv *fsi);
242 243 244 245 246

	unsigned long rate;
	unsigned int count;
};

247 248
struct fsi_priv {
	void __iomem *base;
249
	phys_addr_t phys;
250 251 252 253
	struct fsi_master *master;

	struct fsi_stream playback;
	struct fsi_stream capture;
254

255 256
	struct fsi_clk clock;

257
	u32 fmt;
258

259
	int chan_num:16;
260 261 262 263 264 265
	unsigned int clk_master:1;
	unsigned int clk_cpg:1;
	unsigned int spdif:1;
	unsigned int enable_stream:1;
	unsigned int bit_clk_inv:1;
	unsigned int lr_clk_inv:1;
266 267
};

268
struct fsi_stream_handler {
269 270
	int (*init)(struct fsi_priv *fsi, struct fsi_stream *io);
	int (*quit)(struct fsi_priv *fsi, struct fsi_stream *io);
271
	int (*probe)(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev);
272 273
	int (*transfer)(struct fsi_priv *fsi, struct fsi_stream *io);
	int (*remove)(struct fsi_priv *fsi, struct fsi_stream *io);
274
	int (*start_stop)(struct fsi_priv *fsi, struct fsi_stream *io,
275
			   int enable);
276 277 278 279 280 281
};
#define fsi_stream_handler_call(io, func, args...)	\
	(!(io) ? -ENODEV :				\
	 !((io)->handler->func) ? 0 :			\
	 (io)->handler->func(args))

282 283 284
struct fsi_core {
	int ver;

285 286 287
	u32 int_st;
	u32 iemsk;
	u32 imsk;
288 289
	u32 a_mclk;
	u32 b_mclk;
290 291
};

292 293 294 295
struct fsi_master {
	void __iomem *base;
	struct fsi_priv fsia;
	struct fsi_priv fsib;
296
	const struct fsi_core *core;
297
	spinlock_t lock;
298 299
};

300 301 302 303 304 305
static inline int fsi_stream_is_play(struct fsi_priv *fsi,
				     struct fsi_stream *io)
{
	return &fsi->playback == io;
}

306

307 308 309
/*
 *		basic read write function
 */
310

311
static void __fsi_reg_write(u32 __iomem *reg, u32 data)
312 313 314 315
{
	/* valid data area is 24bit */
	data &= 0x00ffffff;

316
	__raw_writel(data, reg);
317 318
}

319
static u32 __fsi_reg_read(u32 __iomem *reg)
320
{
321
	return __raw_readl(reg);
322 323
}

324
static void __fsi_reg_mask_set(u32 __iomem *reg, u32 mask, u32 data)
325 326 327 328 329 330
{
	u32 val = __fsi_reg_read(reg);

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

331
	__fsi_reg_write(reg, val);
332 333
}

334
#define fsi_reg_write(p, r, d)\
335
	__fsi_reg_write((p->base + REG_##r), d)
336

337
#define fsi_reg_read(p, r)\
338
	__fsi_reg_read((p->base + REG_##r))
339

340
#define fsi_reg_mask_set(p, r, m, d)\
341
	__fsi_reg_mask_set((p->base + REG_##r), m, d)
342

343 344 345
#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)
346
{
347 348 349 350
	u32 ret;
	unsigned long flags;

	spin_lock_irqsave(&master->lock, flags);
351
	ret = __fsi_reg_read(master->base + reg);
352 353 354
	spin_unlock_irqrestore(&master->lock, flags);

	return ret;
355 356
}

357 358 359
#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,
360
			       u32 reg, u32 mask, u32 data)
361
{
362 363 364
	unsigned long flags;

	spin_lock_irqsave(&master->lock, flags);
365
	__fsi_reg_mask_set(master->base + reg, mask, data);
366
	spin_unlock_irqrestore(&master->lock, flags);
367 368
}

369 370 371
/*
 *		basic function
 */
372 373 374 375
static int fsi_version(struct fsi_master *master)
{
	return master->core->ver;
}
376

377
static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
378
{
379
	return fsi->master;
380 381
}

382 383 384 385 386
static int fsi_is_clk_master(struct fsi_priv *fsi)
{
	return fsi->clk_master;
}

387 388
static int fsi_is_port_a(struct fsi_priv *fsi)
{
389 390
	return fsi->master->base == fsi->base;
}
391

392 393 394 395 396
static int fsi_is_spdif(struct fsi_priv *fsi)
{
	return fsi->spdif;
}

397 398 399 400 401
static int fsi_is_enable_stream(struct fsi_priv *fsi)
{
	return fsi->enable_stream;
}

402 403 404 405 406
static int fsi_is_play(struct snd_pcm_substream *substream)
{
	return substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
}

407
static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
408 409
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
410

411
	return  rtd->cpu_dai;
412 413
}

414
static struct fsi_priv *fsi_get_priv_frm_dai(struct snd_soc_dai *dai)
415
{
416
	struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
417

418 419 420 421
	if (dai->id == 0)
		return &master->fsia;
	else
		return &master->fsib;
422 423
}

424 425 426 427 428
static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
{
	return fsi_get_priv_frm_dai(fsi_get_dai(substream));
}

429
static u32 fsi_get_port_shift(struct fsi_priv *fsi, struct fsi_stream *io)
430
{
431
	int is_play = fsi_stream_is_play(fsi, io);
432
	int is_porta = fsi_is_port_a(fsi);
433
	u32 shift;
434 435

	if (is_porta)
436
		shift = is_play ? AO_SHIFT : AI_SHIFT;
437
	else
438
		shift = is_play ? BO_SHIFT : BI_SHIFT;
439

440
	return shift;
441 442
}

443 444 445 446 447 448 449 450 451 452
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;
}

453 454
static int fsi_get_current_fifo_samples(struct fsi_priv *fsi,
					struct fsi_stream *io)
455
{
456
	int is_play = fsi_stream_is_play(fsi, io);
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
	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
 */
static inline struct fsi_stream *fsi_stream_get(struct fsi_priv *fsi,
494
					struct snd_pcm_substream *substream)
495
{
496
	return fsi_is_play(substream) ? &fsi->playback : &fsi->capture;
497 498
}

499
static int fsi_stream_is_working(struct fsi_priv *fsi,
500
				 struct fsi_stream *io)
501 502 503 504 505 506
{
	struct fsi_master *master = fsi_get_master(fsi);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&master->lock, flags);
507
	ret = !!(io->substream && io->substream->runtime);
508 509 510 511 512
	spin_unlock_irqrestore(&master->lock, flags);

	return ret;
}

513 514 515 516 517
static struct fsi_priv *fsi_stream_to_priv(struct fsi_stream *io)
{
	return io->priv;
}

518
static void fsi_stream_init(struct fsi_priv *fsi,
519
			    struct fsi_stream *io,
520
			    struct snd_pcm_substream *substream)
521
{
522
	struct snd_pcm_runtime *runtime = substream->runtime;
523 524
	struct fsi_master *master = fsi_get_master(fsi);
	unsigned long flags;
525

526
	spin_lock_irqsave(&master->lock, flags);
527
	io->substream	= substream;
528 529 530 531
	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;
532
	io->sample_width	= samples_to_bytes(runtime, 1);
533
	io->bus_option		= 0;
534 535
	io->oerr_num	= -1; /* ignore 1st err */
	io->uerr_num	= -1; /* ignore 1st err */
536
	fsi_stream_handler_call(io, init, fsi, io);
537
	spin_unlock_irqrestore(&master->lock, flags);
538 539
}

540
static void fsi_stream_quit(struct fsi_priv *fsi, struct fsi_stream *io)
541
{
542
	struct snd_soc_dai *dai = fsi_get_dai(io->substream);
543 544
	struct fsi_master *master = fsi_get_master(fsi);
	unsigned long flags;
545

546
	spin_lock_irqsave(&master->lock, flags);
547 548 549 550 551 552

	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);
553

554
	fsi_stream_handler_call(io, quit, fsi, io);
555
	io->substream	= NULL;
556 557 558 559
	io->buff_sample_capa	= 0;
	io->buff_sample_pos	= 0;
	io->period_samples	= 0;
	io->period_pos		= 0;
560
	io->sample_width	= 0;
561
	io->bus_option		= 0;
562 563
	io->oerr_num	= 0;
	io->uerr_num	= 0;
564
	spin_unlock_irqrestore(&master->lock, flags);
565 566
}

567 568 569 570 571 572 573 574 575
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);
}

576 577 578 579 580 581
#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)

582
static int fsi_stream_probe(struct fsi_priv *fsi, struct device *dev)
583 584 585 586 587
{
	struct fsi_stream *io;
	int ret1, ret2;

	io = &fsi->playback;
588
	ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev);
589 590

	io = &fsi->capture;
591
	ret2 = fsi_stream_handler_call(io, probe, fsi, io, dev);
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619

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

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 659 660 661 662 663 664 665 666
/*
 *	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);
}

667 668 669
/*
 *		irq function
 */
670

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

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

680
static void fsi_irq_disable(struct fsi_priv *fsi, struct fsi_stream *io)
681
{
682
	u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
683
	struct fsi_master *master = fsi_get_master(fsi);
684

685 686
	fsi_core_mask_set(master, imsk,  data, 0);
	fsi_core_mask_set(master, iemsk, data, 0);
687 688
}

689 690
static u32 fsi_irq_get_status(struct fsi_master *master)
{
691
	return fsi_core_read(master, int_st);
692 693 694 695 696 697 698
}

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

699 700
	data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->playback));
	data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->capture));
701 702

	/* clear interrupt factor */
703
	fsi_core_mask_set(master, int_st, data, 0);
704 705
}

706 707 708 709 710
/*
 *		SPDIF master clock function
 *
 * These functions are used later FSI2
 */
711 712 713
static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
{
	struct fsi_master *master = fsi_get_master(fsi);
714
	u32 mask, val;
715

716 717 718 719
	mask = BP | SE;
	val = enable ? mask : 0;

	fsi_is_port_a(fsi) ?
720 721
		fsi_core_mask_set(master, a_mclk, mask, val) :
		fsi_core_mask_set(master, b_mclk, mask, val);
722 723
}

724
/*
725
 *		clock function
726
 */
727 728 729 730 731 732
static int fsi_clk_init(struct device *dev,
			struct fsi_priv *fsi,
			int xck,
			int ick,
			int div,
			int (*set_rate)(struct device *dev,
733
					struct fsi_priv *fsi))
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
{
	struct fsi_clk *clock = &fsi->clock;
	int is_porta = fsi_is_port_a(fsi);

	clock->xck	= NULL;
	clock->ick	= NULL;
	clock->div	= NULL;
	clock->rate	= 0;
	clock->count	= 0;
	clock->set_rate	= set_rate;

	clock->own = devm_clk_get(dev, NULL);
	if (IS_ERR(clock->own))
		return -EINVAL;

	/* external clock */
	if (xck) {
		clock->xck = devm_clk_get(dev, is_porta ? "xcka" : "xckb");
		if (IS_ERR(clock->xck)) {
			dev_err(dev, "can't get xck clock\n");
			return -EINVAL;
		}
		if (clock->xck == clock->own) {
			dev_err(dev, "cpu doesn't support xck clock\n");
			return -EINVAL;
		}
	}

	/* FSIACLK/FSIBCLK */
	if (ick) {
		clock->ick = devm_clk_get(dev,  is_porta ? "icka" : "ickb");
		if (IS_ERR(clock->ick)) {
			dev_err(dev, "can't get ick clock\n");
			return -EINVAL;
		}
		if (clock->ick == clock->own) {
			dev_err(dev, "cpu doesn't support ick clock\n");
			return -EINVAL;
		}
	}

	/* FSI-DIV */
	if (div) {
		clock->div = devm_clk_get(dev,  is_porta ? "diva" : "divb");
		if (IS_ERR(clock->div)) {
			dev_err(dev, "can't get div clock\n");
			return -EINVAL;
		}
		if (clock->div == clock->own) {
783
			dev_err(dev, "cpu doesn't support div clock\n");
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
			return -EINVAL;
		}
	}

	return 0;
}

#define fsi_clk_invalid(fsi) fsi_clk_valid(fsi, 0)
static void fsi_clk_valid(struct fsi_priv *fsi, unsigned long rate)
{
	fsi->clock.rate = rate;
}

static int fsi_clk_is_valid(struct fsi_priv *fsi)
{
	return	fsi->clock.set_rate &&
		fsi->clock.rate;
}

static int fsi_clk_enable(struct device *dev,
804
			  struct fsi_priv *fsi)
805 806 807 808 809 810 811 812
{
	struct fsi_clk *clock = &fsi->clock;
	int ret = -EINVAL;

	if (!fsi_clk_is_valid(fsi))
		return ret;

	if (0 == clock->count) {
813
		ret = clock->set_rate(dev, fsi);
814 815 816 817 818
		if (ret < 0) {
			fsi_clk_invalid(fsi);
			return ret;
		}

819 820 821
		clk_enable(clock->xck);
		clk_enable(clock->ick);
		clk_enable(clock->div);
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837

		clock->count++;
	}

	return ret;
}

static int fsi_clk_disable(struct device *dev,
			    struct fsi_priv *fsi)
{
	struct fsi_clk *clock = &fsi->clock;

	if (!fsi_clk_is_valid(fsi))
		return -EINVAL;

	if (1 == clock->count--) {
838 839 840
		clk_disable(clock->xck);
		clk_disable(clock->ick);
		clk_disable(clock->div);
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	}

	return 0;
}

static int fsi_clk_set_ackbpf(struct device *dev,
			      struct fsi_priv *fsi,
			      int ackmd, int bpfmd)
{
	u32 data = 0;

	/* check ackmd/bpfmd relationship */
	if (bpfmd > ackmd) {
		dev_err(dev, "unsupported rate (%d/%d)\n", ackmd, bpfmd);
		return -EINVAL;
	}

	/*  ACKMD */
	switch (ackmd) {
	case 512:
		data |= (0x0 << 12);
		break;
	case 256:
		data |= (0x1 << 12);
		break;
	case 128:
		data |= (0x2 << 12);
		break;
	case 64:
		data |= (0x3 << 12);
		break;
	case 32:
		data |= (0x4 << 12);
		break;
	default:
		dev_err(dev, "unsupported ackmd (%d)\n", ackmd);
		return -EINVAL;
	}

	/* BPFMD */
	switch (bpfmd) {
	case 32:
		data |= (0x0 << 8);
		break;
	case 64:
		data |= (0x1 << 8);
		break;
	case 128:
		data |= (0x2 << 8);
		break;
	case 256:
		data |= (0x3 << 8);
		break;
	case 512:
		data |= (0x4 << 8);
		break;
	case 16:
		data |= (0x7 << 8);
		break;
	default:
		dev_err(dev, "unsupported bpfmd (%d)\n", bpfmd);
		return -EINVAL;
	}

	dev_dbg(dev, "ACKMD/BPFMD = %d/%d\n", ackmd, bpfmd);

	fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
	udelay(10);

	return 0;
}

static int fsi_clk_set_rate_external(struct device *dev,
914
				     struct fsi_priv *fsi)
915 916 917
{
	struct clk *xck = fsi->clock.xck;
	struct clk *ick = fsi->clock.ick;
918
	unsigned long rate = fsi->clock.rate;
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
	unsigned long xrate;
	int ackmd, bpfmd;
	int ret = 0;

	/* check clock rate */
	xrate = clk_get_rate(xck);
	if (xrate % rate) {
		dev_err(dev, "unsupported clock rate\n");
		return -EINVAL;
	}

	clk_set_parent(ick, xck);
	clk_set_rate(ick, xrate);

	bpfmd = fsi->chan_num * 32;
	ackmd = xrate / rate;

	dev_dbg(dev, "external/rate = %ld/%ld\n", xrate, rate);

	ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd);
	if (ret < 0)
		dev_err(dev, "%s failed", __func__);

	return ret;
}

static int fsi_clk_set_rate_cpg(struct device *dev,
946
				struct fsi_priv *fsi)
947 948 949
{
	struct clk *ick = fsi->clock.ick;
	struct clk *div = fsi->clock.div;
950
	unsigned long rate = fsi->clock.rate;
951 952 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 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 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
	unsigned long target = 0; /* 12288000 or 11289600 */
	unsigned long actual, cout;
	unsigned long diff, min;
	unsigned long best_cout, best_act;
	int adj;
	int ackmd, bpfmd;
	int ret = -EINVAL;

	if (!(12288000 % rate))
		target = 12288000;
	if (!(11289600 % rate))
		target = 11289600;
	if (!target) {
		dev_err(dev, "unsupported rate\n");
		return ret;
	}

	bpfmd = fsi->chan_num * 32;
	ackmd = target / rate;
	ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd);
	if (ret < 0) {
		dev_err(dev, "%s failed", __func__);
		return ret;
	}

	/*
	 * The clock flow is
	 *
	 * [CPG] = cout => [FSI_DIV] = audio => [FSI] => [codec]
	 *
	 * But, it needs to find best match of CPG and FSI_DIV
	 * combination, since it is difficult to generate correct
	 * frequency of audio clock from ick clock only.
	 * Because ick is created from its parent clock.
	 *
	 * target	= rate x [512/256/128/64]fs
	 * cout		= round(target x adjustment)
	 * actual	= cout / adjustment (by FSI-DIV) ~= target
	 * audio	= actual
	 */
	min = ~0;
	best_cout = 0;
	best_act = 0;
	for (adj = 1; adj < 0xffff; adj++) {

		cout = target * adj;
		if (cout > 100000000) /* max clock = 100MHz */
			break;

		/* cout/actual audio clock */
		cout	= clk_round_rate(ick, cout);
		actual	= cout / adj;

		/* find best frequency */
		diff = abs(actual - target);
		if (diff < min) {
			min		= diff;
			best_cout	= cout;
			best_act	= actual;
		}
	}

	ret = clk_set_rate(ick, best_cout);
	if (ret < 0) {
		dev_err(dev, "ick clock failed\n");
		return -EIO;
	}

	ret = clk_set_rate(div, clk_round_rate(div, best_act));
	if (ret < 0) {
		dev_err(dev, "div clock failed\n");
		return -EIO;
	}

	dev_dbg(dev, "ick/div = %ld/%ld\n",
		clk_get_rate(ick), clk_get_rate(div));

	return ret;
}

1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
static void fsi_pointer_update(struct fsi_stream *io, int size)
{
	io->buff_sample_pos += size;

	if (io->buff_sample_pos >=
	    io->period_samples * (io->period_pos + 1)) {
		struct snd_pcm_substream *substream = io->substream;
		struct snd_pcm_runtime *runtime = substream->runtime;

		io->period_pos++;

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

		snd_pcm_period_elapsed(substream);
	}
}

1051
/*
1052
 *		pio data transfer handler
1053
 */
1054 1055 1056 1057
static void fsi_pio_push16(struct fsi_priv *fsi, u8 *_buf, int samples)
{
	int i;

1058
	if (fsi_is_enable_stream(fsi)) {
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
		/*
		 * 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));
	}
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 1109 1110 1111 1112
}

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,
1113 1114 1115
		void (*run16)(struct fsi_priv *fsi, u8 *buf, int samples),
		void (*run32)(struct fsi_priv *fsi, u8 *buf, int samples),
		int samples)
1116
{
1117
	u8 *buf;
1118

1119
	if (!fsi_stream_is_working(fsi, io))
1120 1121
		return -EINVAL;

1122 1123
	buf = fsi_pio_get_area(fsi, io);

1124 1125
	switch (io->sample_width) {
	case 2:
1126
		run16(fsi, buf, samples);
1127 1128
		break;
	case 4:
1129
		run32(fsi, buf, samples);
1130 1131 1132
		break;
	default:
		return -EINVAL;
1133
	}
1134

1135
	fsi_pointer_update(io, samples);
1136

1137
	return 0;
1138 1139
}

1140
static int fsi_pio_pop(struct fsi_priv *fsi, struct fsi_stream *io)
1141
{
1142 1143 1144 1145
	int sample_residues;	/* samples in FSI fifo */
	int sample_space;	/* ALSA free samples space */
	int samples;

1146
	sample_residues	= fsi_get_current_fifo_samples(fsi, io);
1147 1148 1149 1150
	sample_space	= io->buff_sample_capa - io->buff_sample_pos;

	samples = min(sample_residues, sample_space);

1151
	return fsi_pio_transfer(fsi, io,
1152 1153
				  fsi_pio_pop16,
				  fsi_pio_pop32,
1154
				  samples);
1155
}
1156

1157
static int fsi_pio_push(struct fsi_priv *fsi, struct fsi_stream *io)
1158
{
1159 1160 1161 1162 1163 1164
	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 -
1165
		fsi_get_current_fifo_samples(fsi, io);
1166 1167 1168

	samples = min(sample_residues, sample_space);

1169
	return fsi_pio_transfer(fsi, io,
1170 1171
				  fsi_pio_push16,
				  fsi_pio_push32,
1172
				  samples);
1173 1174
}

1175
static int fsi_pio_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
			       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);
1188 1189

	return 0;
1190 1191
}

1192 1193 1194 1195 1196 1197 1198 1199 1200
static int fsi_pio_push_init(struct fsi_priv *fsi, struct fsi_stream *io)
{
	/*
	 * we can use 16bit stream mode
	 * when "playback" and "16bit data"
	 * and platform allows "stream mode"
	 * see
	 *	fsi_pio_push16()
	 */
1201
	if (fsi_is_enable_stream(fsi))
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
		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;
}

1220
static struct fsi_stream_handler fsi_pio_push_handler = {
1221
	.init		= fsi_pio_push_init,
1222
	.transfer	= fsi_pio_push,
1223
	.start_stop	= fsi_pio_start_stop,
1224 1225 1226
};

static struct fsi_stream_handler fsi_pio_pop_handler = {
1227
	.init		= fsi_pio_pop_init,
1228
	.transfer	= fsi_pio_pop,
1229
	.start_stop	= fsi_pio_start_stop,
1230 1231
};

1232 1233
static irqreturn_t fsi_interrupt(int irq, void *data)
{
1234
	struct fsi_master *master = data;
1235
	u32 int_st = fsi_irq_get_status(master);
1236 1237

	/* clear irq status */
1238 1239
	fsi_master_mask_set(master, SOFT_RST, IR, 0);
	fsi_master_mask_set(master, SOFT_RST, IR, IR);
1240

1241
	if (int_st & AB_IO(1, AO_SHIFT))
1242
		fsi_stream_transfer(&master->fsia.playback);
1243
	if (int_st & AB_IO(1, BO_SHIFT))
1244
		fsi_stream_transfer(&master->fsib.playback);
1245
	if (int_st & AB_IO(1, AI_SHIFT))
1246
		fsi_stream_transfer(&master->fsia.capture);
1247
	if (int_st & AB_IO(1, BI_SHIFT))
1248
		fsi_stream_transfer(&master->fsib.capture);
1249 1250 1251

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

1253 1254
	fsi_irq_clear_status(&master->fsia);
	fsi_irq_clear_status(&master->fsib);
1255 1256 1257 1258

	return IRQ_HANDLED;
}

1259 1260 1261 1262 1263
/*
 *		dma data transfer handler
 */
static int fsi_dma_init(struct fsi_priv *fsi, struct fsi_stream *io)
{
1264 1265 1266 1267 1268 1269 1270
	/*
	 * 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);

1271 1272 1273 1274 1275 1276 1277 1278
	return 0;
}

static void fsi_dma_complete(void *data)
{
	struct fsi_stream *io = (struct fsi_stream *)data;
	struct fsi_priv *fsi = fsi_stream_to_priv(io);

1279
	fsi_pointer_update(io, io->period_samples);
1280 1281 1282 1283

	fsi_count_fifo_err(fsi);
}

1284
static int fsi_dma_transfer(struct fsi_priv *fsi, struct fsi_stream *io)
1285
{
1286 1287
	struct snd_soc_dai *dai = fsi_get_dai(io->substream);
	struct snd_pcm_substream *substream = io->substream;
1288 1289
	struct dma_async_tx_descriptor *desc;
	int is_play = fsi_stream_is_play(fsi, io);
1290
	enum dma_transfer_direction dir;
1291 1292
	int ret = -EIO;

1293 1294 1295 1296 1297
	if (is_play)
		dir = DMA_MEM_TO_DEV;
	else
		dir = DMA_DEV_TO_MEM;

1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
	desc = dmaengine_prep_dma_cyclic(io->chan,
					 substream->runtime->dma_addr,
					 snd_pcm_lib_buffer_bytes(substream),
					 snd_pcm_lib_period_bytes(substream),
					 dir,
					 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
	if (!desc) {
		dev_err(dai->dev, "dmaengine_prep_dma_cyclic() fail\n");
		goto fsi_dma_transfer_err;
	}
1308

1309 1310
	desc->callback		= fsi_dma_complete;
	desc->callback_param	= io;
1311

1312 1313 1314
	if (dmaengine_submit(desc) < 0) {
		dev_err(dai->dev, "tx_submit() fail\n");
		goto fsi_dma_transfer_err;
1315 1316
	}

1317
	dma_async_issue_pending(io->chan);
1318 1319 1320 1321 1322

	/*
	 * FIXME
	 *
	 * In DMAEngine case, codec and FSI cannot be started simultaneously
1323
	 * since FSI is using the scheduler work queue.
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
	 * 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);
		}
	}

1335
	ret = 0;
1336

1337 1338
fsi_dma_transfer_err:
	return ret;
1339 1340
}

1341
static int fsi_dma_push_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
1342 1343
				 int start)
{
1344 1345
	struct fsi_master *master = fsi_get_master(fsi);
	u32 clk  = fsi_is_port_a(fsi) ? CRA  : CRB;
1346
	u32 enable = start ? DMA_ON : 0;
1347

1348
	fsi_reg_mask_set(fsi, OUT_DMAC, DMA_ON, enable);
1349

1350 1351
	dmaengine_terminate_all(io->chan);

1352 1353
	if (fsi_is_clk_master(fsi))
		fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
1354 1355

	return 0;
1356 1357
}

1358
static int fsi_dma_probe(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev)
1359
{
1360
	int is_play = fsi_stream_is_play(fsi, io);
1361

1362 1363
#ifdef CONFIG_SUPERH
	dma_cap_mask_t mask;
1364 1365 1366
	dma_cap_zero(mask);
	dma_cap_set(DMA_SLAVE, mask);

1367 1368 1369 1370 1371
	io->chan = dma_request_channel(mask, shdma_chan_filter,
				       (void *)io->dma_id);
#else
	io->chan = dma_request_slave_channel(dev, is_play ? "tx" : "rx");
#endif
1372
	if (io->chan) {
1373
		struct dma_slave_config cfg = {};
1374 1375
		int ret;

1376 1377 1378 1379 1380 1381 1382 1383 1384
		if (is_play) {
			cfg.dst_addr		= fsi->phys + REG_DODT;
			cfg.dst_addr_width	= DMA_SLAVE_BUSWIDTH_4_BYTES;
			cfg.direction		= DMA_MEM_TO_DEV;
		} else {
			cfg.src_addr		= fsi->phys + REG_DIDT;
			cfg.src_addr_width	= DMA_SLAVE_BUSWIDTH_4_BYTES;
			cfg.direction		= DMA_DEV_TO_MEM;
		}
1385 1386 1387 1388 1389 1390 1391 1392

		ret = dmaengine_slave_config(io->chan, &cfg);
		if (ret < 0) {
			dma_release_channel(io->chan);
			io->chan = NULL;
		}
	}

1393 1394 1395
	if (!io->chan) {

		/* switch to PIO handler */
1396
		if (is_play)
1397 1398 1399 1400 1401 1402 1403 1404 1405
			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);
	}
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428

	return 0;
}

static int fsi_dma_remove(struct fsi_priv *fsi, struct fsi_stream *io)
{
	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,
	.probe		= fsi_dma_probe,
	.transfer	= fsi_dma_transfer,
	.remove		= fsi_dma_remove,
	.start_stop	= fsi_dma_push_start_stop,
};

1429 1430 1431
/*
 *		dai ops
 */
1432
static void fsi_fifo_init(struct fsi_priv *fsi,
1433
			  struct fsi_stream *io,
1434 1435 1436
			  struct device *dev)
{
	struct fsi_master *master = fsi_get_master(fsi);
1437
	int is_play = fsi_stream_is_play(fsi, io);
1438 1439 1440 1441 1442
	u32 shift, i;
	int frame_capa;

	/* get on-chip RAM capacity */
	shift = fsi_master_read(master, FIFO_SZ);
1443
	shift >>= fsi_get_port_shift(fsi, io);
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
	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);
	}
}
1486

1487
static int fsi_hw_startup(struct fsi_priv *fsi,
1488
			  struct fsi_stream *io,
1489
			  struct device *dev)
1490
{
1491
	u32 data = 0;
1492

1493 1494 1495 1496 1497
	/* clock setting */
	if (fsi_is_clk_master(fsi))
		data = DIMD | DOMD;

	fsi_reg_mask_set(fsi, CKG1, (DIMD | DOMD), data);
1498 1499 1500

	/* clock inversion (CKG2) */
	data = 0;
1501 1502 1503 1504 1505 1506
	if (fsi->bit_clk_inv)
		data |= (1 << 0);
	if (fsi->lr_clk_inv)
		data |= (1 << 4);
	if (fsi_is_clk_master(fsi))
		data <<= 8;
1507 1508
	fsi_reg_write(fsi, CKG2, data);

1509 1510 1511 1512 1513 1514
	/* spdif ? */
	if (fsi_is_spdif(fsi)) {
		fsi_spdif_clk_ctrl(fsi, 1);
		fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
	}

1515
	/*
1516
	 * get bus settings
1517
	 */
1518 1519 1520 1521 1522 1523 1524 1525
	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;
1526
	}
1527
	fsi_format_bus_setup(fsi, io, data, dev);
1528

1529
	/* irq clear */
1530
	fsi_irq_disable(fsi, io);
1531 1532 1533
	fsi_irq_clear_status(fsi);

	/* fifo init */
1534
	fsi_fifo_init(fsi, io, dev);
1535

1536 1537
	/* start master clock */
	if (fsi_is_clk_master(fsi))
1538
		return fsi_clk_enable(dev, fsi);
1539

1540
	return 0;
1541 1542
}

1543
static int fsi_hw_shutdown(struct fsi_priv *fsi,
1544 1545
			    struct device *dev)
{
1546
	/* stop master clock */
1547
	if (fsi_is_clk_master(fsi))
1548
		return fsi_clk_disable(dev, fsi);
1549 1550

	return 0;
1551 1552 1553 1554 1555 1556 1557
}

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

1558
	fsi_clk_invalid(fsi);
1559 1560

	return 0;
1561 1562
}

1563 1564 1565
static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
			     struct snd_soc_dai *dai)
{
1566
	struct fsi_priv *fsi = fsi_get_priv(substream);
1567

1568
	fsi_clk_invalid(fsi);
1569 1570 1571 1572 1573
}

static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
			   struct snd_soc_dai *dai)
{
1574
	struct fsi_priv *fsi = fsi_get_priv(substream);
1575
	struct fsi_stream *io = fsi_stream_get(fsi, substream);
1576 1577 1578 1579
	int ret = 0;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
1580
		fsi_stream_init(fsi, io, substream);
1581 1582 1583
		if (!ret)
			ret = fsi_hw_startup(fsi, io, dai->dev);
		if (!ret)
1584
			ret = fsi_stream_start(fsi, io);
1585
		if (!ret)
1586
			ret = fsi_stream_transfer(io);
1587 1588
		break;
	case SNDRV_PCM_TRIGGER_STOP:
1589 1590
		if (!ret)
			ret = fsi_hw_shutdown(fsi, dai->dev);
1591
		fsi_stream_stop(fsi, io);
1592
		fsi_stream_quit(fsi, io);
1593 1594 1595 1596 1597 1598
		break;
	}

	return ret;
}

1599 1600 1601 1602
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:
1603
		fsi->fmt = CR_I2S;
1604 1605 1606
		fsi->chan_num = 2;
		break;
	case SND_SOC_DAIFMT_LEFT_J:
1607
		fsi->fmt = CR_PCM;
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
		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);

1621
	if (fsi_version(master) < 2)
1622 1623
		return -EINVAL;

1624
	fsi->fmt = CR_DTMD_SPDIF_PCM | CR_PCM;
1625 1626 1627 1628 1629
	fsi->chan_num = 2;

	return 0;
}

1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
static int fsi_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
{
	struct fsi_priv *fsi = fsi_get_priv_frm_dai(dai);
	int ret;

	/* set master/slave audio interface */
	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
	case SND_SOC_DAIFMT_CBM_CFM:
		break;
	case SND_SOC_DAIFMT_CBS_CFS:
1640
		fsi->clk_master = 1; /* codec is slave, cpu is master */
1641 1642
		break;
	default:
1643
		return -EINVAL;
1644
	}
1645

1646 1647 1648 1649 1650
	/* set clock inversion */
	switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
	case SND_SOC_DAIFMT_NB_IF:
		fsi->bit_clk_inv = 0;
		fsi->lr_clk_inv = 1;
1651
		break;
1652 1653 1654
	case SND_SOC_DAIFMT_IB_NF:
		fsi->bit_clk_inv = 1;
		fsi->lr_clk_inv = 0;
1655
		break;
1656 1657 1658 1659 1660
	case SND_SOC_DAIFMT_IB_IF:
		fsi->bit_clk_inv = 1;
		fsi->lr_clk_inv = 1;
		break;
	case SND_SOC_DAIFMT_NB_NF:
1661
	default:
1662 1663 1664 1665 1666
		fsi->bit_clk_inv = 0;
		fsi->lr_clk_inv = 0;
		break;
	}

1667
	if (fsi_is_clk_master(fsi)) {
1668
		if (fsi->clk_cpg)
1669 1670
			fsi_clk_init(dai->dev, fsi, 0, 1, 1,
				     fsi_clk_set_rate_cpg);
1671 1672 1673
		else
			fsi_clk_init(dai->dev, fsi, 1, 1, 0,
				     fsi_clk_set_rate_external);
1674
	}
1675

1676
	/* set format */
1677
	if (fsi_is_spdif(fsi))
1678
		ret = fsi_set_fmt_spdif(fsi);
1679 1680
	else
		ret = fsi_set_fmt_dai(fsi, fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1681 1682 1683 1684

	return ret;
}

1685 1686 1687 1688 1689 1690
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);

1691 1692
	if (fsi_is_clk_master(fsi))
		fsi_clk_valid(fsi, params_rate(params));
1693

1694
	return 0;
1695 1696
}

1697
static const struct snd_soc_dai_ops fsi_dai_ops = {
1698 1699 1700
	.startup	= fsi_dai_startup,
	.shutdown	= fsi_dai_shutdown,
	.trigger	= fsi_dai_trigger,
1701
	.set_fmt	= fsi_dai_set_fmt,
1702
	.hw_params	= fsi_dai_hw_params,
1703 1704
};

1705 1706 1707
/*
 *		pcm ops
 */
1708

1709
static const struct snd_pcm_hardware fsi_pcm_hardware = {
1710 1711
	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
			SNDRV_PCM_INFO_MMAP		|
1712
			SNDRV_PCM_INFO_MMAP_VALID,
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
	.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)
{
1748
	struct fsi_priv *fsi = fsi_get_priv(substream);
1749
	struct fsi_stream *io = fsi_stream_get(fsi, substream);
1750

1751
	return fsi_sample2frame(fsi, io->buff_sample_pos);
1752 1753
}

1754
static const struct snd_pcm_ops fsi_pcm_ops = {
1755 1756 1757 1758 1759 1760 1761
	.open		= fsi_pcm_open,
	.ioctl		= snd_pcm_lib_ioctl,
	.hw_params	= fsi_hw_params,
	.hw_free	= fsi_hw_free,
	.pointer	= fsi_pointer,
};

1762
/*
1763
 *		snd_soc_component
1764
 */
1765 1766 1767 1768

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

1769
static int fsi_pcm_new(struct snd_soc_pcm_runtime *rtd)
1770 1771
{
	return snd_pcm_lib_preallocate_pages_for_all(
1772 1773 1774
		rtd->pcm,
		SNDRV_DMA_TYPE_DEV,
		rtd->card->snd_card->dev,
1775 1776 1777
		PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
}

1778 1779 1780
/*
 *		alsa struct
 */
1781

1782
static struct snd_soc_dai_driver fsi_soc_dai[] = {
1783
	{
1784
		.name			= "fsia-dai",
1785 1786 1787
		.playback = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
1788 1789
			.channels_min	= 2,
			.channels_max	= 2,
1790
		},
1791 1792 1793
		.capture = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
1794 1795
			.channels_min	= 2,
			.channels_max	= 2,
1796
		},
1797 1798 1799
		.ops = &fsi_dai_ops,
	},
	{
1800
		.name			= "fsib-dai",
1801 1802 1803
		.playback = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
1804 1805
			.channels_min	= 2,
			.channels_max	= 2,
1806
		},
1807 1808 1809
		.capture = {
			.rates		= FSI_RATES,
			.formats	= FSI_FMTS,
1810 1811
			.channels_min	= 2,
			.channels_max	= 2,
1812
		},
1813 1814 1815 1816
		.ops = &fsi_dai_ops,
	},
};

1817 1818
static const struct snd_soc_component_driver fsi_soc_component = {
	.name		= "fsi",
1819 1820
	.ops		= &fsi_pcm_ops,
	.pcm_new	= fsi_pcm_new,
1821 1822
};

1823 1824 1825
/*
 *		platform function
 */
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
static void fsi_of_parse(char *name,
			 struct device_node *np,
			 struct sh_fsi_port_info *info,
			 struct device *dev)
{
	int i;
	char prop[128];
	unsigned long flags = 0;
	struct {
		char *name;
		unsigned int val;
	} of_parse_property[] = {
		{ "spdif-connection",		SH_FSI_FMT_SPDIF },
		{ "stream-mode-support",	SH_FSI_ENABLE_STREAM_MODE },
		{ "use-internal-clock",		SH_FSI_CLK_CPG },
	};

	for (i = 0; i < ARRAY_SIZE(of_parse_property); i++) {
		sprintf(prop, "%s,%s", name, of_parse_property[i].name);
		if (of_get_property(np, prop, NULL))
			flags |= of_parse_property[i].val;
	}
	info->flags = flags;

	dev_dbg(dev, "%s flags : %lx\n", name, info->flags);
}

1853 1854 1855 1856 1857
static void fsi_port_info_init(struct fsi_priv *fsi,
			       struct sh_fsi_port_info *info)
{
	if (info->flags & SH_FSI_FMT_SPDIF)
		fsi->spdif = 1;
1858 1859 1860

	if (info->flags & SH_FSI_CLK_CPG)
		fsi->clk_cpg = 1;
1861 1862 1863

	if (info->flags & SH_FSI_ENABLE_STREAM_MODE)
		fsi->enable_stream = 1;
1864 1865
}

1866 1867
static void fsi_handler_init(struct fsi_priv *fsi,
			     struct sh_fsi_port_info *info)
1868 1869 1870 1871 1872
{
	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;
1873

1874
	if (info->tx_id) {
1875
		fsi->playback.dma_id  = info->tx_id;
1876
		fsi->playback.handler = &fsi_dma_push_handler;
1877
	}
1878
}
1879

1880
static const struct fsi_core fsi1_core = {
1881 1882 1883 1884 1885 1886 1887 1888
	.ver	= 1,

	/* Interrupt */
	.int_st	= INT_ST,
	.iemsk	= IEMSK,
	.imsk	= IMSK,
};

1889
static const struct fsi_core fsi2_core = {
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906
	.ver	= 2,

	/* Interrupt */
	.int_st	= CPU_INT_ST,
	.iemsk	= CPU_IEMSK,
	.imsk	= CPU_IMSK,
	.a_mclk	= A_MST_CTLR,
	.b_mclk	= B_MST_CTLR,
};

static const struct of_device_id fsi_of_match[] = {
	{ .compatible = "renesas,sh_fsi",	.data = &fsi1_core},
	{ .compatible = "renesas,sh_fsi2",	.data = &fsi2_core},
	{},
};
MODULE_DEVICE_TABLE(of, fsi_of_match);

1907
static const struct platform_device_id fsi_id_table[] = {
1908 1909 1910 1911 1912
	{ "sh_fsi",	(kernel_ulong_t)&fsi1_core },
	{},
};
MODULE_DEVICE_TABLE(platform, fsi_id_table);

1913 1914
static int fsi_probe(struct platform_device *pdev)
{
1915
	struct fsi_master *master;
1916
	struct device_node *np = pdev->dev.of_node;
1917
	struct sh_fsi_platform_info info;
1918
	const struct fsi_core *core;
1919
	struct fsi_priv *fsi;
1920 1921 1922 1923
	struct resource *res;
	unsigned int irq;
	int ret;

1924
	memset(&info, 0, sizeof(info));
1925

1926 1927
	core = NULL;
	if (np) {
1928 1929 1930
		core = of_device_get_match_data(&pdev->dev);
		fsi_of_parse("fsia", np, &info.port_a, &pdev->dev);
		fsi_of_parse("fsib", np, &info.port_b, &pdev->dev);
1931 1932 1933 1934 1935 1936 1937 1938 1939 1940
	} else {
		const struct platform_device_id	*id_entry = pdev->id_entry;
		if (id_entry)
			core = (struct fsi_core *)id_entry->driver_data;

		if (pdev->dev.platform_data)
			memcpy(&info, pdev->dev.platform_data, sizeof(info));
	}

	if (!core) {
1941 1942 1943 1944
		dev_err(&pdev->dev, "unknown fsi device\n");
		return -ENODEV;
	}

1945 1946
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	irq = platform_get_irq(pdev, 0);
1947
	if (!res || (int)irq <= 0) {
1948
		dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1949
		return -ENODEV;
1950 1951
	}

1952
	master = devm_kzalloc(&pdev->dev, sizeof(*master), GFP_KERNEL);
1953
	if (!master)
1954
		return -ENOMEM;
1955

1956 1957
	master->base = devm_ioremap_nocache(&pdev->dev,
					    res->start, resource_size(res));
1958 1959
	if (!master->base) {
		dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1960
		return -ENXIO;
1961 1962
	}

1963
	/* master setting */
1964
	master->core		= core;
1965 1966 1967
	spin_lock_init(&master->lock);

	/* FSI A setting */
1968 1969
	fsi		= &master->fsia;
	fsi->base	= master->base;
1970
	fsi->phys	= res->start;
1971
	fsi->master	= master;
1972 1973
	fsi_port_info_init(fsi, &info.port_a);
	fsi_handler_init(fsi, &info.port_a);
1974
	ret = fsi_stream_probe(fsi, &pdev->dev);
1975 1976
	if (ret < 0) {
		dev_err(&pdev->dev, "FSIA stream probe failed\n");
1977
		return ret;
1978
	}
1979 1980

	/* FSI B setting */
1981 1982
	fsi		= &master->fsib;
	fsi->base	= master->base + 0x40;
1983
	fsi->phys	= res->start + 0x40;
1984
	fsi->master	= master;
1985 1986
	fsi_port_info_init(fsi, &info.port_b);
	fsi_handler_init(fsi, &info.port_b);
1987
	ret = fsi_stream_probe(fsi, &pdev->dev);
1988 1989 1990 1991
	if (ret < 0) {
		dev_err(&pdev->dev, "FSIB stream probe failed\n");
		goto exit_fsia;
	}
1992

1993
	pm_runtime_enable(&pdev->dev);
1994
	dev_set_drvdata(&pdev->dev, master);
1995

1996
	ret = devm_request_irq(&pdev->dev, irq, &fsi_interrupt, 0,
1997
			       dev_name(&pdev->dev), master);
1998 1999
	if (ret) {
		dev_err(&pdev->dev, "irq request err\n");
2000
		goto exit_fsib;
2001 2002
	}

2003
	ret = devm_snd_soc_register_component(&pdev->dev, &fsi_soc_component,
2004
				    fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
2005
	if (ret < 0) {
2006
		dev_err(&pdev->dev, "cannot snd component register\n");
2007
		goto exit_fsib;
2008
	}
2009

2010 2011
	return ret;

2012
exit_fsib:
2013
	pm_runtime_disable(&pdev->dev);
2014 2015 2016
	fsi_stream_remove(&master->fsib);
exit_fsia:
	fsi_stream_remove(&master->fsia);
2017

2018 2019 2020 2021 2022
	return ret;
}

static int fsi_remove(struct platform_device *pdev)
{
2023 2024
	struct fsi_master *master;

2025
	master = dev_get_drvdata(&pdev->dev);
2026

2027
	pm_runtime_disable(&pdev->dev);
2028

2029 2030 2031
	fsi_stream_remove(&master->fsia);
	fsi_stream_remove(&master->fsib);

2032 2033 2034
	return 0;
}

2035
static void __fsi_suspend(struct fsi_priv *fsi,
2036
			  struct fsi_stream *io,
2037
			  struct device *dev)
2038
{
2039
	if (!fsi_stream_is_working(fsi, io))
2040
		return;
2041

2042
	fsi_stream_stop(fsi, io);
2043
	fsi_hw_shutdown(fsi, dev);
2044 2045 2046
}

static void __fsi_resume(struct fsi_priv *fsi,
2047
			 struct fsi_stream *io,
2048
			 struct device *dev)
2049
{
2050
	if (!fsi_stream_is_working(fsi, io))
2051
		return;
2052

2053
	fsi_hw_startup(fsi, io, dev);
2054
	fsi_stream_start(fsi, io);
2055 2056 2057 2058 2059
}

static int fsi_suspend(struct device *dev)
{
	struct fsi_master *master = dev_get_drvdata(dev);
2060 2061
	struct fsi_priv *fsia = &master->fsia;
	struct fsi_priv *fsib = &master->fsib;
2062

2063 2064
	__fsi_suspend(fsia, &fsia->playback, dev);
	__fsi_suspend(fsia, &fsia->capture, dev);
2065

2066 2067
	__fsi_suspend(fsib, &fsib->playback, dev);
	__fsi_suspend(fsib, &fsib->capture, dev);
2068 2069 2070 2071 2072 2073 2074

	return 0;
}

static int fsi_resume(struct device *dev)
{
	struct fsi_master *master = dev_get_drvdata(dev);
2075 2076
	struct fsi_priv *fsia = &master->fsia;
	struct fsi_priv *fsib = &master->fsib;
2077

2078 2079
	__fsi_resume(fsia, &fsia->playback, dev);
	__fsi_resume(fsia, &fsia->capture, dev);
2080

2081 2082
	__fsi_resume(fsib, &fsib->playback, dev);
	__fsi_resume(fsib, &fsib->capture, dev);
2083 2084 2085 2086

	return 0;
}

2087
static const struct dev_pm_ops fsi_pm_ops = {
2088 2089
	.suspend		= fsi_suspend,
	.resume			= fsi_resume,
2090 2091
};

2092 2093
static struct platform_driver fsi_driver = {
	.driver 	= {
2094
		.name	= "fsi-pcm-audio",
2095
		.pm	= &fsi_pm_ops,
2096
		.of_match_table = fsi_of_match,
2097 2098 2099
	},
	.probe		= fsi_probe,
	.remove		= fsi_remove,
2100
	.id_table	= fsi_id_table,
2101 2102
};

2103
module_platform_driver(fsi_driver);
2104

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