i2s.c 35.6 KB
Newer Older
1
/* sound/soc/samsung/i2s.c
J
Jassi Brar 已提交
2 3 4 5
 *
 * ALSA SoC Audio Layer - Samsung I2S Controller driver
 *
 * Copyright (c) 2010 Samsung Electronics Co. Ltd.
6
 *	Jaswinder Singh <jassisinghbrar@gmail.com>
J
Jassi Brar 已提交
7 8 9 10 11 12
 *
 * 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.
 */

13
#include <dt-bindings/sound/samsung-i2s.h>
J
Jassi Brar 已提交
14 15 16
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/clk.h>
17
#include <linux/clk-provider.h>
J
Jassi Brar 已提交
18
#include <linux/io.h>
19
#include <linux/module.h>
20 21
#include <linux/of.h>
#include <linux/of_gpio.h>
22
#include <linux/pm_runtime.h>
J
Jassi Brar 已提交
23 24

#include <sound/soc.h>
25
#include <sound/pcm_params.h>
J
Jassi Brar 已提交
26

27
#include <linux/platform_data/asoc-s3c.h>
J
Jassi Brar 已提交
28 29

#include "dma.h"
30
#include "idma.h"
J
Jassi Brar 已提交
31
#include "i2s.h"
32
#include "i2s-regs.h"
J
Jassi Brar 已提交
33 34 35

#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)

36 37 38 39 40
enum samsung_dai_type {
	TYPE_PRI,
	TYPE_SEC,
};

41 42 43 44 45 46 47 48 49 50 51 52 53 54
struct samsung_i2s_variant_regs {
	unsigned int	bfs_off;
	unsigned int	rfs_off;
	unsigned int	sdf_off;
	unsigned int	txr_off;
	unsigned int	rclksrc_off;
	unsigned int	mss_off;
	unsigned int	cdclkcon_off;
	unsigned int	lrp_off;
	unsigned int	bfs_mask;
	unsigned int	rfs_mask;
	unsigned int	ftx0cnt_off;
};

55 56
struct samsung_i2s_dai_data {
	int dai_type;
57
	u32 quirks;
58
	const struct samsung_i2s_variant_regs *i2s_variant_regs;
59 60
};

J
Jassi Brar 已提交
61 62 63
struct i2s_dai {
	/* Platform device for this DAI */
	struct platform_device *pdev;
64
	/* Memory mapped SFR region */
J
Jassi Brar 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
	void __iomem	*addr;
	/* Rate of RCLK source clock */
	unsigned long rclk_srcrate;
	/* Frame Clock */
	unsigned frmclk;
	/*
	 * Specifically requested RCLK,BCLK by MACHINE Driver.
	 * 0 indicates CPU driver is free to choose any value.
	 */
	unsigned rfs, bfs;
	/* I2S Controller's core clock */
	struct clk *clk;
	/* Clock for generating I2S signals */
	struct clk *op_clk;
	/* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */
	struct i2s_dai *pri_dai;
	/* Pointer to the Secondary_Fifo if it has one, NULL otherwise */
	struct i2s_dai *sec_dai;
#define DAI_OPENED	(1 << 0) /* Dai is opened */
#define DAI_MANAGER	(1 << 1) /* Dai is the manager */
	unsigned mode;
	/* Driver for this DAI */
	struct snd_soc_dai_driver i2s_dai_drv;
	/* DMA parameters */
	struct s3c_dma_params dma_playback;
	struct s3c_dma_params dma_capture;
91
	struct s3c_dma_params idma_playback;
92
	dma_filter_fn filter;
J
Jassi Brar 已提交
93 94 95 96
	u32	quirks;
	u32	suspend_i2smod;
	u32	suspend_i2scon;
	u32	suspend_i2spsr;
97
	const struct samsung_i2s_variant_regs *variant_regs;
98 99 100 101

	/* Spinlock protecting access to the device's registers */
	spinlock_t spinlock;
	spinlock_t *lock;
102 103 104 105

	/* Below fields are only valid if this is the primary FIFO */
	struct clk *clk_table[3];
	struct clk_onecell_data clk_data;
J
Jassi Brar 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119
};

/* Lock for cross i/f checks */
static DEFINE_SPINLOCK(lock);

/* If this is the 'overlay' stereo DAI */
static inline bool is_secondary(struct i2s_dai *i2s)
{
	return i2s->pri_dai ? true : false;
}

/* If operating in SoC-Slave mode */
static inline bool is_slave(struct i2s_dai *i2s)
{
120 121
	u32 mod = readl(i2s->addr + I2SMOD);
	return (mod & (1 << i2s->variant_regs->mss_off)) ? true : false;
J
Jassi Brar 已提交
122 123 124 125 126 127 128 129 130 131
}

/* If this interface of the controller is transmitting data */
static inline bool tx_active(struct i2s_dai *i2s)
{
	u32 active;

	if (!i2s)
		return false;

132
	active = readl(i2s->addr + I2SCON);
J
Jassi Brar 已提交
133 134 135 136 137 138 139 140 141

	if (is_secondary(i2s))
		active &= CON_TXSDMA_ACTIVE;
	else
		active &= CON_TXDMA_ACTIVE;

	return active ? true : false;
}

142 143 144 145 146 147
/* Return pointer to the other DAI */
static inline struct i2s_dai *get_other_dai(struct i2s_dai *i2s)
{
	return i2s->pri_dai ? : i2s->sec_dai;
}

J
Jassi Brar 已提交
148 149 150
/* If the other interface of the controller is transmitting data */
static inline bool other_tx_active(struct i2s_dai *i2s)
{
151
	struct i2s_dai *other = get_other_dai(i2s);
J
Jassi Brar 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169

	return tx_active(other);
}

/* If any interface of the controller is transmitting data */
static inline bool any_tx_active(struct i2s_dai *i2s)
{
	return tx_active(i2s) || other_tx_active(i2s);
}

/* If this interface of the controller is receiving data */
static inline bool rx_active(struct i2s_dai *i2s)
{
	u32 active;

	if (!i2s)
		return false;

170
	active = readl(i2s->addr + I2SCON) & CON_RXDMA_ACTIVE;
J
Jassi Brar 已提交
171 172 173 174 175 176 177

	return active ? true : false;
}

/* If the other interface of the controller is receiving data */
static inline bool other_rx_active(struct i2s_dai *i2s)
{
178
	struct i2s_dai *other = get_other_dai(i2s);
J
Jassi Brar 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230

	return rx_active(other);
}

/* If any interface of the controller is receiving data */
static inline bool any_rx_active(struct i2s_dai *i2s)
{
	return rx_active(i2s) || other_rx_active(i2s);
}

/* If the other DAI is transmitting or receiving data */
static inline bool other_active(struct i2s_dai *i2s)
{
	return other_rx_active(i2s) || other_tx_active(i2s);
}

/* If this DAI is transmitting or receiving data */
static inline bool this_active(struct i2s_dai *i2s)
{
	return tx_active(i2s) || rx_active(i2s);
}

/* If the controller is active anyway */
static inline bool any_active(struct i2s_dai *i2s)
{
	return this_active(i2s) || other_active(i2s);
}

static inline struct i2s_dai *to_info(struct snd_soc_dai *dai)
{
	return snd_soc_dai_get_drvdata(dai);
}

static inline bool is_opened(struct i2s_dai *i2s)
{
	if (i2s && (i2s->mode & DAI_OPENED))
		return true;
	else
		return false;
}

