1/* sound/soc/samsung/i2s.c 2 * 3 * ALSA SoC Audio Layer - Samsung I2S Controller driver 4 * 5 * Copyright (c) 2010 Samsung Electronics Co. Ltd. 6 * Jaswinder Singh <jassisinghbrar@gmail.com> 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 */ 12 13#include <dt-bindings/sound/samsung-i2s.h> 14#include <linux/delay.h> 15#include <linux/slab.h> 16#include <linux/clk.h> 17#include <linux/clk-provider.h> 18#include <linux/io.h> 19#include <linux/module.h> 20#include <linux/of.h> 21#include <linux/of_gpio.h> 22#include <linux/pm_runtime.h> 23 24#include <sound/soc.h> 25#include <sound/pcm_params.h> 26 27#include <linux/platform_data/asoc-s3c.h> 28 29#include "dma.h" 30#include "idma.h" 31#include "i2s.h" 32#include "i2s-regs.h" 33 34#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t) 35 36enum samsung_dai_type { 37 TYPE_PRI, 38 TYPE_SEC, 39}; 40 41struct samsung_i2s_variant_regs { 42 unsigned int bfs_off; 43 unsigned int rfs_off; 44 unsigned int sdf_off; 45 unsigned int txr_off; 46 unsigned int rclksrc_off; 47 unsigned int mss_off; 48 unsigned int cdclkcon_off; 49 unsigned int lrp_off; 50 unsigned int bfs_mask; 51 unsigned int rfs_mask; 52 unsigned int ftx0cnt_off; 53}; 54 55struct samsung_i2s_dai_data { 56 int dai_type; 57 u32 quirks; 58 const struct samsung_i2s_variant_regs *i2s_variant_regs; 59}; 60 61struct i2s_dai { 62 /* Platform device for this DAI */ 63 struct platform_device *pdev; 64 /* Memory mapped SFR region */ 65 void __iomem *addr; 66 /* Rate of RCLK source clock */ 67 unsigned long rclk_srcrate; 68 /* Frame Clock */ 69 unsigned frmclk; 70 /* 71 * Specifically requested RCLK,BCLK by MACHINE Driver. 72 * 0 indicates CPU driver is free to choose any value. 73 */ 74 unsigned rfs, bfs; 75 /* I2S Controller's core clock */ 76 struct clk *clk; 77 /* Clock for generating I2S signals */ 78 struct clk *op_clk; 79 /* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */ 80 struct i2s_dai *pri_dai; 81 /* Pointer to the Secondary_Fifo if it has one, NULL otherwise */ 82 struct i2s_dai *sec_dai; 83#define DAI_OPENED (1 << 0) /* Dai is opened */ 84#define DAI_MANAGER (1 << 1) /* Dai is the manager */ 85 unsigned mode; 86 /* Driver for this DAI */ 87 struct snd_soc_dai_driver i2s_dai_drv; 88 /* DMA parameters */ 89 struct s3c_dma_params dma_playback; 90 struct s3c_dma_params dma_capture; 91 struct s3c_dma_params idma_playback; 92 u32 quirks; 93 u32 suspend_i2smod; 94 u32 suspend_i2scon; 95 u32 suspend_i2spsr; 96 const struct samsung_i2s_variant_regs *variant_regs; 97 98 /* Spinlock protecting access to the device's registers */ 99 spinlock_t spinlock; 100 spinlock_t *lock; 101 102 /* Below fields are only valid if this is the primary FIFO */ 103 struct clk *clk_table[3]; 104 struct clk_onecell_data clk_data; 105}; 106 107/* Lock for cross i/f checks */ 108static DEFINE_SPINLOCK(lock); 109 110/* If this is the 'overlay' stereo DAI */ 111static inline bool is_secondary(struct i2s_dai *i2s) 112{ 113 return i2s->pri_dai ? true : false; 114} 115 116/* If operating in SoC-Slave mode */ 117static inline bool is_slave(struct i2s_dai *i2s) 118{ 119 u32 mod = readl(i2s->addr + I2SMOD); 120 return (mod & (1 << i2s->variant_regs->mss_off)) ? true : false; 121} 122 123/* If this interface of the controller is transmitting data */ 124static inline bool tx_active(struct i2s_dai *i2s) 125{ 126 u32 active; 127 128 if (!i2s) 129 return false; 130 131 active = readl(i2s->addr + I2SCON); 132 133 if (is_secondary(i2s)) 134 active &= CON_TXSDMA_ACTIVE; 135 else 136 active &= CON_TXDMA_ACTIVE; 137 138 return active ? true : false; 139} 140 141/* Return pointer to the other DAI */ 142static inline struct i2s_dai *get_other_dai(struct i2s_dai *i2s) 143{ 144 return i2s->pri_dai ? : i2s->sec_dai; 145} 146 147/* If the other interface of the controller is transmitting data */ 148static inline bool other_tx_active(struct i2s_dai *i2s) 149{ 150 struct i2s_dai *other = get_other_dai(i2s); 151 152 return tx_active(other); 153} 154 155/* If any interface of the controller is transmitting data */ 156static inline bool any_tx_active(struct i2s_dai *i2s) 157{ 158 return tx_active(i2s) || other_tx_active(i2s); 159} 160 161/* If this interface of the controller is receiving data */ 162static inline bool rx_active(struct i2s_dai *i2s) 163{ 164 u32 active; 165 166 if (!i2s) 167 return false; 168 169 active = readl(i2s->addr + I2SCON) & CON_RXDMA_ACTIVE; 170 171 return active ? true : false; 172} 173 174/* If the other interface of the controller is receiving data */ 175static inline bool other_rx_active(struct i2s_dai *i2s) 176{ 177 struct i2s_dai *other = get_other_dai(i2s); 178 179 return rx_active(other); 180} 181 182/* If any interface of the controller is receiving data */ 183static inline bool any_rx_active(struct i2s_dai *i2s) 184{ 185 return rx_active(i2s) || other_rx_active(i2s); 186} 187 188/* If the other DAI is transmitting or receiving data */ 189static inline bool other_active(struct i2s_dai *i2s) 190{ 191 return other_rx_active(i2s) || other_tx_active(i2s); 192} 193 194/* If this DAI is transmitting or receiving data */ 195static inline bool this_active(struct i2s_dai *i2s) 196{ 197 return tx_active(i2s) || rx_active(i2s); 198} 199 200/* If the controller is active anyway */ 201static inline bool any_active(struct i2s_dai *i2s) 202{ 203 return this_active(i2s) || other_active(i2s); 204} 205 206static inline struct i2s_dai *to_info(struct snd_soc_dai *dai) 207{ 208 return snd_soc_dai_get_drvdata(dai); 209} 210 211static inline bool is_opened(struct i2s_dai *i2s) 212{ 213 if (i2s && (i2s->mode & DAI_OPENED)) 214 return true; 215 else 216 return false; 217} 218 219static inline bool is_manager(struct i2s_dai *i2s) 220{ 221 if (is_opened(i2s) && (i2s->mode & DAI_MANAGER)) 222 return true; 223 else 224 return false; 225} 226 227/* Read RCLK of I2S (in multiples of LRCLK) */ 228static inline unsigned get_rfs(struct i2s_dai *i2s) 229{ 230 u32 rfs; 231 rfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->rfs_off; 232 rfs &= i2s->variant_regs->rfs_mask; 233 234 switch (rfs) { 235 case 7: return 192; 236 case 6: return 96; 237 case 5: return 128; 238 case 4: return 64; 239 case 3: return 768; 240 case 2: return 384; 241 case 1: return 512; 242 default: return 256; 243 } 244} 245 246/* Write RCLK of I2S (in multiples of LRCLK) */ 247static inline void set_rfs(struct i2s_dai *i2s, unsigned rfs) 248{ 249 u32 mod = readl(i2s->addr + I2SMOD); 250 int rfs_shift = i2s->variant_regs->rfs_off; 251 252 mod &= ~(i2s->variant_regs->rfs_mask << rfs_shift); 253 254 switch (rfs) { 255 case 192: 256 mod |= (EXYNOS7_MOD_RCLK_192FS << rfs_shift); 257 break; 258 case 96: 259 mod |= (EXYNOS7_MOD_RCLK_96FS << rfs_shift); 260 break; 261 case 128: 262 mod |= (EXYNOS7_MOD_RCLK_128FS << rfs_shift); 263 break; 264 case 64: 265 mod |= (EXYNOS7_MOD_RCLK_64FS << rfs_shift); 266 break; 267 case 768: 268 mod |= (MOD_RCLK_768FS << rfs_shift); 269 break; 270 case 512: 271 mod |= (MOD_RCLK_512FS << rfs_shift); 272 break; 273 case 384: 274 mod |= (MOD_RCLK_384FS << rfs_shift); 275 break; 276 default: 277 mod |= (MOD_RCLK_256FS << rfs_shift); 278 break; 279 } 280 281 writel(mod, i2s->addr + I2SMOD); 282} 283 284/* Read Bit-Clock of I2S (in multiples of LRCLK) */ 285static inline unsigned get_bfs(struct i2s_dai *i2s) 286{ 287 u32 bfs; 288 bfs = readl(i2s->addr + I2SMOD) >> i2s->variant_regs->bfs_off; 289 bfs &= i2s->variant_regs->bfs_mask; 290 291 switch (bfs) { 292 case 8: return 256; 293 case 7: return 192; 294 case 6: return 128; 295 case 5: return 96; 296 case 4: return 64; 297 case 3: return 24; 298 case 2: return 16; 299 case 1: return 48; 300 default: return 32; 301 } 302} 303 304/* Write Bit-Clock of I2S (in multiples of LRCLK) */ 305static inline void set_bfs(struct i2s_dai *i2s, unsigned bfs) 306{ 307 u32 mod = readl(i2s->addr + I2SMOD); 308 int tdm = i2s->quirks & QUIRK_SUPPORTS_TDM; 309 int bfs_shift = i2s->variant_regs->bfs_off; 310 311 /* Non-TDM I2S controllers do not support BCLK > 48 * FS */ 312 if (!tdm && bfs > 48) { 313 dev_err(&i2s->pdev->dev, "Unsupported BCLK divider\n"); 314 return; 315 } 316 317 mod &= ~(i2s->variant_regs->bfs_mask << bfs_shift); 318 319 switch (bfs) { 320 case 48: 321 mod |= (MOD_BCLK_48FS << bfs_shift); 322 break; 323 case 32: 324 mod |= (MOD_BCLK_32FS << bfs_shift); 325 break; 326 case 24: 327 mod |= (MOD_BCLK_24FS << bfs_shift); 328 break; 329 case 16: 330 mod |= (MOD_BCLK_16FS << bfs_shift); 331 break; 332 case 64: 333 mod |= (EXYNOS5420_MOD_BCLK_64FS << bfs_shift); 334 break; 335 case 96: 336 mod |= (EXYNOS5420_MOD_BCLK_96FS << bfs_shift); 337 break; 338 case 128: 339 mod |= (EXYNOS5420_MOD_BCLK_128FS << bfs_shift); 340 break; 341 case 192: 342 mod |= (EXYNOS5420_MOD_BCLK_192FS << bfs_shift); 343 break; 344 case 256: 345 mod |= (EXYNOS5420_MOD_BCLK_256FS << bfs_shift); 346 break; 347 default: 348 dev_err(&i2s->pdev->dev, "Wrong BCLK Divider!\n"); 349 return; 350 } 351 352 writel(mod, i2s->addr + I2SMOD); 353} 354 355/* Sample-Size */ 356static inline int get_blc(struct i2s_dai *i2s) 357{ 358 int blc = readl(i2s->addr + I2SMOD); 359 360 blc = (blc >> 13) & 0x3; 361 362 switch (blc) { 363 case 2: return 24; 364 case 1: return 8; 365 default: return 16; 366 } 367} 368 369/* TX Channel Control */ 370static void i2s_txctrl(struct i2s_dai *i2s, int on) 371{ 372 void __iomem *addr = i2s->addr; 373 int txr_off = i2s->variant_regs->txr_off; 374 u32 con = readl(addr + I2SCON); 375 u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off); 376 377 if (on) { 378 con |= CON_ACTIVE; 379 con &= ~CON_TXCH_PAUSE; 380 381 if (is_secondary(i2s)) { 382 con |= CON_TXSDMA_ACTIVE; 383 con &= ~CON_TXSDMA_PAUSE; 384 } else { 385 con |= CON_TXDMA_ACTIVE; 386 con &= ~CON_TXDMA_PAUSE; 387 } 388 389 if (any_rx_active(i2s)) 390 mod |= 2 << txr_off; 391 else 392 mod |= 0 << txr_off; 393 } else { 394 if (is_secondary(i2s)) { 395 con |= CON_TXSDMA_PAUSE; 396 con &= ~CON_TXSDMA_ACTIVE; 397 } else { 398 con |= CON_TXDMA_PAUSE; 399 con &= ~CON_TXDMA_ACTIVE; 400 } 401 402 if (other_tx_active(i2s)) { 403 writel(con, addr + I2SCON); 404 return; 405 } 406 407 con |= CON_TXCH_PAUSE; 408 409 if (any_rx_active(i2s)) 410 mod |= 1 << txr_off; 411 else 412 con &= ~CON_ACTIVE; 413 } 414 415 writel(mod, addr + I2SMOD); 416 writel(con, addr + I2SCON); 417} 418 419/* RX Channel Control */ 420static void i2s_rxctrl(struct i2s_dai *i2s, int on) 421{ 422 void __iomem *addr = i2s->addr; 423 int txr_off = i2s->variant_regs->txr_off; 424 u32 con = readl(addr + I2SCON); 425 u32 mod = readl(addr + I2SMOD) & ~(3 << txr_off); 426 427 if (on) { 428 con |= CON_RXDMA_ACTIVE | CON_ACTIVE; 429 con &= ~(CON_RXDMA_PAUSE | CON_RXCH_PAUSE); 430 431 if (any_tx_active(i2s)) 432 mod |= 2 << txr_off; 433 else 434 mod |= 1 << txr_off; 435 } else { 436 con |= CON_RXDMA_PAUSE | CON_RXCH_PAUSE; 437 con &= ~CON_RXDMA_ACTIVE; 438 439 if (any_tx_active(i2s)) 440 mod |= 0 << txr_off; 441 else 442 con &= ~CON_ACTIVE; 443 } 444 445 writel(mod, addr + I2SMOD); 446 writel(con, addr + I2SCON); 447} 448 449/* Flush FIFO of an interface */ 450static inline void i2s_fifo(struct i2s_dai *i2s, u32 flush) 451{ 452 void __iomem *fic; 453 u32 val; 454 455 if (!i2s) 456 return; 457 458 if (is_secondary(i2s)) 459 fic = i2s->addr + I2SFICS; 460 else 461 fic = i2s->addr + I2SFIC; 462 463 /* Flush the FIFO */ 464 writel(readl(fic) | flush, fic); 465 466 /* Be patient */ 467 val = msecs_to_loops(1) / 1000; /* 1 usec */ 468 while (--val) 469 cpu_relax(); 470 471 writel(readl(fic) & ~flush, fic); 472} 473 474static int i2s_set_sysclk(struct snd_soc_dai *dai, 475 int clk_id, unsigned int rfs, int dir) 476{ 477 struct i2s_dai *i2s = to_info(dai); 478 struct i2s_dai *other = get_other_dai(i2s); 479 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs; 480 unsigned int cdcon_mask = 1 << i2s_regs->cdclkcon_off; 481 unsigned int rsrc_mask = 1 << i2s_regs->rclksrc_off; 482 u32 mod, mask, val = 0; 483 unsigned long flags; 484 485 spin_lock_irqsave(i2s->lock, flags); 486 mod = readl(i2s->addr + I2SMOD); 487 spin_unlock_irqrestore(i2s->lock, flags); 488 489 switch (clk_id) { 490 case SAMSUNG_I2S_OPCLK: 491 mask = MOD_OPCLK_MASK; 492 val = dir; 493 break; 494 case SAMSUNG_I2S_CDCLK: 495 mask = 1 << i2s_regs->cdclkcon_off; 496 /* Shouldn't matter in GATING(CLOCK_IN) mode */ 497 if (dir == SND_SOC_CLOCK_IN) 498 rfs = 0; 499 500 if ((rfs && other && other->rfs && (other->rfs != rfs)) || 501 (any_active(i2s) && 502 (((dir == SND_SOC_CLOCK_IN) 503 && !(mod & cdcon_mask)) || 504 ((dir == SND_SOC_CLOCK_OUT) 505 && (mod & cdcon_mask))))) { 506 dev_err(&i2s->pdev->dev, 507 "%s:%d Other DAI busy\n", __func__, __LINE__); 508 return -EAGAIN; 509 } 510 511 if (dir == SND_SOC_CLOCK_IN) 512 val = 1 << i2s_regs->cdclkcon_off; 513 514 i2s->rfs = rfs; 515 break; 516 517 case SAMSUNG_I2S_RCLKSRC_0: /* clock corrsponding to IISMOD[10] := 0 */ 518 case SAMSUNG_I2S_RCLKSRC_1: /* clock corrsponding to IISMOD[10] := 1 */ 519 mask = 1 << i2s_regs->rclksrc_off; 520 521 if ((i2s->quirks & QUIRK_NO_MUXPSR) 522 || (clk_id == SAMSUNG_I2S_RCLKSRC_0)) 523 clk_id = 0; 524 else 525 clk_id = 1; 526 527 if (!any_active(i2s)) { 528 if (i2s->op_clk && !IS_ERR(i2s->op_clk)) { 529 if ((clk_id && !(mod & rsrc_mask)) || 530 (!clk_id && (mod & rsrc_mask))) { 531 clk_disable_unprepare(i2s->op_clk); 532 clk_put(i2s->op_clk); 533 } else { 534 i2s->rclk_srcrate = 535 clk_get_rate(i2s->op_clk); 536 return 0; 537 } 538 } 539 540 if (clk_id) 541 i2s->op_clk = clk_get(&i2s->pdev->dev, 542 "i2s_opclk1"); 543 else 544 i2s->op_clk = clk_get(&i2s->pdev->dev, 545 "i2s_opclk0"); 546 547 if (WARN_ON(IS_ERR(i2s->op_clk))) 548 return PTR_ERR(i2s->op_clk); 549 550 clk_prepare_enable(i2s->op_clk); 551 i2s->rclk_srcrate = clk_get_rate(i2s->op_clk); 552 553 /* Over-ride the other's */ 554 if (other) { 555 other->op_clk = i2s->op_clk; 556 other->rclk_srcrate = i2s->rclk_srcrate; 557 } 558 } else if ((!clk_id && (mod & rsrc_mask)) 559 || (clk_id && !(mod & rsrc_mask))) { 560 dev_err(&i2s->pdev->dev, 561 "%s:%d Other DAI busy\n", __func__, __LINE__); 562 return -EAGAIN; 563 } else { 564 /* Call can't be on the active DAI */ 565 i2s->op_clk = other->op_clk; 566 i2s->rclk_srcrate = other->rclk_srcrate; 567 return 0; 568 } 569 570 if (clk_id == 1) 571 val = 1 << i2s_regs->rclksrc_off; 572 break; 573 default: 574 dev_err(&i2s->pdev->dev, "We don't serve that!\n"); 575 return -EINVAL; 576 } 577 578 spin_lock_irqsave(i2s->lock, flags); 579 mod = readl(i2s->addr + I2SMOD); 580 mod = (mod & ~mask) | val; 581 writel(mod, i2s->addr + I2SMOD); 582 spin_unlock_irqrestore(i2s->lock, flags); 583 584 return 0; 585} 586 587static int i2s_set_fmt(struct snd_soc_dai *dai, 588 unsigned int fmt) 589{ 590 struct i2s_dai *i2s = to_info(dai); 591 int lrp_shift, sdf_shift, sdf_mask, lrp_rlow, mod_slave; 592 u32 mod, tmp = 0; 593 unsigned long flags; 594 595 lrp_shift = i2s->variant_regs->lrp_off; 596 sdf_shift = i2s->variant_regs->sdf_off; 597 mod_slave = 1 << i2s->variant_regs->mss_off; 598 599 sdf_mask = MOD_SDF_MASK << sdf_shift; 600 lrp_rlow = MOD_LR_RLOW << lrp_shift; 601 602 /* Format is priority */ 603 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { 604 case SND_SOC_DAIFMT_RIGHT_J: 605 tmp |= lrp_rlow; 606 tmp |= (MOD_SDF_MSB << sdf_shift); 607 break; 608 case SND_SOC_DAIFMT_LEFT_J: 609 tmp |= lrp_rlow; 610 tmp |= (MOD_SDF_LSB << sdf_shift); 611 break; 612 case SND_SOC_DAIFMT_I2S: 613 tmp |= (MOD_SDF_IIS << sdf_shift); 614 break; 615 default: 616 dev_err(&i2s->pdev->dev, "Format not supported\n"); 617 return -EINVAL; 618 } 619 620 /* 621 * INV flag is relative to the FORMAT flag - if set it simply 622 * flips the polarity specified by the Standard 623 */ 624 switch (fmt & SND_SOC_DAIFMT_INV_MASK) { 625 case SND_SOC_DAIFMT_NB_NF: 626 break; 627 case SND_SOC_DAIFMT_NB_IF: 628 if (tmp & lrp_rlow) 629 tmp &= ~lrp_rlow; 630 else 631 tmp |= lrp_rlow; 632 break; 633 default: 634 dev_err(&i2s->pdev->dev, "Polarity not supported\n"); 635 return -EINVAL; 636 } 637 638 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { 639 case SND_SOC_DAIFMT_CBM_CFM: 640 tmp |= mod_slave; 641 break; 642 case SND_SOC_DAIFMT_CBS_CFS: 643 /* Set default source clock in Master mode */ 644 if (i2s->rclk_srcrate == 0) 645 i2s_set_sysclk(dai, SAMSUNG_I2S_RCLKSRC_0, 646 0, SND_SOC_CLOCK_IN); 647 break; 648 default: 649 dev_err(&i2s->pdev->dev, "master/slave format not supported\n"); 650 return -EINVAL; 651 } 652 653 spin_lock_irqsave(i2s->lock, flags); 654 mod = readl(i2s->addr + I2SMOD); 655 /* 656 * Don't change the I2S mode if any controller is active on this 657 * channel. 658 */ 659 if (any_active(i2s) && 660 ((mod & (sdf_mask | lrp_rlow | mod_slave)) != tmp)) { 661 spin_unlock_irqrestore(i2s->lock, flags); 662 dev_err(&i2s->pdev->dev, 663 "%s:%d Other DAI busy\n", __func__, __LINE__); 664 return -EAGAIN; 665 } 666 667 mod &= ~(sdf_mask | lrp_rlow | mod_slave); 668 mod |= tmp; 669 writel(mod, i2s->addr + I2SMOD); 670 spin_unlock_irqrestore(i2s->lock, flags); 671 672 return 0; 673} 674 675static int i2s_hw_params(struct snd_pcm_substream *substream, 676 struct snd_pcm_hw_params *params, struct snd_soc_dai *dai) 677{ 678 struct i2s_dai *i2s = to_info(dai); 679 u32 mod, mask = 0, val = 0; 680 unsigned long flags; 681 682 if (!is_secondary(i2s)) 683 mask |= (MOD_DC2_EN | MOD_DC1_EN); 684 685 switch (params_channels(params)) { 686 case 6: 687 val |= MOD_DC2_EN; 688 case 4: 689 val |= MOD_DC1_EN; 690 break; 691 case 2: 692 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 693 i2s->dma_playback.dma_size = 4; 694 else 695 i2s->dma_capture.dma_size = 4; 696 break; 697 case 1: 698 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 699 i2s->dma_playback.dma_size = 2; 700 else 701 i2s->dma_capture.dma_size = 2; 702 703 break; 704 default: 705 dev_err(&i2s->pdev->dev, "%d channels not supported\n", 706 params_channels(params)); 707 return -EINVAL; 708 } 709 710 if (is_secondary(i2s)) 711 mask |= MOD_BLCS_MASK; 712 else 713 mask |= MOD_BLCP_MASK; 714 715 if (is_manager(i2s)) 716 mask |= MOD_BLC_MASK; 717 718 switch (params_width(params)) { 719 case 8: 720 if (is_secondary(i2s)) 721 val |= MOD_BLCS_8BIT; 722 else 723 val |= MOD_BLCP_8BIT; 724 if (is_manager(i2s)) 725 val |= MOD_BLC_8BIT; 726 break; 727 case 16: 728 if (is_secondary(i2s)) 729 val |= MOD_BLCS_16BIT; 730 else 731 val |= MOD_BLCP_16BIT; 732 if (is_manager(i2s)) 733 val |= MOD_BLC_16BIT; 734 break; 735 case 24: 736 if (is_secondary(i2s)) 737 val |= MOD_BLCS_24BIT; 738 else 739 val |= MOD_BLCP_24BIT; 740 if (is_manager(i2s)) 741 val |= MOD_BLC_24BIT; 742 break; 743 default: 744 dev_err(&i2s->pdev->dev, "Format(%d) not supported\n", 745 params_format(params)); 746 return -EINVAL; 747 } 748 749 spin_lock_irqsave(i2s->lock, flags); 750 mod = readl(i2s->addr + I2SMOD); 751 mod = (mod & ~mask) | val; 752 writel(mod, i2s->addr + I2SMOD); 753 spin_unlock_irqrestore(i2s->lock, flags); 754 755 samsung_asoc_init_dma_data(dai, &i2s->dma_playback, &i2s->dma_capture); 756 757 i2s->frmclk = params_rate(params); 758 759 return 0; 760} 761 762/* We set constraints on the substream acc to the version of I2S */ 763static int i2s_startup(struct snd_pcm_substream *substream, 764 struct snd_soc_dai *dai) 765{ 766 struct i2s_dai *i2s = to_info(dai); 767 struct i2s_dai *other = get_other_dai(i2s); 768 unsigned long flags; 769 770 spin_lock_irqsave(&lock, flags); 771 772 i2s->mode |= DAI_OPENED; 773 774 if (is_manager(other)) 775 i2s->mode &= ~DAI_MANAGER; 776 else 777 i2s->mode |= DAI_MANAGER; 778 779 if (!any_active(i2s) && (i2s->quirks & QUIRK_NEED_RSTCLR)) 780 writel(CON_RSTCLR, i2s->addr + I2SCON); 781 782 spin_unlock_irqrestore(&lock, flags); 783 784 return 0; 785} 786 787static void i2s_shutdown(struct snd_pcm_substream *substream, 788 struct snd_soc_dai *dai) 789{ 790 struct i2s_dai *i2s = to_info(dai); 791 struct i2s_dai *other = get_other_dai(i2s); 792 unsigned long flags; 793 794 spin_lock_irqsave(&lock, flags); 795 796 i2s->mode &= ~DAI_OPENED; 797 i2s->mode &= ~DAI_MANAGER; 798 799 if (is_opened(other)) 800 other->mode |= DAI_MANAGER; 801 802 /* Reset any constraint on RFS and BFS */ 803 i2s->rfs = 0; 804 i2s->bfs = 0; 805 806 spin_unlock_irqrestore(&lock, flags); 807} 808 809static int config_setup(struct i2s_dai *i2s) 810{ 811 struct i2s_dai *other = get_other_dai(i2s); 812 unsigned rfs, bfs, blc; 813 u32 psr; 814 815 blc = get_blc(i2s); 816 817 bfs = i2s->bfs; 818 819 if (!bfs && other) 820 bfs = other->bfs; 821 822 /* Select least possible multiple(2) if no constraint set */ 823 if (!bfs) 824 bfs = blc * 2; 825 826 rfs = i2s->rfs; 827 828 if (!rfs && other) 829 rfs = other->rfs; 830 831 if ((rfs == 256 || rfs == 512) && (blc == 24)) { 832 dev_err(&i2s->pdev->dev, 833 "%d-RFS not supported for 24-blc\n", rfs); 834 return -EINVAL; 835 } 836 837 if (!rfs) { 838 if (bfs == 16 || bfs == 32) 839 rfs = 256; 840 else 841 rfs = 384; 842 } 843 844 /* If already setup and running */ 845 if (any_active(i2s) && (get_rfs(i2s) != rfs || get_bfs(i2s) != bfs)) { 846 dev_err(&i2s->pdev->dev, 847 "%s:%d Other DAI busy\n", __func__, __LINE__); 848 return -EAGAIN; 849 } 850 851 set_bfs(i2s, bfs); 852 set_rfs(i2s, rfs); 853 854 /* Don't bother with PSR in Slave mode */ 855 if (is_slave(i2s)) 856 return 0; 857 858 if (!(i2s->quirks & QUIRK_NO_MUXPSR)) { 859 psr = i2s->rclk_srcrate / i2s->frmclk / rfs; 860 writel(((psr - 1) << 8) | PSR_PSREN, i2s->addr + I2SPSR); 861 dev_dbg(&i2s->pdev->dev, 862 "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n", 863 i2s->rclk_srcrate, psr, rfs, bfs); 864 } 865 866 return 0; 867} 868 869static int i2s_trigger(struct snd_pcm_substream *substream, 870 int cmd, struct snd_soc_dai *dai) 871{ 872 int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE); 873 struct snd_soc_pcm_runtime *rtd = substream->private_data; 874 struct i2s_dai *i2s = to_info(rtd->cpu_dai); 875 unsigned long flags; 876 877 switch (cmd) { 878 case SNDRV_PCM_TRIGGER_START: 879 case SNDRV_PCM_TRIGGER_RESUME: 880 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 881 spin_lock_irqsave(i2s->lock, flags); 882 883 if (config_setup(i2s)) { 884 spin_unlock_irqrestore(i2s->lock, flags); 885 return -EINVAL; 886 } 887 888 if (capture) 889 i2s_rxctrl(i2s, 1); 890 else 891 i2s_txctrl(i2s, 1); 892 893 spin_unlock_irqrestore(i2s->lock, flags); 894 break; 895 case SNDRV_PCM_TRIGGER_STOP: 896 case SNDRV_PCM_TRIGGER_SUSPEND: 897 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 898 spin_lock_irqsave(i2s->lock, flags); 899 900 if (capture) { 901 i2s_rxctrl(i2s, 0); 902 i2s_fifo(i2s, FIC_RXFLUSH); 903 } else { 904 i2s_txctrl(i2s, 0); 905 i2s_fifo(i2s, FIC_TXFLUSH); 906 } 907 908 spin_unlock_irqrestore(i2s->lock, flags); 909 break; 910 } 911 912 return 0; 913} 914 915static int i2s_set_clkdiv(struct snd_soc_dai *dai, 916 int div_id, int div) 917{ 918 struct i2s_dai *i2s = to_info(dai); 919 struct i2s_dai *other = get_other_dai(i2s); 920 921 switch (div_id) { 922 case SAMSUNG_I2S_DIV_BCLK: 923 if ((any_active(i2s) && div && (get_bfs(i2s) != div)) 924 || (other && other->bfs && (other->bfs != div))) { 925 dev_err(&i2s->pdev->dev, 926 "%s:%d Other DAI busy\n", __func__, __LINE__); 927 return -EAGAIN; 928 } 929 i2s->bfs = div; 930 break; 931 default: 932 dev_err(&i2s->pdev->dev, 933 "Invalid clock divider(%d)\n", div_id); 934 return -EINVAL; 935 } 936 937 return 0; 938} 939 940static snd_pcm_sframes_t 941i2s_delay(struct snd_pcm_substream *substream, struct snd_soc_dai *dai) 942{ 943 struct i2s_dai *i2s = to_info(dai); 944 u32 reg = readl(i2s->addr + I2SFIC); 945 snd_pcm_sframes_t delay; 946 const struct samsung_i2s_variant_regs *i2s_regs = i2s->variant_regs; 947 948 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) 949 delay = FIC_RXCOUNT(reg); 950 else if (is_secondary(i2s)) 951 delay = FICS_TXCOUNT(readl(i2s->addr + I2SFICS)); 952 else 953 delay = (reg >> i2s_regs->ftx0cnt_off) & 0x7f; 954 955 return delay; 956} 957 958#ifdef CONFIG_PM 959static int i2s_suspend(struct snd_soc_dai *dai) 960{ 961 struct i2s_dai *i2s = to_info(dai); 962 963 i2s->suspend_i2smod = readl(i2s->addr + I2SMOD); 964 i2s->suspend_i2scon = readl(i2s->addr + I2SCON); 965 i2s->suspend_i2spsr = readl(i2s->addr + I2SPSR); 966 967 return 0; 968} 969 970static int i2s_resume(struct snd_soc_dai *dai) 971{ 972 struct i2s_dai *i2s = to_info(dai); 973 974 writel(i2s->suspend_i2scon, i2s->addr + I2SCON); 975 writel(i2s->suspend_i2smod, i2s->addr + I2SMOD); 976 writel(i2s->suspend_i2spsr, i2s->addr + I2SPSR); 977 978 return 0; 979} 980#else 981#define i2s_suspend NULL 982#define i2s_resume NULL 983#endif 984 985static int samsung_i2s_dai_probe(struct snd_soc_dai *dai) 986{ 987 struct i2s_dai *i2s = to_info(dai); 988 struct i2s_dai *other = get_other_dai(i2s); 989 unsigned long flags; 990 991 if (is_secondary(i2s)) { /* If this is probe on the secondary DAI */ 992 samsung_asoc_init_dma_data(dai, &other->sec_dai->dma_playback, 993 NULL); 994 } else { 995 samsung_asoc_init_dma_data(dai, &i2s->dma_playback, 996 &i2s->dma_capture); 997 998 if (i2s->quirks & QUIRK_NEED_RSTCLR) 999 writel(CON_RSTCLR, i2s->addr + I2SCON); 1000 1001 if (i2s->quirks & QUIRK_SUPPORTS_IDMA) 1002 idma_reg_addr_init(i2s->addr, 1003 i2s->sec_dai->idma_playback.dma_addr); 1004 } 1005 1006 /* Reset any constraint on RFS and BFS */ 1007 i2s->rfs = 0; 1008 i2s->bfs = 0; 1009 i2s->rclk_srcrate = 0; 1010 1011 spin_lock_irqsave(i2s->lock, flags); 1012 i2s_txctrl(i2s, 0); 1013 i2s_rxctrl(i2s, 0); 1014 i2s_fifo(i2s, FIC_TXFLUSH); 1015 i2s_fifo(other, FIC_TXFLUSH); 1016 i2s_fifo(i2s, FIC_RXFLUSH); 1017 spin_unlock_irqrestore(i2s->lock, flags); 1018 1019 /* Gate CDCLK by default */ 1020 if (!is_opened(other)) 1021 i2s_set_sysclk(dai, SAMSUNG_I2S_CDCLK, 1022 0, SND_SOC_CLOCK_IN); 1023 1024 return 0; 1025} 1026 1027static int samsung_i2s_dai_remove(struct snd_soc_dai *dai) 1028{ 1029 struct i2s_dai *i2s = snd_soc_dai_get_drvdata(dai); 1030 1031 if (!is_secondary(i2s)) { 1032 if (i2s->quirks & QUIRK_NEED_RSTCLR) { 1033 spin_lock(i2s->lock); 1034 writel(0, i2s->addr + I2SCON); 1035 spin_unlock(i2s->lock); 1036 } 1037 } 1038 1039 return 0; 1040} 1041 1042static const struct snd_soc_dai_ops samsung_i2s_dai_ops = { 1043 .trigger = i2s_trigger, 1044 .hw_params = i2s_hw_params, 1045 .set_fmt = i2s_set_fmt, 1046 .set_clkdiv = i2s_set_clkdiv, 1047 .set_sysclk = i2s_set_sysclk, 1048 .startup = i2s_startup, 1049 .shutdown = i2s_shutdown, 1050 .delay = i2s_delay, 1051}; 1052 1053static const struct snd_soc_component_driver samsung_i2s_component = { 1054 .name = "samsung-i2s", 1055}; 1056 1057#define SAMSUNG_I2S_RATES SNDRV_PCM_RATE_8000_96000 1058 1059#define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | \ 1060 SNDRV_PCM_FMTBIT_S16_LE | \ 1061 SNDRV_PCM_FMTBIT_S24_LE) 1062 1063static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec) 1064{ 1065 struct i2s_dai *i2s; 1066 int ret; 1067 1068 i2s = devm_kzalloc(&pdev->dev, sizeof(struct i2s_dai), GFP_KERNEL); 1069 if (i2s == NULL) 1070 return NULL; 1071 1072 i2s->pdev = pdev; 1073 i2s->pri_dai = NULL; 1074 i2s->sec_dai = NULL; 1075 i2s->i2s_dai_drv.symmetric_rates = 1; 1076 i2s->i2s_dai_drv.probe = samsung_i2s_dai_probe; 1077 i2s->i2s_dai_drv.remove = samsung_i2s_dai_remove; 1078 i2s->i2s_dai_drv.ops = &samsung_i2s_dai_ops; 1079 i2s->i2s_dai_drv.suspend = i2s_suspend; 1080 i2s->i2s_dai_drv.resume = i2s_resume; 1081 i2s->i2s_dai_drv.playback.channels_min = 1; 1082 i2s->i2s_dai_drv.playback.channels_max = 2; 1083 i2s->i2s_dai_drv.playback.rates = SAMSUNG_I2S_RATES; 1084 i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS; 1085 1086 if (!sec) { 1087 i2s->i2s_dai_drv.capture.channels_min = 1; 1088 i2s->i2s_dai_drv.capture.channels_max = 2; 1089 i2s->i2s_dai_drv.capture.rates = SAMSUNG_I2S_RATES; 1090 i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS; 1091 dev_set_drvdata(&i2s->pdev->dev, i2s); 1092 } else { /* Create a new platform_device for Secondary */ 1093 i2s->pdev = platform_device_alloc("samsung-i2s-sec", -1); 1094 if (!i2s->pdev) 1095 return NULL; 1096 1097 i2s->pdev->dev.parent = &pdev->dev; 1098 1099 platform_set_drvdata(i2s->pdev, i2s); 1100 ret = platform_device_add(i2s->pdev); 1101 if (ret < 0) 1102 return NULL; 1103 } 1104 1105 return i2s; 1106} 1107 1108static const struct of_device_id exynos_i2s_match[]; 1109 1110static inline const struct samsung_i2s_dai_data *samsung_i2s_get_driver_data( 1111 struct platform_device *pdev) 1112{ 1113 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) { 1114 const struct of_device_id *match; 1115 match = of_match_node(exynos_i2s_match, pdev->dev.of_node); 1116 return match ? match->data : NULL; 1117 } else { 1118 return (struct samsung_i2s_dai_data *) 1119 platform_get_device_id(pdev)->driver_data; 1120 } 1121} 1122 1123#ifdef CONFIG_PM 1124static int i2s_runtime_suspend(struct device *dev) 1125{ 1126 struct i2s_dai *i2s = dev_get_drvdata(dev); 1127 1128 clk_disable_unprepare(i2s->clk); 1129 1130 return 0; 1131} 1132 1133static int i2s_runtime_resume(struct device *dev) 1134{ 1135 struct i2s_dai *i2s = dev_get_drvdata(dev); 1136 1137 clk_prepare_enable(i2s->clk); 1138 1139 return 0; 1140} 1141#endif /* CONFIG_PM */ 1142 1143static void i2s_unregister_clocks(struct i2s_dai *i2s) 1144{ 1145 int i; 1146 1147 for (i = 0; i < i2s->clk_data.clk_num; i++) { 1148 if (!IS_ERR(i2s->clk_table[i])) 1149 clk_unregister(i2s->clk_table[i]); 1150 } 1151} 1152 1153static void i2s_unregister_clock_provider(struct platform_device *pdev) 1154{ 1155 struct i2s_dai *i2s = dev_get_drvdata(&pdev->dev); 1156 1157 of_clk_del_provider(pdev->dev.of_node); 1158 i2s_unregister_clocks(i2s); 1159} 1160 1161static int i2s_register_clock_provider(struct platform_device *pdev) 1162{ 1163 struct device *dev = &pdev->dev; 1164 struct i2s_dai *i2s = dev_get_drvdata(dev); 1165 const char *clk_name[2] = { "i2s_opclk0", "i2s_opclk1" }; 1166 const char *p_names[2] = { NULL }; 1167 const struct samsung_i2s_variant_regs *reg_info = i2s->variant_regs; 1168 struct clk *rclksrc; 1169 int ret, i; 1170 1171 /* Register the clock provider only if it's expected in the DTB */ 1172 if (!of_find_property(dev->of_node, "#clock-cells", NULL)) 1173 return 0; 1174 1175 /* Get the RCLKSRC mux clock parent clock names */ 1176 for (i = 0; i < ARRAY_SIZE(p_names); i++) { 1177 rclksrc = clk_get(dev, clk_name[i]); 1178 if (IS_ERR(rclksrc)) 1179 continue; 1180 p_names[i] = __clk_get_name(rclksrc); 1181 clk_put(rclksrc); 1182 } 1183 1184 if (!(i2s->quirks & QUIRK_NO_MUXPSR)) { 1185 /* Activate the prescaler */ 1186 u32 val = readl(i2s->addr + I2SPSR); 1187 writel(val | PSR_PSREN, i2s->addr + I2SPSR); 1188 1189 i2s->clk_table[CLK_I2S_RCLK_SRC] = clk_register_mux(NULL, 1190 "i2s_rclksrc", p_names, ARRAY_SIZE(p_names), 1191 CLK_SET_RATE_NO_REPARENT | CLK_SET_RATE_PARENT, 1192 i2s->addr + I2SMOD, reg_info->rclksrc_off, 1193 1, 0, i2s->lock); 1194 1195 i2s->clk_table[CLK_I2S_RCLK_PSR] = clk_register_divider(NULL, 1196 "i2s_presc", "i2s_rclksrc", 1197 CLK_SET_RATE_PARENT, 1198 i2s->addr + I2SPSR, 8, 6, 0, i2s->lock); 1199 1200 p_names[0] = "i2s_presc"; 1201 i2s->clk_data.clk_num = 2; 1202 } 1203 of_property_read_string_index(dev->of_node, 1204 "clock-output-names", 0, &clk_name[0]); 1205 1206 i2s->clk_table[CLK_I2S_CDCLK] = clk_register_gate(NULL, clk_name[0], 1207 p_names[0], CLK_SET_RATE_PARENT, 1208 i2s->addr + I2SMOD, reg_info->cdclkcon_off, 1209 CLK_GATE_SET_TO_DISABLE, i2s->lock); 1210 1211 i2s->clk_data.clk_num += 1; 1212 i2s->clk_data.clks = i2s->clk_table; 1213 1214 ret = of_clk_add_provider(dev->of_node, of_clk_src_onecell_get, 1215 &i2s->clk_data); 1216 if (ret < 0) { 1217 dev_err(dev, "failed to add clock provider: %d\n", ret); 1218 i2s_unregister_clocks(i2s); 1219 } 1220 1221 return ret; 1222} 1223 1224static int samsung_i2s_probe(struct platform_device *pdev) 1225{ 1226 struct i2s_dai *pri_dai, *sec_dai = NULL; 1227 struct s3c_audio_pdata *i2s_pdata = pdev->dev.platform_data; 1228 struct samsung_i2s *i2s_cfg = NULL; 1229 struct resource *res; 1230 u32 regs_base, quirks = 0, idma_addr = 0; 1231 struct device_node *np = pdev->dev.of_node; 1232 const struct samsung_i2s_dai_data *i2s_dai_data; 1233 int ret; 1234 1235 /* Call during Seconday interface registration */ 1236 i2s_dai_data = samsung_i2s_get_driver_data(pdev); 1237 1238 if (i2s_dai_data->dai_type == TYPE_SEC) { 1239 sec_dai = dev_get_drvdata(&pdev->dev); 1240 if (!sec_dai) { 1241 dev_err(&pdev->dev, "Unable to get drvdata\n"); 1242 return -EFAULT; 1243 } 1244 ret = devm_snd_soc_register_component(&sec_dai->pdev->dev, 1245 &samsung_i2s_component, 1246 &sec_dai->i2s_dai_drv, 1); 1247 if (ret != 0) 1248 return ret; 1249 1250 return samsung_asoc_dma_platform_register(&pdev->dev); 1251 } 1252 1253 pri_dai = i2s_alloc_dai(pdev, false); 1254 if (!pri_dai) { 1255 dev_err(&pdev->dev, "Unable to alloc I2S_pri\n"); 1256 return -ENOMEM; 1257 } 1258 1259 spin_lock_init(&pri_dai->spinlock); 1260 pri_dai->lock = &pri_dai->spinlock; 1261 1262 if (!np) { 1263 res = platform_get_resource(pdev, IORESOURCE_DMA, 0); 1264 if (!res) { 1265 dev_err(&pdev->dev, 1266 "Unable to get I2S-TX dma resource\n"); 1267 return -ENXIO; 1268 } 1269 pri_dai->dma_playback.channel = res->start; 1270 1271 res = platform_get_resource(pdev, IORESOURCE_DMA, 1); 1272 if (!res) { 1273 dev_err(&pdev->dev, 1274 "Unable to get I2S-RX dma resource\n"); 1275 return -ENXIO; 1276 } 1277 pri_dai->dma_capture.channel = res->start; 1278 1279 if (i2s_pdata == NULL) { 1280 dev_err(&pdev->dev, "Can't work without s3c_audio_pdata\n"); 1281 return -EINVAL; 1282 } 1283 1284 if (&i2s_pdata->type) 1285 i2s_cfg = &i2s_pdata->type.i2s; 1286 1287 if (i2s_cfg) { 1288 quirks = i2s_cfg->quirks; 1289 idma_addr = i2s_cfg->idma_addr; 1290 } 1291 } else { 1292 quirks = i2s_dai_data->quirks; 1293 if (of_property_read_u32(np, "samsung,idma-addr", 1294 &idma_addr)) { 1295 if (quirks & QUIRK_SUPPORTS_IDMA) { 1296 dev_info(&pdev->dev, "idma address is not"\ 1297 "specified"); 1298 } 1299 } 1300 } 1301 1302 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 1303 pri_dai->addr = devm_ioremap_resource(&pdev->dev, res); 1304 if (IS_ERR(pri_dai->addr)) 1305 return PTR_ERR(pri_dai->addr); 1306 1307 regs_base = res->start; 1308 1309 pri_dai->clk = devm_clk_get(&pdev->dev, "iis"); 1310 if (IS_ERR(pri_dai->clk)) { 1311 dev_err(&pdev->dev, "Failed to get iis clock\n"); 1312 return PTR_ERR(pri_dai->clk); 1313 } 1314 1315 ret = clk_prepare_enable(pri_dai->clk); 1316 if (ret != 0) { 1317 dev_err(&pdev->dev, "failed to enable clock: %d\n", ret); 1318 return ret; 1319 } 1320 pri_dai->dma_playback.dma_addr = regs_base + I2STXD; 1321 pri_dai->dma_capture.dma_addr = regs_base + I2SRXD; 1322 pri_dai->dma_playback.ch_name = "tx"; 1323 pri_dai->dma_capture.ch_name = "rx"; 1324 pri_dai->dma_playback.dma_size = 4; 1325 pri_dai->dma_capture.dma_size = 4; 1326 pri_dai->quirks = quirks; 1327 pri_dai->variant_regs = i2s_dai_data->i2s_variant_regs; 1328 1329 if (quirks & QUIRK_PRI_6CHAN) 1330 pri_dai->i2s_dai_drv.playback.channels_max = 6; 1331 1332 if (quirks & QUIRK_SEC_DAI) { 1333 sec_dai = i2s_alloc_dai(pdev, true); 1334 if (!sec_dai) { 1335 dev_err(&pdev->dev, "Unable to alloc I2S_sec\n"); 1336 return -ENOMEM; 1337 } 1338 1339 sec_dai->lock = &pri_dai->spinlock; 1340 sec_dai->variant_regs = pri_dai->variant_regs; 1341 sec_dai->dma_playback.dma_addr = regs_base + I2STXDS; 1342 sec_dai->dma_playback.ch_name = "tx-sec"; 1343 1344 if (!np) { 1345 res = platform_get_resource(pdev, IORESOURCE_DMA, 2); 1346 if (res) 1347 sec_dai->dma_playback.channel = res->start; 1348 } 1349 1350 sec_dai->dma_playback.dma_size = 4; 1351 sec_dai->addr = pri_dai->addr; 1352 sec_dai->clk = pri_dai->clk; 1353 sec_dai->quirks = quirks; 1354 sec_dai->idma_playback.dma_addr = idma_addr; 1355 sec_dai->pri_dai = pri_dai; 1356 pri_dai->sec_dai = sec_dai; 1357 } 1358 1359 if (i2s_pdata && i2s_pdata->cfg_gpio && i2s_pdata->cfg_gpio(pdev)) { 1360 dev_err(&pdev->dev, "Unable to configure gpio\n"); 1361 return -EINVAL; 1362 } 1363 1364 devm_snd_soc_register_component(&pri_dai->pdev->dev, 1365 &samsung_i2s_component, 1366 &pri_dai->i2s_dai_drv, 1); 1367 1368 pm_runtime_enable(&pdev->dev); 1369 1370 ret = samsung_asoc_dma_platform_register(&pdev->dev); 1371 if (ret != 0) 1372 return ret; 1373 1374 return i2s_register_clock_provider(pdev); 1375} 1376 1377static int samsung_i2s_remove(struct platform_device *pdev) 1378{ 1379 struct i2s_dai *i2s, *other; 1380 1381 i2s = dev_get_drvdata(&pdev->dev); 1382 other = get_other_dai(i2s); 1383 1384 if (other) { 1385 other->pri_dai = NULL; 1386 other->sec_dai = NULL; 1387 } else { 1388 pm_runtime_disable(&pdev->dev); 1389 } 1390 1391 if (!is_secondary(i2s)) { 1392 i2s_unregister_clock_provider(pdev); 1393 clk_disable_unprepare(i2s->clk); 1394 } 1395 1396 i2s->pri_dai = NULL; 1397 i2s->sec_dai = NULL; 1398 1399 return 0; 1400} 1401 1402static const struct samsung_i2s_variant_regs i2sv3_regs = { 1403 .bfs_off = 1, 1404 .rfs_off = 3, 1405 .sdf_off = 5, 1406 .txr_off = 8, 1407 .rclksrc_off = 10, 1408 .mss_off = 11, 1409 .cdclkcon_off = 12, 1410 .lrp_off = 7, 1411 .bfs_mask = 0x3, 1412 .rfs_mask = 0x3, 1413 .ftx0cnt_off = 8, 1414}; 1415 1416static const struct samsung_i2s_variant_regs i2sv6_regs = { 1417 .bfs_off = 0, 1418 .rfs_off = 4, 1419 .sdf_off = 6, 1420 .txr_off = 8, 1421 .rclksrc_off = 10, 1422 .mss_off = 11, 1423 .cdclkcon_off = 12, 1424 .lrp_off = 15, 1425 .bfs_mask = 0xf, 1426 .rfs_mask = 0x3, 1427 .ftx0cnt_off = 8, 1428}; 1429 1430static const struct samsung_i2s_variant_regs i2sv7_regs = { 1431 .bfs_off = 0, 1432 .rfs_off = 4, 1433 .sdf_off = 7, 1434 .txr_off = 9, 1435 .rclksrc_off = 11, 1436 .mss_off = 12, 1437 .cdclkcon_off = 22, 1438 .lrp_off = 15, 1439 .bfs_mask = 0xf, 1440 .rfs_mask = 0x7, 1441 .ftx0cnt_off = 0, 1442}; 1443 1444static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs = { 1445 .bfs_off = 0, 1446 .rfs_off = 3, 1447 .sdf_off = 6, 1448 .txr_off = 8, 1449 .rclksrc_off = 10, 1450 .mss_off = 11, 1451 .cdclkcon_off = 12, 1452 .lrp_off = 15, 1453 .bfs_mask = 0x7, 1454 .rfs_mask = 0x7, 1455 .ftx0cnt_off = 8, 1456}; 1457 1458static const struct samsung_i2s_dai_data i2sv3_dai_type = { 1459 .dai_type = TYPE_PRI, 1460 .quirks = QUIRK_NO_MUXPSR, 1461 .i2s_variant_regs = &i2sv3_regs, 1462}; 1463 1464static const struct samsung_i2s_dai_data i2sv5_dai_type = { 1465 .dai_type = TYPE_PRI, 1466 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR | 1467 QUIRK_SUPPORTS_IDMA, 1468 .i2s_variant_regs = &i2sv3_regs, 1469}; 1470 1471static const struct samsung_i2s_dai_data i2sv6_dai_type = { 1472 .dai_type = TYPE_PRI, 1473 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR | 1474 QUIRK_SUPPORTS_TDM | QUIRK_SUPPORTS_IDMA, 1475 .i2s_variant_regs = &i2sv6_regs, 1476}; 1477 1478static const struct samsung_i2s_dai_data i2sv7_dai_type = { 1479 .dai_type = TYPE_PRI, 1480 .quirks = QUIRK_PRI_6CHAN | QUIRK_SEC_DAI | QUIRK_NEED_RSTCLR | 1481 QUIRK_SUPPORTS_TDM, 1482 .i2s_variant_regs = &i2sv7_regs, 1483}; 1484 1485static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1 = { 1486 .dai_type = TYPE_PRI, 1487 .quirks = QUIRK_PRI_6CHAN | QUIRK_NEED_RSTCLR, 1488 .i2s_variant_regs = &i2sv5_i2s1_regs, 1489}; 1490 1491static const struct samsung_i2s_dai_data samsung_dai_type_pri = { 1492 .dai_type = TYPE_PRI, 1493}; 1494 1495static const struct samsung_i2s_dai_data samsung_dai_type_sec = { 1496 .dai_type = TYPE_SEC, 1497}; 1498 1499static struct platform_device_id samsung_i2s_driver_ids[] = { 1500 { 1501 .name = "samsung-i2s", 1502 .driver_data = (kernel_ulong_t)&i2sv3_dai_type, 1503 }, { 1504 .name = "samsung-i2s-sec", 1505 .driver_data = (kernel_ulong_t)&samsung_dai_type_sec, 1506 }, { 1507 .name = "samsung-i2sv4", 1508 .driver_data = (kernel_ulong_t)&i2sv5_dai_type, 1509 }, 1510 {}, 1511}; 1512MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids); 1513 1514#ifdef CONFIG_OF 1515static const struct of_device_id exynos_i2s_match[] = { 1516 { 1517 .compatible = "samsung,s3c6410-i2s", 1518 .data = &i2sv3_dai_type, 1519 }, { 1520 .compatible = "samsung,s5pv210-i2s", 1521 .data = &i2sv5_dai_type, 1522 }, { 1523 .compatible = "samsung,exynos5420-i2s", 1524 .data = &i2sv6_dai_type, 1525 }, { 1526 .compatible = "samsung,exynos7-i2s", 1527 .data = &i2sv7_dai_type, 1528 }, { 1529 .compatible = "samsung,exynos7-i2s1", 1530 .data = &i2sv5_dai_type_i2s1, 1531 }, 1532 {}, 1533}; 1534MODULE_DEVICE_TABLE(of, exynos_i2s_match); 1535#endif 1536 1537static const struct dev_pm_ops samsung_i2s_pm = { 1538 SET_RUNTIME_PM_OPS(i2s_runtime_suspend, 1539 i2s_runtime_resume, NULL) 1540}; 1541 1542static struct platform_driver samsung_i2s_driver = { 1543 .probe = samsung_i2s_probe, 1544 .remove = samsung_i2s_remove, 1545 .id_table = samsung_i2s_driver_ids, 1546 .driver = { 1547 .name = "samsung-i2s", 1548 .of_match_table = of_match_ptr(exynos_i2s_match), 1549 .pm = &samsung_i2s_pm, 1550 }, 1551}; 1552 1553module_platform_driver(samsung_i2s_driver); 1554 1555/* Module information */ 1556MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>"); 1557MODULE_DESCRIPTION("Samsung I2S Interface"); 1558MODULE_ALIAS("platform:samsung-i2s"); 1559MODULE_LICENSE("GPL"); 1560