static inline bool is_manager(struct i2s_dai *i2s)
{
	if (is_opened(i2s) && (i2s->mode & DAI_MANAGER))
		return true;
	else
		return false;
}

/* Read RCLK of I2S (in multiples of LRCLK) */
static inline unsigned get_rfs(struct i2s_dai *i2s)
{
231
	u32 rfs;
232 233
	rfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->rfs_off;
	rfs &= i2s->variant_regs->rfs_mask;
J
Jassi Brar 已提交
234 235

	switch (rfs) {
236 237 238 239
	case 7: return 192;
	case 6: return 96;
	case 5: return 128;
	case 4: return 64;
J
Jassi Brar 已提交
240 241 242 243 244 245 246 247 248 249 250
	case 3:	return 768;
	case 2: return 384;
	case 1:	return 512;
	default: return 256;
	}
}

/* Write RCLK of I2S (in multiples of LRCLK) */
static inline void set_rfs(struct i2s_dai *i2s, unsigned rfs)
{
	u32 mod = readl(i2s->addr + I2SMOD);
251
	int rfs_shift = i2s->variant_regs->rfs_off;
J
Jassi Brar 已提交
252

253
	mod &= ~(i2s->variant_regs->rfs_mask << rfs_shift);
J
Jassi Brar 已提交
254 255

	switch (rfs) {
256 257 258 259 260 261 262 263 264 265 266 267
	case 192:
		mod |= (EXYNOS7_MOD_RCLK_192FS << rfs_shift);
		break;
	case 96:
		mod |= (EXYNOS7_MOD_RCLK_96FS << rfs_shift);
		break;
	case 128:
		mod |= (EXYNOS7_MOD_RCLK_128FS << rfs_shift);
		break;
	case 64:
		mod |= (EXYNOS7_MOD_RCLK_64FS << rfs_shift);
		break;
J
Jassi Brar 已提交
268
	case 768:
269
		mod |= (MOD_RCLK_768FS << rfs_shift);
J
Jassi Brar 已提交
270 271
		break;
	case 512:
272
		mod |= (MOD_RCLK_512FS << rfs_shift);
J
Jassi Brar 已提交
273 274
		break;
	case 384:
275
		mod |= (MOD_RCLK_384FS << rfs_shift);
J
Jassi Brar 已提交
276 277
		break;
	default:
278
		mod |= (MOD_RCLK_256FS << rfs_shift);
J
Jassi Brar 已提交
279 280 281 282 283 284 285 286 287
		break;
	}

	writel(mod, i2s->addr + I2SMOD);
}

/* Read Bit-Clock of I2S (in multiples of LRCLK) */
static inline unsigned get_bfs(struct i2s_dai *i2s)
{
288
	u32 bfs;
289 290
	bfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->bfs_off;
	bfs &= i2s->variant_regs->bfs_mask;
J
Jassi Brar 已提交
291 292

	switch (bfs) {
293 294 295 296 297
	case 8: return 256;
	case 7: return 192;
	case 6: return 128;
	case 5: return 96;
	case 4: return 64;
J
Jassi Brar 已提交
298 299 300 301 302 303 304 305 306 307 308
	case 3: return 24;
	case 2: return 16;
	case 1:	return 48;
	default: return 32;
	}
}

/* Write Bit-Clock of I2S (in multiples of LRCLK) */
static inline void set_bfs(struct i2s_dai *i2s, unsigned bfs)
{
	u32 mod = readl(i2s->addr + I2SMOD);
309
	int tdm = i2s->quirks & QUIRK_SUPPORTS_TDM;
310
	int bfs_shift = i2s->variant_regs->bfs_off;
311 312 313 314 315 316

	/* Non-TDM I2S controllers do not support BCLK > 48 * FS */
	if (!tdm && bfs > 48) {
		dev_err(&i2s->pdev->dev, "Unsupported BCLK divider\n");
		return;
	}
J
Jassi Brar 已提交
317

318 319
	mod &= ~(i2s->variant_regs->bfs_mask << bfs_shift);

J
Jassi Brar 已提交
320 321
	switch (bfs) {
	case 48:
322
		mod |= (MOD_BCLK_48FS << bfs_shift);
J
Jassi Brar 已提交
323 324
		break;
	case 32:
325
		mod |= (MOD_BCLK_32FS << bfs_shift);
J
Jassi Brar 已提交
326 327
		break;
	case 24:
328
		mod |= (MOD_BCLK_24FS << bfs_shift);
J
Jassi Brar 已提交
329 330
		break;
	case 16:
331
		mod |= (MOD_BCLK_16FS << bfs_shift);
J
Jassi Brar 已提交
332
		break;
333 334 335 336 337 338 339 340 341 342 343 344 345 346
	case 64:
		mod |= (EXYNOS5420_MOD_BCLK_64FS << bfs_shift);
		break;
	case 96:
		mod |= (EXYNOS5420_MOD_BCLK_96FS << bfs_shift);
		break;
	case 128:
		mod |= (EXYNOS5420_MOD_BCLK_128FS << bfs_shift);
		break;
	case 192:
		mod |= (EXYNOS5420_MOD_BCLK_192FS << bfs_shift);
		break;
	case 256:
		mod |= (EXYNOS5420_MOD_BCLK_256FS << bfs_shift);
J
Jassi Brar 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
		break;
	default:
		dev_err(&i2s->pdev->dev, "Wrong BCLK Divider!\n");
		return;
	}

	writel(mod, i2s->addr + I2SMOD);
}

/* Sample-Size */
static inline int get_blc(struct i2s_dai *i2s)
{
	int blc = readl(i2s->addr + I2SMOD);

	blc = (blc >> 13) & 0x3;

	switch (blc) {
	case 2: return 24;
	case 1:	return 8;
	default: return 16;
	}
}

/* TX Channel Control */
static void i2s_txctrl(struct i2s_dai *i2s, int on)
{
	void __iomem *addr = i2s->addr;
374
	int txr_off = i2s->variant_regs->txr_off;
J
Jassi Brar 已提交
375
	u32 con = readl(addr + I2SCON);
376
	u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off);
J
Jassi Brar 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390

	if (on) {
		con |= CON_ACTIVE;
		con &= ~CON_TXCH_PAUSE;

		if (is_secondary(i2s)) {
			con |= CON_TXSDMA_ACTIVE;
			con &= ~CON_TXSDMA_PAUSE;
		} else {
			con |= CON_TXDMA_ACTIVE;
			con &= ~CON_TXDMA_PAUSE;
		}

		if (any_rx_active(i2s))
391
			mod |= 2 << txr_off;
J
Jassi Brar 已提交
392
		else
393
			mod |= 0 << txr_off;
J
Jassi Brar 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
	} else {
		if (is_secondary(i2s)) {
			con |=  CON_TXSDMA_PAUSE;
			con &= ~CON_TXSDMA_ACTIVE;
		} else {
			con |=  CON_TXDMA_PAUSE;
			con &= ~CON_TXDMA_ACTIVE;
		}

		if (other_tx_active(i2s)) {
			writel(con, addr + I2SCON);
			return;
		}

		con |=  CON_TXCH_PAUSE;

		if (any_rx_active(i2s))
411
			mod |= 1 << txr_off;
J
Jassi Brar 已提交
412 413 414 415 416 417 418 419 420 421 422 423
		else
			con &= ~CON_ACTIVE;
	}

	writel(mod, addr + I2SMOD);
	writel(con, addr + I2SCON);
}

/* RX Channel Control */
static void i2s_rxctrl(struct i2s_dai *i2s, int on)
{
	void __iomem *addr = i2s->addr;
424
	int txr_off = i2s->variant_regs->txr_off;
J
Jassi Brar 已提交
425
	u32 con = readl(addr + I2SCON);
426
	u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off);
J
Jassi Brar 已提交
427 428 429 430 431 432

	if (on) {
		con |= CON_RXDMA_ACTIVE | CON_ACTIVE;
		con &= ~(CON_RXDMA_PAUSE | CON_RXCH_PAUSE);

		if (any_tx_active(i2s))
433
			mod |= 2 << txr_off;
J
Jassi Brar 已提交
434
		else
435
			mod |= 1 << txr_off;
J
Jassi Brar 已提交
436 437 438 439 440
	} else {
		con |=  CON_RXDMA_PAUSE | CON_RXCH_PAUSE;
		con &= ~CON_RXDMA_ACTIVE;

		if (any_tx_active(i2s))
441
			mod |= 0 << txr_off;
J
Jassi Brar 已提交
442 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
		else
			con &= ~CON_ACTIVE;
	}

	writel(mod, addr + I2SMOD);
	writel(con, addr + I2SCON);
}

/* Flush FIFO of an interface */
static inline void i2s_fifo(struct i2s_dai *i2s, u32 flush)
{
	void __iomem *fic;
	u32 val;

	if (!i2s)
		return;

	if (is_secondary(i2s))
		fic = i2s->addr + I2SFICS;
	else
		fic = i2s->addr + I2SFIC;

	/* Flush the FIFO */
	writel(readl(fic) | flush, fic);

	/* Be patient */
	val = msecs_to_loops(1) / 1000; /* 1 usec */
	while (--val)
		cpu_relax();

	writel(readl(fic) & ~flush, fic);
}

static int i2s_set_sysclk(struct snd_soc_dai *dai,
	  int clk_id, unsigned int rfs, int dir)
{
	struct i2s_dai *i2s = to_info(dai);
479
	struct i2s_dai *other = get_other_dai(i2s);
480 481 482
	const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
	unsigned int cdcon_mask = 1 << i2s_regs->cdclkcon_off;
	unsigned int rsrc_mask = 1 << i2s_regs->rclksrc_off;
483
	u32 mod, mask, val = 0;
484
	unsigned long flags;
485

486
	spin_lock_irqsave(i2s->lock, flags);
487
	mod = readl(i2s->addr + I2SMOD);
488
	spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
489 490

	switch (clk_id) {
491
	case SAMSUNG_I2S_OPCLK:
492 493
		mask = MOD_OPCLK_MASK;
		val = dir;
494
		break;
J
Jassi Brar 已提交
495
	case SAMSUNG_I2S_CDCLK:
496
		mask = 1 << i2s_regs->cdclkcon_off;
J
Jassi Brar 已提交
497 498 499 500
		/* Shouldn't matter in GATING(CLOCK_IN) mode */
		if (dir == SND_SOC_CLOCK_IN)
			rfs = 0;

501
		if ((rfs && other && other->rfs && (other->rfs != rfs)) ||
J
Jassi Brar 已提交
502 503
				(any_active(i2s) &&
				(((dir == SND_SOC_CLOCK_IN)
504
					&& !(mod & cdcon_mask)) ||
J
Jassi Brar 已提交
505
				((dir == SND_SOC_CLOCK_OUT)
506
					&& (mod & cdcon_mask))))) {
J
Jassi Brar 已提交
507 508 509 510 511 512
			dev_err(&i2s->pdev->dev,
				"%s:%d Other DAI busy\n", __func__, __LINE__);
			return -EAGAIN;
		}

		if (dir == SND_SOC_CLOCK_IN)
513
			val = 1 << i2s_regs->cdclkcon_off;
J
Jassi Brar 已提交
514 515 516 517 518 519

		i2s->rfs = rfs;
		break;

	case SAMSUNG_I2S_RCLKSRC_0: /* clock corrsponding to IISMOD[10] := 0 */
	case SAMSUNG_I2S_RCLKSRC_1: /* clock corrsponding to IISMOD[10] := 1 */
520 521
		mask = 1 << i2s_regs->rclksrc_off;

J
Jassi Brar 已提交
522 523 524 525 526 527 528
		if ((i2s->quirks & QUIRK_NO_MUXPSR)
				|| (clk_id == SAMSUNG_I2S_RCLKSRC_0))
			clk_id = 0;
		else
			clk_id = 1;

		if (!any_active(i2s)) {
529
			if (i2s->op_clk && !IS_ERR(i2s->op_clk)) {
530 531
				if ((clk_id && !(mod & rsrc_mask)) ||
					(!clk_id && (mod & rsrc_mask))) {
532
					clk_disable_unprepare(i2s->op_clk);
J
Jassi Brar 已提交
533 534
					clk_put(i2s->op_clk);
				} else {
535 536
					i2s->rclk_srcrate =
						clk_get_rate(i2s->op_clk);
J
Jassi Brar 已提交
537 538 539 540
					return 0;
				}
			}

541 542 543 544 545 546
			if (clk_id)
				i2s->op_clk = clk_get(&i2s->pdev->dev,
						"i2s_opclk1");
			else
				i2s->op_clk = clk_get(&i2s->pdev->dev,
						"i2s_opclk0");
547 548 549 550

			if (WARN_ON(IS_ERR(i2s->op_clk)))
				return PTR_ERR(i2s->op_clk);

551
			clk_prepare_enable(i2s->op_clk);
J
Jassi Brar 已提交
552 553 554 555 556 557 558
			i2s->rclk_srcrate = clk_get_rate(i2s->op_clk);

			/* Over-ride the other's */
			if (other) {
				other->op_clk = i2s->op_clk;
				other->rclk_srcrate = i2s->rclk_srcrate;
			}
559 560
		} else if ((!clk_id && (mod & rsrc_mask))
				|| (clk_id && !(mod & rsrc_mask))) {
J
Jassi Brar 已提交
561 562 563 564 565 566 567 568 569 570
			dev_err(&i2s->pdev->dev,
				"%s:%d Other DAI busy\n", __func__, __LINE__);
			return -EAGAIN;
		} else {
			/* Call can't be on the active DAI */
			i2s->op_clk = other->op_clk;
			i2s->rclk_srcrate = other->rclk_srcrate;
			return 0;
		}

571 572
		if (clk_id == 1)
			val = 1 << i2s_regs->rclksrc_off;
573
		break;
J
Jassi Brar 已提交
574 575 576 577 578
	default:
		dev_err(&i2s->pdev->dev, "We don't serve that!\n");
		return -EINVAL;
	}

579
	spin_lock_irqsave(i2s->lock, flags);
580 581
	mod = readl(i2s->addr + I2SMOD);
	mod = (mod & ~mask) | val;
J
Jassi Brar 已提交
582
	writel(mod, i2s->addr + I2SMOD);
583
	spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
584 585 586 587 588 589 590 591

	return 0;
}

static int i2s_set_fmt(struct snd_soc_dai *dai,
	unsigned int fmt)
{
	struct i2s_dai *i2s = to_info(dai);
592
	int lrp_shift, sdf_shift, sdf_mask, lrp_rlow, mod_slave;
593
	u32 mod, tmp = 0;
594
	unsigned long flags;
J
Jassi Brar 已提交
595

596 597 598
	lrp_shift = i2s->variant_regs->lrp_off;
	sdf_shift = i2s->variant_regs->sdf_off;
	mod_slave = 1 << i2s->variant_regs->mss_off;
599

600 601 602
	sdf_mask = MOD_SDF_MASK << sdf_shift;
	lrp_rlow = MOD_LR_RLOW << lrp_shift;

J
Jassi Brar 已提交
603 604 605
	/* Format is priority */
	switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
	case SND_SOC_DAIFMT_RIGHT_J:
606 607
		tmp |= lrp_rlow;
		tmp |= (MOD_SDF_MSB << sdf_shift);
J
Jassi Brar 已提交
608 609
		break;
	case SND_SOC_DAIFMT_LEFT_J:
610 611
		tmp |= lrp_rlow;
		tmp |= (MOD_SDF_LSB << sdf_shift);
J
Jassi Brar 已提交
612 613
		break;
	case SND_SOC_DAIFMT_I2S:
614
		tmp |= (MOD_SDF_IIS << sdf_shift);
J
Jassi Brar 已提交
615 616 617 618 619 620 621 622 623 624 625 626 627 628
		break;
	default:
		dev_err(&i2s->pdev->dev, "Format not supported\n");
		return -EINVAL;
	}

	/*
	 * INV flag is relative to the FORMAT flag - if set it simply
	 * flips the polarity specified by the Standard
	 */
	switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
	case SND_SOC_DAIFMT_NB_NF:
		break;
	case SND_SOC_DAIFMT_NB_IF:
629 630
		if (tmp & lrp_rlow)
			tmp &= ~lrp_rlow;
J
Jassi Brar 已提交
631
		else
632
			tmp |= lrp_rlow;
J
Jassi Brar 已提交
633 634 635 636 637 638 639 640
		break;
	default:
		dev_err(&i2s->pdev->dev, "Polarity not supported\n");
		return -EINVAL;
	}

	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
	case SND_SOC_DAIFMT_CBM_CFM:
641
		tmp |= mod_slave;
J
Jassi Brar 已提交
642 643 644 645 646 647 648 649 650 651 652 653
		break;
	case SND_SOC_DAIFMT_CBS_CFS:
		/* Set default source clock in Master mode */
		if (i2s->rclk_srcrate == 0)
			i2s_set_sysclk(dai, SAMSUNG_I2S_RCLKSRC_0,
							0, SND_SOC_CLOCK_IN);
		break;
	default:
		dev_err(&i2s->pdev->dev, "master/slave format not supported\n");
		return -EINVAL;
	}

654
	spin_lock_irqsave(i2s->lock, flags);
655
	mod = readl(i2s->addr + I2SMOD);
656 657 658 659
	/*
	 * Don't change the I2S mode if any controller is active on this
	 * channel.
	 */
J
Jassi Brar 已提交
660
	if (any_active(i2s) &&
661
		((mod & (sdf_mask | lrp_rlow | mod_slave)) != tmp)) {
662
		spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
663 664 665 666 667
		dev_err(&i2s->pdev->dev,
				"%s:%d Other DAI busy\n", __func__, __LINE__);
		return -EAGAIN;
	}

668
	mod &= ~(sdf_mask | lrp_rlow | mod_slave);
J
Jassi Brar 已提交
669 670
	mod |= tmp;
	writel(mod, i2s->addr + I2SMOD);
671
	spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
672 673 674 675 676 677 678 679

	return 0;
}

static int i2s_hw_params(struct snd_pcm_substream *substream,
	struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);
680
	u32 mod, mask = 0, val = 0;
681
	unsigned long flags;
J
Jassi Brar 已提交
682 683

	if (!is_secondary(i2s))
684
		mask |= (MOD_DC2_EN | MOD_DC1_EN);
J
Jassi Brar 已提交
685 686 687

	switch (params_channels(params)) {
	case 6:
688
		val |= MOD_DC2_EN;
J
Jassi Brar 已提交
689
	case 4:
690
		val |= MOD_DC1_EN;
J
Jassi Brar 已提交
691 692
		break;
	case 2:
693 694 695 696 697 698 699 700 701 702 703
		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
			i2s->dma_playback.dma_size = 4;
		else
			i2s->dma_capture.dma_size = 4;
		break;
	case 1:
		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
			i2s->dma_playback.dma_size = 2;
		else
			i2s->dma_capture.dma_size = 2;

J
Jassi Brar 已提交
704 705 706 707 708 709 710 711
		break;
	default:
		dev_err(&i2s->pdev->dev, "%d channels not supported\n",
				params_channels(params));
		return -EINVAL;
	}

	if (is_secondary(i2s))
712
		mask |= MOD_BLCS_MASK;
J
Jassi Brar 已提交
713
	else
714
		mask |= MOD_BLCP_MASK;
J
Jassi Brar 已提交
715 716

	if (is_manager(i2s))
717
		mask |= MOD_BLC_MASK;
J
Jassi Brar 已提交
718

719 720
	switch (params_width(params)) {
	case 8:
J
Jassi Brar 已提交
721
		if (is_secondary(i2s))
722
			val |= MOD_BLCS_8BIT;
J
Jassi Brar 已提交
723
		else
724
			val |= MOD_BLCP_8BIT;
J
Jassi Brar 已提交
725
		if (is_manager(i2s))
726
			val |= MOD_BLC_8BIT;
J
Jassi Brar 已提交
727
		break;
728
	case 16:
J
Jassi Brar 已提交
729
		if (is_secondary(i2s))
730
			val |= MOD_BLCS_16BIT;
J
Jassi Brar 已提交
731
		else
732
			val |= MOD_BLCP_16BIT;
J
Jassi Brar 已提交
733
		if (is_manager(i2s))
734
			val |= MOD_BLC_16BIT;
J
Jassi Brar 已提交
735
		break;
736
	case 24:
J
Jassi Brar 已提交
737
		if (is_secondary(i2s))
738
			val |= MOD_BLCS_24BIT;
J
Jassi Brar 已提交
739
		else
740
			val |= MOD_BLCP_24BIT;
J
Jassi Brar 已提交
741
		if (is_manager(i2s))
742
			val |= MOD_BLC_24BIT;
J
Jassi Brar 已提交
743 744 745 746 747 748
		break;
	default:
		dev_err(&i2s->pdev->dev, "Format(%d) not supported\n",
				params_format(params));
		return -EINVAL;
	}
749

750
	spin_lock_irqsave(i2s->lock, flags);
751 752
	mod = readl(i2s->addr + I2SMOD);
	mod = (mod & ~mask) | val;
J
Jassi Brar 已提交
753
	writel(mod, i2s->addr + I2SMOD);
754
	spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
755

756 757
	samsung_asoc_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture);

J
Jassi Brar 已提交
758 759 760 761 762 763 764 765 766 767
	i2s->frmclk = params_rate(params);

	return 0;
}

/* We set constraints on the substream acc to the version of I2S */
static int i2s_startup(struct snd_pcm_substream *substream,
	  struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);
768
	struct i2s_dai *other = get_other_dai(i2s);
J
Jassi Brar 已提交
769 770 771 772 773 774 775 776 777 778 779
	unsigned long flags;

	spin_lock_irqsave(&lock, flags);

	i2s->mode |= DAI_OPENED;

	if (is_manager(other))
		i2s->mode &= ~DAI_MANAGER;
	else
		i2s->mode |= DAI_MANAGER;

780 781 782
	if (!any_active(i2s) && (i2s->quirks & QUIRK_NEED_RSTCLR))
		writel(CON_RSTCLR, i2s->addr + I2SCON);

J
Jassi Brar 已提交
783 784 785 786 787 788 789 790 791
	spin_unlock_irqrestore(&lock, flags);

	return 0;
}

static void i2s_shutdown(struct snd_pcm_substream *substream,
	struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);
792
	struct i2s_dai *other = get_other_dai(i2s);
J
Jassi Brar 已提交
793 794 795 796 797 798 799
	unsigned long flags;

	spin_lock_irqsave(&lock, flags);

	i2s->mode &= ~DAI_OPENED;
	i2s->mode &= ~DAI_MANAGER;

800
	if (is_opened(other))
J
Jassi Brar 已提交
801
		other->mode |= DAI_MANAGER;
802

J
Jassi Brar 已提交
803 804 805 806 807 808 809 810 811
	/* Reset any constraint on RFS and BFS */
	i2s->rfs = 0;
	i2s->bfs = 0;

	spin_unlock_irqrestore(&lock, flags);
}

static int config_setup(struct i2s_dai *i2s)
{
812
	struct i2s_dai *other = get_other_dai(i2s);
J
Jassi Brar 已提交
813 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 852 853 854
	unsigned rfs, bfs, blc;
	u32 psr;

	blc = get_blc(i2s);

	bfs = i2s->bfs;

	if (!bfs && other)
		bfs = other->bfs;

	/* Select least possible multiple(2) if no constraint set */
	if (!bfs)
		bfs = blc * 2;

	rfs = i2s->rfs;

	if (!rfs && other)
		rfs = other->rfs;

	if ((rfs == 256 || rfs == 512) && (blc == 24)) {
		dev_err(&i2s->pdev->dev,
			"%d-RFS not supported for 24-blc\n", rfs);
		return -EINVAL;
	}

	if (!rfs) {
		if (bfs == 16 || bfs == 32)
			rfs = 256;
		else
			rfs = 384;
	}

	/* If already setup and running */
	if (any_active(i2s) && (get_rfs(i2s) != rfs || get_bfs(i2s) != bfs)) {
		dev_err(&i2s->pdev->dev,
				"%s:%d Other DAI busy\n", __func__, __LINE__);
		return -EAGAIN;
	}

	set_bfs(i2s, bfs);
	set_rfs(i2s, rfs);

855 856 857 858
	/* Don't bother with PSR in Slave mode */
	if (is_slave(i2s))
		return 0;

J
Jassi Brar 已提交
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
	if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
		psr = i2s->rclk_srcrate / i2s->frmclk / rfs;
		writel(((psr - 1) << 8) | PSR_PSREN, i2s->addr + I2SPSR);
		dev_dbg(&i2s->pdev->dev,
			"RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
				i2s->rclk_srcrate, psr, rfs, bfs);
	}

	return 0;
}

static int i2s_trigger(struct snd_pcm_substream *substream,
	int cmd, struct snd_soc_dai *dai)
{
	int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct i2s_dai *i2s = to_info(rtd->cpu_dai);
	unsigned long flags;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_RESUME:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
882
		spin_lock_irqsave(i2s->lock, flags);
J
Jassi Brar 已提交
883 884

		if (config_setup(i2s)) {
885
			spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
886 887 888 889 890 891 892 893
			return -EINVAL;
		}

		if (capture)
			i2s_rxctrl(i2s, 1);
		else
			i2s_txctrl(i2s, 1);

894
		spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
895 896 897 898
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_SUSPEND:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
899
		spin_lock_irqsave(i2s->lock, flags);
J
Jassi Brar 已提交
900

901
		if (capture) {
J
Jassi Brar 已提交
902
			i2s_rxctrl(i2s, 0);
903
			i2s_fifo(i2s, FIC_RXFLUSH);
904 905
		} else {
			i2s_txctrl(i2s, 0);
906
			i2s_fifo(i2s, FIC_TXFLUSH);
907
		}
908

909
		spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
910 911 912 913 914 915 916 917 918 919
		break;
	}

	return 0;
}

static int i2s_set_clkdiv(struct snd_soc_dai *dai,
	int div_id, int div)
{
	struct i2s_dai *i2s = to_info(dai);
920
	struct i2s_dai *other = get_other_dai(i2s);
J
Jassi Brar 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946

	switch (div_id) {
	case SAMSUNG_I2S_DIV_BCLK:
		if ((any_active(i2s) && div && (get_bfs(i2s) != div))
			|| (other && other->bfs && (other->bfs != div))) {
			dev_err(&i2s->pdev->dev,
				"%s:%d Other DAI busy\n", __func__, __LINE__);
			return -EAGAIN;
		}
		i2s->bfs = div;
		break;
	default:
		dev_err(&i2s->pdev->dev,
			"Invalid clock divider(%d)\n", div_id);
		return -EINVAL;
	}

	return 0;
}

static snd_pcm_sframes_t
i2s_delay(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);
	u32 reg = readl(i2s->addr + I2SFIC);
	snd_pcm_sframes_t delay;
947
	const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs;
J
Jassi Brar 已提交
948 949 950 951 952 953

	if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
		delay = FIC_RXCOUNT(reg);
	else if (is_secondary(i2s))
		delay = FICS_TXCOUNT(readl(i2s->addr + I2SFICS));
	else
954
		delay = (reg >> i2s_regs->ftx0cnt_off) & 0x7f;
J
Jassi Brar 已提交
955 956 957 958 959 960 961 962 963

	return delay;
}

#ifdef CONFIG_PM
static int i2s_suspend(struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);

964 965 966
	i2s->suspend_i2smod = readl(i2s->addr + I2SMOD);
	i2s->suspend_i2scon = readl(i2s->addr + I2SCON);
	i2s->suspend_i2spsr = readl(i2s->addr + I2SPSR);
J
Jassi Brar 已提交
967 968 969 970 971 972 973 974

	return 0;
}

static int i2s_resume(struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);

975 976 977
	writel(i2s->suspend_i2scon, i2s->addr + I2SCON);
	writel(i2s->suspend_i2smod, i2s->addr + I2SMOD);
	writel(i2s->suspend_i2spsr, i2s->addr + I2SPSR);
J
Jassi Brar 已提交
978 979 980 981 982 983 984 985 986 987 988

	return 0;
}
#else
#define i2s_suspend NULL
#define i2s_resume  NULL
#endif

static int samsung_i2s_dai_probe(struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = to_info(dai);
989
	struct i2s_dai *other = get_other_dai(i2s);
990
	unsigned long flags;
J
Jassi Brar 已提交
991

992
	if (is_secondary(i2s)) { /* If this is probe on the secondary DAI */
993 994
		samsung_asoc_init_dma_data(dai, &other->sec_dai->dma_playback,
					   NULL);
995 996 997
	} else {
		samsung_asoc_init_dma_data(dai, &i2s->dma_playback,
					   &i2s->dma_capture);
998

999 1000
		if (i2s->quirks & QUIRK_NEED_RSTCLR)
			writel(CON_RSTCLR, i2s->addr + I2SCON);
J
Jassi Brar 已提交
1001

1002 1003
		if (i2s->quirks & QUIRK_SUPPORTS_IDMA)
			idma_reg_addr_init(i2s->addr,
1004
					i2s->sec_dai->idma_playback.dma_addr);
1005
	}
1006

J
Jassi Brar 已提交
1007 1008 1009
	/* Reset any constraint on RFS and BFS */
	i2s->rfs = 0;
	i2s->bfs = 0;
1010
	i2s->rclk_srcrate = 0;
1011 1012

	spin_lock_irqsave(i2s->lock, flags);
J
Jassi Brar 已提交
1013 1014 1015 1016 1017
	i2s_txctrl(i2s, 0);
	i2s_rxctrl(i2s, 0);
	i2s_fifo(i2s, FIC_TXFLUSH);
	i2s_fifo(other, FIC_TXFLUSH);
	i2s_fifo(i2s, FIC_RXFLUSH);
1018
	spin_unlock_irqrestore(i2s->lock, flags);
J
Jassi Brar 已提交
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031

	/* Gate CDCLK by default */
	if (!is_opened(other))
		i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK,
				0, SND_SOC_CLOCK_IN);

	return 0;
}

static int samsung_i2s_dai_remove(struct snd_soc_dai *dai)
{
	struct i2s_dai *i2s = snd_soc_dai_get_drvdata(dai);

1032
	if (!is_secondary(i2s)) {
1033 1034
		if (i2s->quirks & QUIRK_NEED_RSTCLR) {
			spin_lock(i2s->lock);
J
Jassi Brar 已提交
1035
			writel(0, i2s->addr + I2SCON);
1036 1037
			spin_unlock(i2s->lock);
		}
J
Jassi Brar 已提交
1038 1039 1040 1041 1042
	}

	return 0;
}

1043
static const struct snd_soc_dai_ops samsung_i2s_dai_ops = {
J
Jassi Brar 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
	.trigger = i2s_trigger,
	.hw_params = i2s_hw_params,
	.set_fmt = i2s_set_fmt,
	.set_clkdiv = i2s_set_clkdiv,
	.set_sysclk = i2s_set_sysclk,
	.startup = i2s_startup,
	.shutdown = i2s_shutdown,
	.delay = i2s_delay,
};

1054 1055 1056 1057
static const struct snd_soc_component_driver samsung_i2s_component = {
	.name		= "samsung-i2s",
};

J
Jassi Brar 已提交
1058 1059 1060 1061 1062 1063
#define SAMSUNG_I2S_RATES	SNDRV_PCM_RATE_8000_96000

#define SAMSUNG_I2S_FMTS	(SNDRV_PCM_FMTBIT_S8 | \
					SNDRV_PCM_FMTBIT_S16_LE | \
					SNDRV_PCM_FMTBIT_S24_LE)

1064
static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
J
Jassi Brar 已提交
1065 1066
{
	struct i2s_dai *i2s;
1067
	int ret;
J
Jassi Brar 已提交
1068

1069
	i2s = devm_kzalloc(&pdev->dev, sizeof(struct i2s_dai), GFP_KERNEL);
J
Jassi Brar 已提交
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
	if (i2s == NULL)
		return NULL;

	i2s->pdev = pdev;
	i2s->pri_dai = NULL;
	i2s->sec_dai = NULL;
	i2s->i2s_dai_drv.symmetric_rates = 1;
	i2s->i2s_dai_drv.probe = samsung_i2s_dai_probe;
	i2s->i2s_dai_drv.remove = samsung_i2s_dai_remove;
	i2s->i2s_dai_drv.ops = &samsung_i2s_dai_ops;
	i2s->i2s_dai_drv.suspend = i2s_suspend;
	i2s->i2s_dai_drv.resume = i2s_resume;
1082
	i2s->i2s_dai_drv.playback.channels_min = 1;
J
Jassi Brar 已提交
1083 1084 1085 1086 1087
	i2s->i2s_dai_drv.playback.channels_max = 2;
	i2s->i2s_dai_drv.playback.rates = SAMSUNG_I2S_RATES;
	i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS;

	if (!sec) {
1088
		i2s->i2s_dai_drv.capture.channels_min = 1;
J
Jassi Brar 已提交
1089 1090 1091
		i2s->i2s_dai_drv.capture.channels_max = 2;
		i2s->i2s_dai_drv.capture.rates = SAMSUNG_I2S_RATES;
		i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS;
1092
		dev_set_drvdata(&i2s->pdev->dev, i2s);
J
Jassi Brar 已提交
1093
	} else {	/* Create a new platform_device for Secondary */
1094
		i2s->pdev = platform_device_alloc("samsung-i2s-sec", -1);
1095
		if (!i2s->pdev)
J
Jassi Brar 已提交
1096 1097
			return NULL;

1098 1099
		i2s->pdev->dev.parent = &pdev->dev;

1100 1101 1102 1103 1104
		platform_set_drvdata(i2s->pdev, i2s);
		ret = platform_device_add(i2s->pdev);
		if (ret < 0)
			return NULL;
	}
J
Jassi Brar 已提交
1105 1106 1107 1108

	return i2s;
}

1109 1110
static const struct of_device_id exynos_i2s_match[];

1111 1112
static inline const struct samsung_i2s_dai_data *samsung_i2s_get_driver_data(
						struct platform_device *pdev)
1113
{
1114
	if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
1115 1116
		const struct of_device_id *match;
		match = of_match_node(exynos_i2s_match, pdev->dev.of_node);
1117 1118
		return match ? match->data : NULL;
	} else {
1119 1120
		return (struct samsung_i2s_dai_data *)
				platform_get_device_id(pdev)->driver_data;
1121
	}
1122 1123
}

1124
#ifdef CONFIG_PM
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
static int i2s_runtime_suspend(struct device *dev)
{
	struct i2s_dai *i2s = dev_get_drvdata(dev);

	clk_disable_unprepare(i2s->clk);

	return 0;
}

static int i2s_runtime_resume(struct device *dev)
{
	struct i2s_dai *i2s = dev_get_drvdata(dev);

	clk_prepare_enable(i2s->clk);

	return 0;
}
1142
#endif /* CONFIG_PM */
1143

1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 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
static void i2s_unregister_clocks(struct i2s_dai *i2s)
{
	int i;

	for (i = 0; i < i2s->clk_data.clk_num; i++) {
		if (!IS_ERR(i2s->clk_table[i]))
			clk_unregister(i2s->clk_table[i]);
	}
}

static void i2s_unregister_clock_provider(struct platform_device *pdev)
{
	struct i2s_dai *i2s = dev_get_drvdata(&pdev->dev);

	of_clk_del_provider(pdev->dev.of_node);
	i2s_unregister_clocks(i2s);
}

static int i2s_register_clock_provider(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
	struct i2s_dai *i2s = dev_get_drvdata(dev);
	const char *clk_name[2] = { "i2s_opclk0", "i2s_opclk1" };
	const char *p_names[2] = { NULL };
	const struct samsung_i2s_variant_regs *reg_info = i2s->variant_regs;
	struct clk *rclksrc;
	int ret, i;

	/* Register the clock provider only if it's expected in the DTB */
	if (!of_find_property(dev->of_node, "#clock-cells", NULL))
		return 0;

	/* Get the RCLKSRC mux clock parent clock names */
	for (i = 0; i < ARRAY_SIZE(p_names); i++) {
		rclksrc = clk_get(dev, clk_name[i]);
		if (IS_ERR(rclksrc))
			continue;
		p_names[i] = __clk_get_name(rclksrc);
		clk_put(rclksrc);
	}

	if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
		/* Activate the prescaler */
		u32 val = readl(i2s->addr + I2SPSR);
		writel(val | PSR_PSREN, i2s->addr + I2SPSR);

		i2s->clk_table[CLK_I2S_RCLK_SRC] = clk_register_mux(NULL,
				"i2s_rclksrc", p_names, ARRAY_SIZE(p_names),
				CLK_SET_RATE_NO_REPARENT | CLK_SET_RATE_PARENT,
				i2s->addr + I2SMOD, reg_info->rclksrc_off,
				1, 0, i2s->lock);

		i2s->clk_table[CLK_I2S_RCLK_PSR] = clk_register_divider(NULL,
				"i2s_presc", "i2s_rclksrc",
				CLK_SET_RATE_PARENT,
				i2s->addr + I2SPSR, 8, 6, 0, i2s->lock);

		p_names[0] = "i2s_presc";
		i2s->clk_data.clk_num = 2;
	}
	of_property_read_string_index(dev->of_node,
				"clock-output-names", 0, &clk_name[0]);

	i2s->clk_table[CLK_I2S_CDCLK] = clk_register_gate(NULL, clk_name[0],
				p_names[0], CLK_SET_RATE_PARENT,
				i2s->addr + I2SMOD, reg_info->cdclkcon_off,
				CLK_GATE_SET_TO_DISABLE, i2s->lock);

	i2s->clk_data.clk_num += 1;
	i2s->clk_data.clks = i2s->clk_table;

	ret = of_clk_add_provider(dev->of_node, of_clk_src_onecell_get,
				  &i2s->clk_data);
	if (ret < 0) {
		dev_err(dev, "failed to add clock provider: %d\n", ret);
		i2s_unregister_clocks(i2s);
	}

	return ret;
}

1225
static int samsung_i2s_probe(struct platform_device *pdev)
J
Jassi Brar 已提交
1226 1227
{
	struct i2s_dai *pri_dai, *sec_dai = NULL;
1228 1229
	struct s3c_audio_pdata *i2s_pdata = pdev->dev.platform_data;
	struct samsung_i2s *i2s_cfg = NULL;
J
Jassi Brar 已提交
1230
	struct resource *res;
1231 1232
	u32 regs_base, quirks = 0, idma_addr = 0;
	struct device_node *np = pdev->dev.of_node;
1233
	const struct samsung_i2s_dai_data *i2s_dai_data;
1234
	int ret;
J
Jassi Brar 已提交
1235 1236

	/* Call during Seconday interface registration */
1237
	i2s_dai_data = samsung_i2s_get_driver_data(pdev);
1238

1239
	if (i2s_dai_data->dai_type == TYPE_SEC) {
J
Jassi Brar 已提交
1240
		sec_dai = dev_get_drvdata(&pdev->dev);
1241 1242 1243 1244
		if (!sec_dai) {
			dev_err(&pdev->dev, "Unable to get drvdata\n");
			return -EFAULT;
		}
1245
		ret = devm_snd_soc_register_component(&sec_dai->pdev->dev,
1246 1247
						&samsung_i2s_component,
						&sec_dai->i2s_dai_drv, 1);
1248 1249 1250
		if (ret != 0)
			return ret;

1251 1252
		return samsung_asoc_dma_platform_register(&pdev->dev,
							  sec_dai->filter);
J
Jassi Brar 已提交
1253 1254
	}

1255 1256 1257 1258
	pri_dai = i2s_alloc_dai(pdev, false);
	if (!pri_dai) {
		dev_err(&pdev->dev, "Unable to alloc I2S_pri\n");
		return -ENOMEM;
J
Jassi Brar 已提交
1259 1260
	}

1261 1262 1263
	spin_lock_init(&pri_dai->spinlock);
	pri_dai->lock = &pri_dai->spinlock;

1264 1265 1266 1267 1268 1269
	if (!np) {
		if (i2s_pdata == NULL) {
			dev_err(&pdev->dev, "Can't work without s3c_audio_pdata\n");
			return -EINVAL;
		}

1270 1271
		pri_dai->dma_playback.slave = i2s_pdata->dma_playback;
		pri_dai->dma_capture.slave = i2s_pdata->dma_capture;
1272
		pri_dai->filter = i2s_pdata->dma_filter;
1273

1274 1275 1276 1277 1278 1279 1280 1281
		if (&i2s_pdata->type)
			i2s_cfg = &i2s_pdata->type.i2s;

		if (i2s_cfg) {
			quirks = i2s_cfg->quirks;
			idma_addr = i2s_cfg->idma_addr;
		}
	} else {
1282
		quirks = i2s_dai_data->quirks;
1283 1284
		if (of_property_read_u32(np, "samsung,idma-addr",
					 &idma_addr)) {
1285 1286
			if (quirks & QUIRK_SUPPORTS_IDMA) {
				dev_info(&pdev->dev, "idma address is not"\
1287 1288 1289 1290
						"specified");
			}
		}
	}
J
Jassi Brar 已提交
1291 1292

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1293 1294 1295
	pri_dai->addr = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(pri_dai->addr))
		return PTR_ERR(pri_dai->addr);
J
Jassi Brar 已提交
1296 1297 1298

	regs_base = res->start;

1299 1300 1301 1302 1303
	pri_dai->clk = devm_clk_get(&pdev->dev, "iis");
	if (IS_ERR(pri_dai->clk)) {
		dev_err(&pdev->dev, "Failed to get iis clock\n");
		return PTR_ERR(pri_dai->clk);
	}
1304 1305 1306 1307 1308 1309

	ret = clk_prepare_enable(pri_dai->clk);
	if (ret != 0) {
		dev_err(&pdev->dev, "failed to enable clock: %d\n", ret);
		return ret;
	}
J
Jassi Brar 已提交
1310 1311
	pri_dai->dma_playback.dma_addr = regs_base + I2STXD;
	pri_dai->dma_capture.dma_addr = regs_base + I2SRXD;
1312 1313
	pri_dai->dma_playback.ch_name = "tx";
	pri_dai->dma_capture.ch_name = "rx";
J
Jassi Brar 已提交
1314 1315 1316
	pri_dai->dma_playback.dma_size = 4;
	pri_dai->dma_capture.dma_size = 4;
	pri_dai->quirks = quirks;
1317
	pri_dai->variant_regs = i2s_dai_data->i2s_variant_regs;
J
Jassi Brar 已提交
1318 1319 1320 1321 1322 1323 1324 1325

	if (quirks & QUIRK_PRI_6CHAN)
		pri_dai->i2s_dai_drv.playback.channels_max = 6;

	if (quirks & QUIRK_SEC_DAI) {
		sec_dai = i2s_alloc_dai(pdev, true);
		if (!sec_dai) {
			dev_err(&pdev->dev, "Unable to alloc I2S_sec\n");
1326
			return -ENOMEM;
J
Jassi Brar 已提交
1327
		}
1328

1329
		sec_dai->lock = &pri_dai->spinlock;
1330
		sec_dai->variant_regs = pri_dai->variant_regs;
J
Jassi Brar 已提交
1331
		sec_dai->dma_playback.dma_addr = regs_base + I2STXDS;
1332 1333
		sec_dai->dma_playback.ch_name = "tx-sec";

1334
		if (!np) {
1335
			sec_dai->dma_playback.slave = i2s_pdata->dma_play_sec;
1336 1337
			sec_dai->filter = i2s_pdata->dma_filter;
		}
1338

J
Jassi Brar 已提交
1339
		sec_dai->dma_playback.dma_size = 4;
1340
		sec_dai->addr = pri_dai->addr;
1341
		sec_dai->clk = pri_dai->clk;
J
Jassi Brar 已提交
1342
		sec_dai->quirks = quirks;
1343
		sec_dai->idma_playback.dma_addr = idma_addr;
J
Jassi Brar 已提交
1344 1345 1346 1347
		sec_dai->pri_dai = pri_dai;
		pri_dai->sec_dai = sec_dai;
	}

1348 1349
	if (i2s_pdata && i2s_pdata->cfg_gpio && i2s_pdata->cfg_gpio(pdev)) {
		dev_err(&pdev->dev, "Unable to configure gpio\n");
1350
		return -EINVAL;
J
Jassi Brar 已提交
1351 1352
	}

1353 1354 1355
	devm_snd_soc_register_component(&pri_dai->pdev->dev,
					&samsung_i2s_component,
					&pri_dai->i2s_dai_drv, 1);
J
Jassi Brar 已提交
1356

1357 1358
	pm_runtime_enable(&pdev->dev);

1359
	ret = samsung_asoc_dma_platform_register(&pdev->dev, pri_dai->filter);
1360 1361
	if (ret != 0)
		return ret;
1362

1363
	return i2s_register_clock_provider(pdev);
J
Jassi Brar 已提交
1364 1365
}

1366
static int samsung_i2s_remove(struct platform_device *pdev)
J
Jassi Brar 已提交
1367 1368 1369 1370
{
	struct i2s_dai *i2s, *other;

	i2s = dev_get_drvdata(&pdev->dev);
1371
	other = get_other_dai(i2s);
J
Jassi Brar 已提交
1372 1373 1374 1375 1376

	if (other) {
		other->pri_dai = NULL;
		other->sec_dai = NULL;
	} else {
1377
		pm_runtime_disable(&pdev->dev);
J
Jassi Brar 已提交
1378 1379
	}

1380 1381
	if (!is_secondary(i2s)) {
		i2s_unregister_clock_provider(pdev);
1382
		clk_disable_unprepare(i2s->clk);
1383
	}
1384

J
Jassi Brar 已提交
1385 1386 1387 1388 1389 1390
	i2s->pri_dai = NULL;
	i2s->sec_dai = NULL;

	return 0;
}

1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
static const struct samsung_i2s_variant_regs i2sv3_regs = {
	.bfs_off = 1,
	.rfs_off = 3,
	.sdf_off = 5,
	.txr_off = 8,
	.rclksrc_off = 10,
	.mss_off = 11,
	.cdclkcon_off = 12,
	.lrp_off = 7,
	.bfs_mask = 0x3,
	.rfs_mask = 0x3,
	.ftx0cnt_off = 8,
};

static const struct samsung_i2s_variant_regs i2sv6_regs = {
	.bfs_off = 0,
	.rfs_off = 4,
	.sdf_off = 6,
	.txr_off = 8,
	.rclksrc_off = 10,
	.mss_off = 11,
	.cdclkcon_off = 12,
	.lrp_off = 15,
	.bfs_mask = 0xf,
	.rfs_mask = 0x3,
	.ftx0cnt_off = 8,
};

static const struct samsung_i2s_variant_regs i2sv7_regs = {
	.bfs_off = 0,
	.rfs_off = 4,
	.sdf_off = 7,
	.txr_off = 9,
	.rclksrc_off = 11,
	.mss_off = 12,
	.cdclkcon_off = 22,
	.lrp_off = 15,
	.bfs_mask = 0xf,
	.rfs_mask = 0x7,
	.ftx0cnt_off = 0,
};

static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs = {
	.bfs_off = 0,
	.rfs_off = 3,
	.sdf_off = 6,
	.txr_off = 8,
	.rclksrc_off = 10,
	.mss_off = 11,
	.cdclkcon_off = 12,
	.lrp_off = 15,
	.bfs_mask = 0x7,
	.rfs_mask = 0x7,
	.ftx0cnt_off = 8,
};

1447 1448 1449
static const struct samsung_i2s_dai_data i2sv3_dai_type = {
	.dai_type = TYPE_PRI,
	.quirks = QUIRK_NO_MUXPSR,
1450
	.i2s_variant_regs = &i2sv3_regs,
1451 1452 1453 1454
};

static const struct samsung_i2s_dai_data i2sv5_dai_type = {
	.dai_type = TYPE_PRI,
1455 1456
	.quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
			QUIRK_SUPPORTS_IDMA,
1457
	.i2s_variant_regs = &i2sv3_regs,
1458 1459
};

1460 1461 1462
static const struct samsung_i2s_dai_data i2sv6_dai_type = {
	.dai_type = TYPE_PRI,
	.quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
1463
			QUIRK_SUPPORTS_TDM | QUIRK_SUPPORTS_IDMA,
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
	.i2s_variant_regs = &i2sv6_regs,
};

static const struct samsung_i2s_dai_data i2sv7_dai_type = {
	.dai_type = TYPE_PRI,
	.quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR |
			QUIRK_SUPPORTS_TDM,
	.i2s_variant_regs = &i2sv7_regs,
};

static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1 = {
	.dai_type = TYPE_PRI,
	.quirks = QUIRK_PRI_6CHAN | QUIRK_NEED_RSTCLR,
	.i2s_variant_regs = &i2sv5_i2s1_regs,
1478 1479
};

1480 1481 1482 1483
static const struct samsung_i2s_dai_data samsung_dai_type_sec = {
	.dai_type = TYPE_SEC,
};

1484
static const struct platform_device_id samsung_i2s_driver_ids[] = {
1485 1486
	{
		.name           = "samsung-i2s",
1487
		.driver_data	= (kernel_ulong_t)&i2sv3_dai_type,
1488 1489
	}, {
		.name           = "samsung-i2s-sec",
1490
		.driver_data    = (kernel_ulong_t)&samsung_dai_type_sec,
1491 1492 1493
	},
	{},
};
1494
MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids);
1495

1496 1497
#ifdef CONFIG_OF
static const struct of_device_id exynos_i2s_match[] = {
1498 1499 1500 1501 1502 1503
	{
		.compatible = "samsung,s3c6410-i2s",
		.data = &i2sv3_dai_type,
	}, {
		.compatible = "samsung,s5pv210-i2s",
		.data = &i2sv5_dai_type,
1504 1505 1506
	}, {
		.compatible = "samsung,exynos5420-i2s",
		.data = &i2sv6_dai_type,
1507 1508 1509 1510 1511 1512
	}, {
		.compatible = "samsung,exynos7-i2s",
		.data = &i2sv7_dai_type,
	}, {
		.compatible = "samsung,exynos7-i2s1",
		.data = &i2sv5_dai_type_i2s1,
1513 1514 1515 1516 1517 1518
	},
	{},
};
MODULE_DEVICE_TABLE(of, exynos_i2s_match);
#endif

1519 1520 1521 1522 1523
static const struct dev_pm_ops samsung_i2s_pm = {
	SET_RUNTIME_PM_OPS(i2s_runtime_suspend,
				i2s_runtime_resume, NULL)
};

J
Jassi Brar 已提交
1524 1525
static struct platform_driver samsung_i2s_driver = {
	.probe  = samsung_i2s_probe,
1526
	.remove = samsung_i2s_remove,
1527
	.id_table = samsung_i2s_driver_ids,
J
Jassi Brar 已提交
1528 1529
	.driver = {
		.name = "samsung-i2s",
1530
		.of_match_table = of_match_ptr(exynos_i2s_match),
1531
		.pm = &samsung_i2s_pm,
J
Jassi Brar 已提交
1532 1533 1534
	},
};

1535
module_platform_driver(samsung_i2s_driver);
J
Jassi Brar 已提交
1536 1537

/* Module information */
1538
MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
J
Jassi Brar 已提交
1539 1540 1541
MODULE_DESCRIPTION("Samsung I2S Interface");
MODULE_ALIAS("platform:samsung-i2s");
MODULE_LICENSE("GPL");