1 /* sound/soc/samsung/i2s.c
3 * ALSA SoC Audio Layer - Samsung I2S Controller driver
5 * Copyright (c) 2010 Samsung Electronics Co. Ltd.
6 * Jaswinder Singh <jassisinghbrar@gmail.com>
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.
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>
19 #include <linux/module.h>
21 #include <linux/of_device.h>
22 #include <linux/of_gpio.h>
23 #include <linux/pm_runtime.h>
25 #include <sound/soc.h>
26 #include <sound/pcm_params.h>
28 #include <linux/platform_data/asoc-s3c.h>
35 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
37 enum samsung_dai_type
{
42 struct samsung_i2s_variant_regs
{
47 unsigned int rclksrc_off
;
49 unsigned int cdclkcon_off
;
51 unsigned int bfs_mask
;
52 unsigned int rfs_mask
;
53 unsigned int ftx0cnt_off
;
56 struct samsung_i2s_dai_data
{
59 const struct samsung_i2s_variant_regs
*i2s_variant_regs
;
63 /* Platform device for this DAI */
64 struct platform_device
*pdev
;
65 /* Memory mapped SFR region */
67 /* Rate of RCLK source clock */
68 unsigned long rclk_srcrate
;
72 * Specifically requested RCLK,BCLK by MACHINE Driver.
73 * 0 indicates CPU driver is free to choose any value.
76 /* I2S Controller's core clock */
78 /* Clock for generating I2S signals */
80 /* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */
81 struct i2s_dai
*pri_dai
;
82 /* Pointer to the Secondary_Fifo if it has one, NULL otherwise */
83 struct i2s_dai
*sec_dai
;
84 #define DAI_OPENED (1 << 0) /* Dai is opened */
85 #define DAI_MANAGER (1 << 1) /* Dai is the manager */
87 /* Driver for this DAI */
88 struct snd_soc_dai_driver i2s_dai_drv
;
90 struct s3c_dma_params dma_playback
;
91 struct s3c_dma_params dma_capture
;
92 struct s3c_dma_params idma_playback
;
98 const struct samsung_i2s_variant_regs
*variant_regs
;
100 /* Spinlock protecting access to the device's registers */
104 /* Below fields are only valid if this is the primary FIFO */
105 struct clk
*clk_table
[3];
106 struct clk_onecell_data clk_data
;
109 /* Lock for cross i/f checks */
110 static DEFINE_SPINLOCK(lock
);
112 /* If this is the 'overlay' stereo DAI */
113 static inline bool is_secondary(struct i2s_dai
*i2s
)
115 return i2s
->pri_dai
? true : false;
118 /* If operating in SoC-Slave mode */
119 static inline bool is_slave(struct i2s_dai
*i2s
)
121 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
122 return (mod
& (1 << i2s
->variant_regs
->mss_off
)) ? true : false;
125 /* If this interface of the controller is transmitting data */
126 static inline bool tx_active(struct i2s_dai
*i2s
)
133 active
= readl(i2s
->addr
+ I2SCON
);
135 if (is_secondary(i2s
))
136 active
&= CON_TXSDMA_ACTIVE
;
138 active
&= CON_TXDMA_ACTIVE
;
140 return active
? true : false;
143 /* Return pointer to the other DAI */
144 static inline struct i2s_dai
*get_other_dai(struct i2s_dai
*i2s
)
146 return i2s
->pri_dai
? : i2s
->sec_dai
;
149 /* If the other interface of the controller is transmitting data */
150 static inline bool other_tx_active(struct i2s_dai
*i2s
)
152 struct i2s_dai
*other
= get_other_dai(i2s
);
154 return tx_active(other
);
157 /* If any interface of the controller is transmitting data */
158 static inline bool any_tx_active(struct i2s_dai
*i2s
)
160 return tx_active(i2s
) || other_tx_active(i2s
);
163 /* If this interface of the controller is receiving data */
164 static inline bool rx_active(struct i2s_dai
*i2s
)
171 active
= readl(i2s
->addr
+ I2SCON
) & CON_RXDMA_ACTIVE
;
173 return active
? true : false;
176 /* If the other interface of the controller is receiving data */
177 static inline bool other_rx_active(struct i2s_dai
*i2s
)
179 struct i2s_dai
*other
= get_other_dai(i2s
);
181 return rx_active(other
);
184 /* If any interface of the controller is receiving data */
185 static inline bool any_rx_active(struct i2s_dai
*i2s
)
187 return rx_active(i2s
) || other_rx_active(i2s
);
190 /* If the other DAI is transmitting or receiving data */
191 static inline bool other_active(struct i2s_dai
*i2s
)
193 return other_rx_active(i2s
) || other_tx_active(i2s
);
196 /* If this DAI is transmitting or receiving data */
197 static inline bool this_active(struct i2s_dai
*i2s
)
199 return tx_active(i2s
) || rx_active(i2s
);
202 /* If the controller is active anyway */
203 static inline bool any_active(struct i2s_dai
*i2s
)
205 return this_active(i2s
) || other_active(i2s
);
208 static inline struct i2s_dai
*to_info(struct snd_soc_dai
*dai
)
210 return snd_soc_dai_get_drvdata(dai
);
213 static inline bool is_opened(struct i2s_dai
*i2s
)
215 if (i2s
&& (i2s
->mode
& DAI_OPENED
))
221 static inline bool is_manager(struct i2s_dai
*i2s
)
223 if (is_opened(i2s
) && (i2s
->mode
& DAI_MANAGER
))
229 /* Read RCLK of I2S (in multiples of LRCLK) */
230 static inline unsigned get_rfs(struct i2s_dai
*i2s
)
233 rfs
= readl(i2s
->addr
+ I2SMOD
) >> i2s
->variant_regs
->rfs_off
;
234 rfs
&= i2s
->variant_regs
->rfs_mask
;
248 /* Write RCLK of I2S (in multiples of LRCLK) */
249 static inline void set_rfs(struct i2s_dai
*i2s
, unsigned rfs
)
251 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
252 int rfs_shift
= i2s
->variant_regs
->rfs_off
;
254 mod
&= ~(i2s
->variant_regs
->rfs_mask
<< rfs_shift
);
258 mod
|= (EXYNOS7_MOD_RCLK_192FS
<< rfs_shift
);
261 mod
|= (EXYNOS7_MOD_RCLK_96FS
<< rfs_shift
);
264 mod
|= (EXYNOS7_MOD_RCLK_128FS
<< rfs_shift
);
267 mod
|= (EXYNOS7_MOD_RCLK_64FS
<< rfs_shift
);
270 mod
|= (MOD_RCLK_768FS
<< rfs_shift
);
273 mod
|= (MOD_RCLK_512FS
<< rfs_shift
);
276 mod
|= (MOD_RCLK_384FS
<< rfs_shift
);
279 mod
|= (MOD_RCLK_256FS
<< rfs_shift
);
283 writel(mod
, i2s
->addr
+ I2SMOD
);
286 /* Read Bit-Clock of I2S (in multiples of LRCLK) */
287 static inline unsigned get_bfs(struct i2s_dai
*i2s
)
290 bfs
= readl(i2s
->addr
+ I2SMOD
) >> i2s
->variant_regs
->bfs_off
;
291 bfs
&= i2s
->variant_regs
->bfs_mask
;
306 /* Write Bit-Clock of I2S (in multiples of LRCLK) */
307 static inline void set_bfs(struct i2s_dai
*i2s
, unsigned bfs
)
309 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
310 int tdm
= i2s
->quirks
& QUIRK_SUPPORTS_TDM
;
311 int bfs_shift
= i2s
->variant_regs
->bfs_off
;
313 /* Non-TDM I2S controllers do not support BCLK > 48 * FS */
314 if (!tdm
&& bfs
> 48) {
315 dev_err(&i2s
->pdev
->dev
, "Unsupported BCLK divider\n");
319 mod
&= ~(i2s
->variant_regs
->bfs_mask
<< bfs_shift
);
323 mod
|= (MOD_BCLK_48FS
<< bfs_shift
);
326 mod
|= (MOD_BCLK_32FS
<< bfs_shift
);
329 mod
|= (MOD_BCLK_24FS
<< bfs_shift
);
332 mod
|= (MOD_BCLK_16FS
<< bfs_shift
);
335 mod
|= (EXYNOS5420_MOD_BCLK_64FS
<< bfs_shift
);
338 mod
|= (EXYNOS5420_MOD_BCLK_96FS
<< bfs_shift
);
341 mod
|= (EXYNOS5420_MOD_BCLK_128FS
<< bfs_shift
);
344 mod
|= (EXYNOS5420_MOD_BCLK_192FS
<< bfs_shift
);
347 mod
|= (EXYNOS5420_MOD_BCLK_256FS
<< bfs_shift
);
350 dev_err(&i2s
->pdev
->dev
, "Wrong BCLK Divider!\n");
354 writel(mod
, i2s
->addr
+ I2SMOD
);
358 static inline int get_blc(struct i2s_dai
*i2s
)
360 int blc
= readl(i2s
->addr
+ I2SMOD
);
362 blc
= (blc
>> 13) & 0x3;
371 /* TX Channel Control */
372 static void i2s_txctrl(struct i2s_dai
*i2s
, int on
)
374 void __iomem
*addr
= i2s
->addr
;
375 int txr_off
= i2s
->variant_regs
->txr_off
;
376 u32 con
= readl(addr
+ I2SCON
);
377 u32 mod
= readl(addr
+ I2SMOD
) & ~(3 << txr_off
);
381 con
&= ~CON_TXCH_PAUSE
;
383 if (is_secondary(i2s
)) {
384 con
|= CON_TXSDMA_ACTIVE
;
385 con
&= ~CON_TXSDMA_PAUSE
;
387 con
|= CON_TXDMA_ACTIVE
;
388 con
&= ~CON_TXDMA_PAUSE
;
391 if (any_rx_active(i2s
))
396 if (is_secondary(i2s
)) {
397 con
|= CON_TXSDMA_PAUSE
;
398 con
&= ~CON_TXSDMA_ACTIVE
;
400 con
|= CON_TXDMA_PAUSE
;
401 con
&= ~CON_TXDMA_ACTIVE
;
404 if (other_tx_active(i2s
)) {
405 writel(con
, addr
+ I2SCON
);
409 con
|= CON_TXCH_PAUSE
;
411 if (any_rx_active(i2s
))
417 writel(mod
, addr
+ I2SMOD
);
418 writel(con
, addr
+ I2SCON
);
421 /* RX Channel Control */
422 static void i2s_rxctrl(struct i2s_dai
*i2s
, int on
)
424 void __iomem
*addr
= i2s
->addr
;
425 int txr_off
= i2s
->variant_regs
->txr_off
;
426 u32 con
= readl(addr
+ I2SCON
);
427 u32 mod
= readl(addr
+ I2SMOD
) & ~(3 << txr_off
);
430 con
|= CON_RXDMA_ACTIVE
| CON_ACTIVE
;
431 con
&= ~(CON_RXDMA_PAUSE
| CON_RXCH_PAUSE
);
433 if (any_tx_active(i2s
))
438 con
|= CON_RXDMA_PAUSE
| CON_RXCH_PAUSE
;
439 con
&= ~CON_RXDMA_ACTIVE
;
441 if (any_tx_active(i2s
))
447 writel(mod
, addr
+ I2SMOD
);
448 writel(con
, addr
+ I2SCON
);
451 /* Flush FIFO of an interface */
452 static inline void i2s_fifo(struct i2s_dai
*i2s
, u32 flush
)
460 if (is_secondary(i2s
))
461 fic
= i2s
->addr
+ I2SFICS
;
463 fic
= i2s
->addr
+ I2SFIC
;
466 writel(readl(fic
) | flush
, fic
);
469 val
= msecs_to_loops(1) / 1000; /* 1 usec */
473 writel(readl(fic
) & ~flush
, fic
);
476 static int i2s_set_sysclk(struct snd_soc_dai
*dai
,
477 int clk_id
, unsigned int rfs
, int dir
)
479 struct i2s_dai
*i2s
= to_info(dai
);
480 struct i2s_dai
*other
= get_other_dai(i2s
);
481 const struct samsung_i2s_variant_regs
*i2s_regs
= i2s
->variant_regs
;
482 unsigned int cdcon_mask
= 1 << i2s_regs
->cdclkcon_off
;
483 unsigned int rsrc_mask
= 1 << i2s_regs
->rclksrc_off
;
484 u32 mod
, mask
, val
= 0;
487 spin_lock_irqsave(i2s
->lock
, flags
);
488 mod
= readl(i2s
->addr
+ I2SMOD
);
489 spin_unlock_irqrestore(i2s
->lock
, flags
);
492 case SAMSUNG_I2S_OPCLK
:
493 mask
= MOD_OPCLK_MASK
;
496 case SAMSUNG_I2S_CDCLK
:
497 mask
= 1 << i2s_regs
->cdclkcon_off
;
498 /* Shouldn't matter in GATING(CLOCK_IN) mode */
499 if (dir
== SND_SOC_CLOCK_IN
)
502 if ((rfs
&& other
&& other
->rfs
&& (other
->rfs
!= rfs
)) ||
504 (((dir
== SND_SOC_CLOCK_IN
)
505 && !(mod
& cdcon_mask
)) ||
506 ((dir
== SND_SOC_CLOCK_OUT
)
507 && (mod
& cdcon_mask
))))) {
508 dev_err(&i2s
->pdev
->dev
,
509 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
513 if (dir
== SND_SOC_CLOCK_IN
)
514 val
= 1 << i2s_regs
->cdclkcon_off
;
519 case SAMSUNG_I2S_RCLKSRC_0
: /* clock corrsponding to IISMOD[10] := 0 */
520 case SAMSUNG_I2S_RCLKSRC_1
: /* clock corrsponding to IISMOD[10] := 1 */
521 mask
= 1 << i2s_regs
->rclksrc_off
;
523 if ((i2s
->quirks
& QUIRK_NO_MUXPSR
)
524 || (clk_id
== SAMSUNG_I2S_RCLKSRC_0
))
529 if (!any_active(i2s
)) {
530 if (i2s
->op_clk
&& !IS_ERR(i2s
->op_clk
)) {
531 if ((clk_id
&& !(mod
& rsrc_mask
)) ||
532 (!clk_id
&& (mod
& rsrc_mask
))) {
533 clk_disable_unprepare(i2s
->op_clk
);
534 clk_put(i2s
->op_clk
);
537 clk_get_rate(i2s
->op_clk
);
543 i2s
->op_clk
= clk_get(&i2s
->pdev
->dev
,
546 i2s
->op_clk
= clk_get(&i2s
->pdev
->dev
,
549 if (WARN_ON(IS_ERR(i2s
->op_clk
)))
550 return PTR_ERR(i2s
->op_clk
);
552 clk_prepare_enable(i2s
->op_clk
);
553 i2s
->rclk_srcrate
= clk_get_rate(i2s
->op_clk
);
555 /* Over-ride the other's */
557 other
->op_clk
= i2s
->op_clk
;
558 other
->rclk_srcrate
= i2s
->rclk_srcrate
;
560 } else if ((!clk_id
&& (mod
& rsrc_mask
))
561 || (clk_id
&& !(mod
& rsrc_mask
))) {
562 dev_err(&i2s
->pdev
->dev
,
563 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
566 /* Call can't be on the active DAI */
567 i2s
->op_clk
= other
->op_clk
;
568 i2s
->rclk_srcrate
= other
->rclk_srcrate
;
573 val
= 1 << i2s_regs
->rclksrc_off
;
576 dev_err(&i2s
->pdev
->dev
, "We don't serve that!\n");
580 spin_lock_irqsave(i2s
->lock
, flags
);
581 mod
= readl(i2s
->addr
+ I2SMOD
);
582 mod
= (mod
& ~mask
) | val
;
583 writel(mod
, i2s
->addr
+ I2SMOD
);
584 spin_unlock_irqrestore(i2s
->lock
, flags
);
589 static int i2s_set_fmt(struct snd_soc_dai
*dai
,
592 struct i2s_dai
*i2s
= to_info(dai
);
593 int lrp_shift
, sdf_shift
, sdf_mask
, lrp_rlow
, mod_slave
;
597 lrp_shift
= i2s
->variant_regs
->lrp_off
;
598 sdf_shift
= i2s
->variant_regs
->sdf_off
;
599 mod_slave
= 1 << i2s
->variant_regs
->mss_off
;
601 sdf_mask
= MOD_SDF_MASK
<< sdf_shift
;
602 lrp_rlow
= MOD_LR_RLOW
<< lrp_shift
;
604 /* Format is priority */
605 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
606 case SND_SOC_DAIFMT_RIGHT_J
:
608 tmp
|= (MOD_SDF_MSB
<< sdf_shift
);
610 case SND_SOC_DAIFMT_LEFT_J
:
612 tmp
|= (MOD_SDF_LSB
<< sdf_shift
);
614 case SND_SOC_DAIFMT_I2S
:
615 tmp
|= (MOD_SDF_IIS
<< sdf_shift
);
618 dev_err(&i2s
->pdev
->dev
, "Format not supported\n");
623 * INV flag is relative to the FORMAT flag - if set it simply
624 * flips the polarity specified by the Standard
626 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
627 case SND_SOC_DAIFMT_NB_NF
:
629 case SND_SOC_DAIFMT_NB_IF
:
636 dev_err(&i2s
->pdev
->dev
, "Polarity not supported\n");
640 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
641 case SND_SOC_DAIFMT_CBM_CFM
:
644 case SND_SOC_DAIFMT_CBS_CFS
:
645 /* Set default source clock in Master mode */
646 if (i2s
->rclk_srcrate
== 0)
647 i2s_set_sysclk(dai
, SAMSUNG_I2S_RCLKSRC_0
,
648 0, SND_SOC_CLOCK_IN
);
651 dev_err(&i2s
->pdev
->dev
, "master/slave format not supported\n");
655 spin_lock_irqsave(i2s
->lock
, flags
);
656 mod
= readl(i2s
->addr
+ I2SMOD
);
658 * Don't change the I2S mode if any controller is active on this
661 if (any_active(i2s
) &&
662 ((mod
& (sdf_mask
| lrp_rlow
| mod_slave
)) != tmp
)) {
663 spin_unlock_irqrestore(i2s
->lock
, flags
);
664 dev_err(&i2s
->pdev
->dev
,
665 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
669 mod
&= ~(sdf_mask
| lrp_rlow
| mod_slave
);
671 writel(mod
, i2s
->addr
+ I2SMOD
);
672 spin_unlock_irqrestore(i2s
->lock
, flags
);
677 static int i2s_hw_params(struct snd_pcm_substream
*substream
,
678 struct snd_pcm_hw_params
*params
, struct snd_soc_dai
*dai
)
680 struct i2s_dai
*i2s
= to_info(dai
);
681 u32 mod
, mask
= 0, val
= 0;
684 if (!is_secondary(i2s
))
685 mask
|= (MOD_DC2_EN
| MOD_DC1_EN
);
687 switch (params_channels(params
)) {
694 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
695 i2s
->dma_playback
.dma_size
= 4;
697 i2s
->dma_capture
.dma_size
= 4;
700 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
701 i2s
->dma_playback
.dma_size
= 2;
703 i2s
->dma_capture
.dma_size
= 2;
707 dev_err(&i2s
->pdev
->dev
, "%d channels not supported\n",
708 params_channels(params
));
712 if (is_secondary(i2s
))
713 mask
|= MOD_BLCS_MASK
;
715 mask
|= MOD_BLCP_MASK
;
718 mask
|= MOD_BLC_MASK
;
720 switch (params_width(params
)) {
722 if (is_secondary(i2s
))
723 val
|= MOD_BLCS_8BIT
;
725 val
|= MOD_BLCP_8BIT
;
730 if (is_secondary(i2s
))
731 val
|= MOD_BLCS_16BIT
;
733 val
|= MOD_BLCP_16BIT
;
735 val
|= MOD_BLC_16BIT
;
738 if (is_secondary(i2s
))
739 val
|= MOD_BLCS_24BIT
;
741 val
|= MOD_BLCP_24BIT
;
743 val
|= MOD_BLC_24BIT
;
746 dev_err(&i2s
->pdev
->dev
, "Format(%d) not supported\n",
747 params_format(params
));
751 spin_lock_irqsave(i2s
->lock
, flags
);
752 mod
= readl(i2s
->addr
+ I2SMOD
);
753 mod
= (mod
& ~mask
) | val
;
754 writel(mod
, i2s
->addr
+ I2SMOD
);
755 spin_unlock_irqrestore(i2s
->lock
, flags
);
757 samsung_asoc_init_dma_data(dai
, &i2s
->dma_playback
, &i2s
->dma_capture
);
759 i2s
->frmclk
= params_rate(params
);
764 /* We set constraints on the substream acc to the version of I2S */
765 static int i2s_startup(struct snd_pcm_substream
*substream
,
766 struct snd_soc_dai
*dai
)
768 struct i2s_dai
*i2s
= to_info(dai
);
769 struct i2s_dai
*other
= get_other_dai(i2s
);
772 spin_lock_irqsave(&lock
, flags
);
774 i2s
->mode
|= DAI_OPENED
;
776 if (is_manager(other
))
777 i2s
->mode
&= ~DAI_MANAGER
;
779 i2s
->mode
|= DAI_MANAGER
;
781 if (!any_active(i2s
) && (i2s
->quirks
& QUIRK_NEED_RSTCLR
))
782 writel(CON_RSTCLR
, i2s
->addr
+ I2SCON
);
784 spin_unlock_irqrestore(&lock
, flags
);
789 static void i2s_shutdown(struct snd_pcm_substream
*substream
,
790 struct snd_soc_dai
*dai
)
792 struct i2s_dai
*i2s
= to_info(dai
);
793 struct i2s_dai
*other
= get_other_dai(i2s
);
796 spin_lock_irqsave(&lock
, flags
);
798 i2s
->mode
&= ~DAI_OPENED
;
799 i2s
->mode
&= ~DAI_MANAGER
;
801 if (is_opened(other
))
802 other
->mode
|= DAI_MANAGER
;
804 /* Reset any constraint on RFS and BFS */
808 spin_unlock_irqrestore(&lock
, flags
);
811 static int config_setup(struct i2s_dai
*i2s
)
813 struct i2s_dai
*other
= get_other_dai(i2s
);
814 unsigned rfs
, bfs
, blc
;
824 /* Select least possible multiple(2) if no constraint set */
833 if ((rfs
== 256 || rfs
== 512) && (blc
== 24)) {
834 dev_err(&i2s
->pdev
->dev
,
835 "%d-RFS not supported for 24-blc\n", rfs
);
840 if (bfs
== 16 || bfs
== 32)
846 /* If already setup and running */
847 if (any_active(i2s
) && (get_rfs(i2s
) != rfs
|| get_bfs(i2s
) != bfs
)) {
848 dev_err(&i2s
->pdev
->dev
,
849 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
856 /* Don't bother with PSR in Slave mode */
860 if (!(i2s
->quirks
& QUIRK_NO_MUXPSR
)) {
861 psr
= i2s
->rclk_srcrate
/ i2s
->frmclk
/ rfs
;
862 writel(((psr
- 1) << 8) | PSR_PSREN
, i2s
->addr
+ I2SPSR
);
863 dev_dbg(&i2s
->pdev
->dev
,
864 "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
865 i2s
->rclk_srcrate
, psr
, rfs
, bfs
);
871 static int i2s_trigger(struct snd_pcm_substream
*substream
,
872 int cmd
, struct snd_soc_dai
*dai
)
874 int capture
= (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
);
875 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
876 struct i2s_dai
*i2s
= to_info(rtd
->cpu_dai
);
880 case SNDRV_PCM_TRIGGER_START
:
881 case SNDRV_PCM_TRIGGER_RESUME
:
882 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
883 spin_lock_irqsave(i2s
->lock
, flags
);
885 if (config_setup(i2s
)) {
886 spin_unlock_irqrestore(i2s
->lock
, flags
);
895 spin_unlock_irqrestore(i2s
->lock
, flags
);
897 case SNDRV_PCM_TRIGGER_STOP
:
898 case SNDRV_PCM_TRIGGER_SUSPEND
:
899 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
900 spin_lock_irqsave(i2s
->lock
, flags
);
904 i2s_fifo(i2s
, FIC_RXFLUSH
);
907 i2s_fifo(i2s
, FIC_TXFLUSH
);
910 spin_unlock_irqrestore(i2s
->lock
, flags
);
917 static int i2s_set_clkdiv(struct snd_soc_dai
*dai
,
920 struct i2s_dai
*i2s
= to_info(dai
);
921 struct i2s_dai
*other
= get_other_dai(i2s
);
924 case SAMSUNG_I2S_DIV_BCLK
:
925 if ((any_active(i2s
) && div
&& (get_bfs(i2s
) != div
))
926 || (other
&& other
->bfs
&& (other
->bfs
!= div
))) {
927 dev_err(&i2s
->pdev
->dev
,
928 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
934 dev_err(&i2s
->pdev
->dev
,
935 "Invalid clock divider(%d)\n", div_id
);
942 static snd_pcm_sframes_t
943 i2s_delay(struct snd_pcm_substream
*substream
, struct snd_soc_dai
*dai
)
945 struct i2s_dai
*i2s
= to_info(dai
);
946 u32 reg
= readl(i2s
->addr
+ I2SFIC
);
947 snd_pcm_sframes_t delay
;
948 const struct samsung_i2s_variant_regs
*i2s_regs
= i2s
->variant_regs
;
950 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
951 delay
= FIC_RXCOUNT(reg
);
952 else if (is_secondary(i2s
))
953 delay
= FICS_TXCOUNT(readl(i2s
->addr
+ I2SFICS
));
955 delay
= (reg
>> i2s_regs
->ftx0cnt_off
) & 0x7f;
961 static int i2s_suspend(struct snd_soc_dai
*dai
)
963 struct i2s_dai
*i2s
= to_info(dai
);
965 i2s
->suspend_i2smod
= readl(i2s
->addr
+ I2SMOD
);
966 i2s
->suspend_i2scon
= readl(i2s
->addr
+ I2SCON
);
967 i2s
->suspend_i2spsr
= readl(i2s
->addr
+ I2SPSR
);
972 static int i2s_resume(struct snd_soc_dai
*dai
)
974 struct i2s_dai
*i2s
= to_info(dai
);
976 writel(i2s
->suspend_i2scon
, i2s
->addr
+ I2SCON
);
977 writel(i2s
->suspend_i2smod
, i2s
->addr
+ I2SMOD
);
978 writel(i2s
->suspend_i2spsr
, i2s
->addr
+ I2SPSR
);
983 #define i2s_suspend NULL
984 #define i2s_resume NULL
987 static int samsung_i2s_dai_probe(struct snd_soc_dai
*dai
)
989 struct i2s_dai
*i2s
= to_info(dai
);
990 struct i2s_dai
*other
= get_other_dai(i2s
);
993 if (is_secondary(i2s
)) { /* If this is probe on the secondary DAI */
994 samsung_asoc_init_dma_data(dai
, &other
->sec_dai
->dma_playback
,
997 samsung_asoc_init_dma_data(dai
, &i2s
->dma_playback
,
1000 if (i2s
->quirks
& QUIRK_NEED_RSTCLR
)
1001 writel(CON_RSTCLR
, i2s
->addr
+ I2SCON
);
1003 if (i2s
->quirks
& QUIRK_SUPPORTS_IDMA
)
1004 idma_reg_addr_init(i2s
->addr
,
1005 i2s
->sec_dai
->idma_playback
.dma_addr
);
1008 /* Reset any constraint on RFS and BFS */
1011 i2s
->rclk_srcrate
= 0;
1013 spin_lock_irqsave(i2s
->lock
, flags
);
1016 i2s_fifo(i2s
, FIC_TXFLUSH
);
1017 i2s_fifo(other
, FIC_TXFLUSH
);
1018 i2s_fifo(i2s
, FIC_RXFLUSH
);
1019 spin_unlock_irqrestore(i2s
->lock
, flags
);
1021 /* Gate CDCLK by default */
1022 if (!is_opened(other
))
1023 i2s_set_sysclk(dai
, SAMSUNG_I2S_CDCLK
,
1024 0, SND_SOC_CLOCK_IN
);
1029 static int samsung_i2s_dai_remove(struct snd_soc_dai
*dai
)
1031 struct i2s_dai
*i2s
= snd_soc_dai_get_drvdata(dai
);
1033 if (!is_secondary(i2s
)) {
1034 if (i2s
->quirks
& QUIRK_NEED_RSTCLR
) {
1035 spin_lock(i2s
->lock
);
1036 writel(0, i2s
->addr
+ I2SCON
);
1037 spin_unlock(i2s
->lock
);
1044 static const struct snd_soc_dai_ops samsung_i2s_dai_ops
= {
1045 .trigger
= i2s_trigger
,
1046 .hw_params
= i2s_hw_params
,
1047 .set_fmt
= i2s_set_fmt
,
1048 .set_clkdiv
= i2s_set_clkdiv
,
1049 .set_sysclk
= i2s_set_sysclk
,
1050 .startup
= i2s_startup
,
1051 .shutdown
= i2s_shutdown
,
1055 static const struct snd_soc_component_driver samsung_i2s_component
= {
1056 .name
= "samsung-i2s",
1059 #define SAMSUNG_I2S_RATES SNDRV_PCM_RATE_8000_96000
1061 #define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | \
1062 SNDRV_PCM_FMTBIT_S16_LE | \
1063 SNDRV_PCM_FMTBIT_S24_LE)
1065 static struct i2s_dai
*i2s_alloc_dai(struct platform_device
*pdev
, bool sec
)
1067 struct i2s_dai
*i2s
;
1070 i2s
= devm_kzalloc(&pdev
->dev
, sizeof(struct i2s_dai
), GFP_KERNEL
);
1075 i2s
->pri_dai
= NULL
;
1076 i2s
->sec_dai
= NULL
;
1077 i2s
->i2s_dai_drv
.symmetric_rates
= 1;
1078 i2s
->i2s_dai_drv
.probe
= samsung_i2s_dai_probe
;
1079 i2s
->i2s_dai_drv
.remove
= samsung_i2s_dai_remove
;
1080 i2s
->i2s_dai_drv
.ops
= &samsung_i2s_dai_ops
;
1081 i2s
->i2s_dai_drv
.suspend
= i2s_suspend
;
1082 i2s
->i2s_dai_drv
.resume
= i2s_resume
;
1083 i2s
->i2s_dai_drv
.playback
.channels_min
= 1;
1084 i2s
->i2s_dai_drv
.playback
.channels_max
= 2;
1085 i2s
->i2s_dai_drv
.playback
.rates
= SAMSUNG_I2S_RATES
;
1086 i2s
->i2s_dai_drv
.playback
.formats
= SAMSUNG_I2S_FMTS
;
1089 i2s
->i2s_dai_drv
.capture
.channels_min
= 1;
1090 i2s
->i2s_dai_drv
.capture
.channels_max
= 2;
1091 i2s
->i2s_dai_drv
.capture
.rates
= SAMSUNG_I2S_RATES
;
1092 i2s
->i2s_dai_drv
.capture
.formats
= SAMSUNG_I2S_FMTS
;
1093 dev_set_drvdata(&i2s
->pdev
->dev
, i2s
);
1094 } else { /* Create a new platform_device for Secondary */
1095 i2s
->pdev
= platform_device_alloc("samsung-i2s-sec", -1);
1099 i2s
->pdev
->dev
.parent
= &pdev
->dev
;
1101 platform_set_drvdata(i2s
->pdev
, i2s
);
1102 ret
= platform_device_add(i2s
->pdev
);
1110 static void i2s_free_sec_dai(struct i2s_dai
*i2s
)
1112 platform_device_del(i2s
->pdev
);
1116 static int i2s_runtime_suspend(struct device
*dev
)
1118 struct i2s_dai
*i2s
= dev_get_drvdata(dev
);
1120 clk_disable_unprepare(i2s
->clk
);
1125 static int i2s_runtime_resume(struct device
*dev
)
1127 struct i2s_dai
*i2s
= dev_get_drvdata(dev
);
1129 clk_prepare_enable(i2s
->clk
);
1133 #endif /* CONFIG_PM */
1135 static void i2s_unregister_clocks(struct i2s_dai
*i2s
)
1139 for (i
= 0; i
< i2s
->clk_data
.clk_num
; i
++) {
1140 if (!IS_ERR(i2s
->clk_table
[i
]))
1141 clk_unregister(i2s
->clk_table
[i
]);
1145 static void i2s_unregister_clock_provider(struct platform_device
*pdev
)
1147 struct i2s_dai
*i2s
= dev_get_drvdata(&pdev
->dev
);
1149 of_clk_del_provider(pdev
->dev
.of_node
);
1150 i2s_unregister_clocks(i2s
);
1153 static int i2s_register_clock_provider(struct platform_device
*pdev
)
1155 struct device
*dev
= &pdev
->dev
;
1156 struct i2s_dai
*i2s
= dev_get_drvdata(dev
);
1157 const char *clk_name
[2] = { "i2s_opclk0", "i2s_opclk1" };
1158 const char *p_names
[2] = { NULL
};
1159 const struct samsung_i2s_variant_regs
*reg_info
= i2s
->variant_regs
;
1160 struct clk
*rclksrc
;
1163 /* Register the clock provider only if it's expected in the DTB */
1164 if (!of_find_property(dev
->of_node
, "#clock-cells", NULL
))
1167 /* Get the RCLKSRC mux clock parent clock names */
1168 for (i
= 0; i
< ARRAY_SIZE(p_names
); i
++) {
1169 rclksrc
= clk_get(dev
, clk_name
[i
]);
1170 if (IS_ERR(rclksrc
))
1172 p_names
[i
] = __clk_get_name(rclksrc
);
1176 if (!(i2s
->quirks
& QUIRK_NO_MUXPSR
)) {
1177 /* Activate the prescaler */
1178 u32 val
= readl(i2s
->addr
+ I2SPSR
);
1179 writel(val
| PSR_PSREN
, i2s
->addr
+ I2SPSR
);
1181 i2s
->clk_table
[CLK_I2S_RCLK_SRC
] = clk_register_mux(NULL
,
1182 "i2s_rclksrc", p_names
, ARRAY_SIZE(p_names
),
1183 CLK_SET_RATE_NO_REPARENT
| CLK_SET_RATE_PARENT
,
1184 i2s
->addr
+ I2SMOD
, reg_info
->rclksrc_off
,
1187 i2s
->clk_table
[CLK_I2S_RCLK_PSR
] = clk_register_divider(NULL
,
1188 "i2s_presc", "i2s_rclksrc",
1189 CLK_SET_RATE_PARENT
,
1190 i2s
->addr
+ I2SPSR
, 8, 6, 0, i2s
->lock
);
1192 p_names
[0] = "i2s_presc";
1193 i2s
->clk_data
.clk_num
= 2;
1195 of_property_read_string_index(dev
->of_node
,
1196 "clock-output-names", 0, &clk_name
[0]);
1198 i2s
->clk_table
[CLK_I2S_CDCLK
] = clk_register_gate(NULL
, clk_name
[0],
1199 p_names
[0], CLK_SET_RATE_PARENT
,
1200 i2s
->addr
+ I2SMOD
, reg_info
->cdclkcon_off
,
1201 CLK_GATE_SET_TO_DISABLE
, i2s
->lock
);
1203 i2s
->clk_data
.clk_num
+= 1;
1204 i2s
->clk_data
.clks
= i2s
->clk_table
;
1206 ret
= of_clk_add_provider(dev
->of_node
, of_clk_src_onecell_get
,
1209 dev_err(dev
, "failed to add clock provider: %d\n", ret
);
1210 i2s_unregister_clocks(i2s
);
1216 static int samsung_i2s_probe(struct platform_device
*pdev
)
1218 struct i2s_dai
*pri_dai
, *sec_dai
= NULL
;
1219 struct s3c_audio_pdata
*i2s_pdata
= pdev
->dev
.platform_data
;
1220 struct samsung_i2s
*i2s_cfg
= NULL
;
1221 struct resource
*res
;
1222 u32 regs_base
, quirks
= 0, idma_addr
= 0;
1223 struct device_node
*np
= pdev
->dev
.of_node
;
1224 const struct samsung_i2s_dai_data
*i2s_dai_data
;
1227 if (IS_ENABLED(CONFIG_OF
) && pdev
->dev
.of_node
)
1228 i2s_dai_data
= of_device_get_match_data(&pdev
->dev
);
1230 i2s_dai_data
= (struct samsung_i2s_dai_data
*)
1231 platform_get_device_id(pdev
)->driver_data
;
1233 /* Call during the secondary interface registration */
1234 if (i2s_dai_data
->dai_type
== TYPE_SEC
) {
1235 sec_dai
= dev_get_drvdata(&pdev
->dev
);
1237 dev_err(&pdev
->dev
, "Unable to get drvdata\n");
1240 ret
= devm_snd_soc_register_component(&sec_dai
->pdev
->dev
,
1241 &samsung_i2s_component
,
1242 &sec_dai
->i2s_dai_drv
, 1);
1246 return samsung_asoc_dma_platform_register(&pdev
->dev
,
1247 sec_dai
->filter
, "tx-sec", NULL
);
1250 pri_dai
= i2s_alloc_dai(pdev
, false);
1252 dev_err(&pdev
->dev
, "Unable to alloc I2S_pri\n");
1256 spin_lock_init(&pri_dai
->spinlock
);
1257 pri_dai
->lock
= &pri_dai
->spinlock
;
1260 if (i2s_pdata
== NULL
) {
1261 dev_err(&pdev
->dev
, "Can't work without s3c_audio_pdata\n");
1265 pri_dai
->dma_playback
.slave
= i2s_pdata
->dma_playback
;
1266 pri_dai
->dma_capture
.slave
= i2s_pdata
->dma_capture
;
1267 pri_dai
->filter
= i2s_pdata
->dma_filter
;
1269 if (&i2s_pdata
->type
)
1270 i2s_cfg
= &i2s_pdata
->type
.i2s
;
1273 quirks
= i2s_cfg
->quirks
;
1274 idma_addr
= i2s_cfg
->idma_addr
;
1277 quirks
= i2s_dai_data
->quirks
;
1278 if (of_property_read_u32(np
, "samsung,idma-addr",
1280 if (quirks
& QUIRK_SUPPORTS_IDMA
) {
1281 dev_info(&pdev
->dev
, "idma address is not"\
1287 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1288 pri_dai
->addr
= devm_ioremap_resource(&pdev
->dev
, res
);
1289 if (IS_ERR(pri_dai
->addr
))
1290 return PTR_ERR(pri_dai
->addr
);
1292 regs_base
= res
->start
;
1294 pri_dai
->clk
= devm_clk_get(&pdev
->dev
, "iis");
1295 if (IS_ERR(pri_dai
->clk
)) {
1296 dev_err(&pdev
->dev
, "Failed to get iis clock\n");
1297 return PTR_ERR(pri_dai
->clk
);
1300 ret
= clk_prepare_enable(pri_dai
->clk
);
1302 dev_err(&pdev
->dev
, "failed to enable clock: %d\n", ret
);
1305 pri_dai
->dma_playback
.dma_addr
= regs_base
+ I2STXD
;
1306 pri_dai
->dma_capture
.dma_addr
= regs_base
+ I2SRXD
;
1307 pri_dai
->dma_playback
.ch_name
= "tx";
1308 pri_dai
->dma_capture
.ch_name
= "rx";
1309 pri_dai
->dma_playback
.dma_size
= 4;
1310 pri_dai
->dma_capture
.dma_size
= 4;
1311 pri_dai
->quirks
= quirks
;
1312 pri_dai
->variant_regs
= i2s_dai_data
->i2s_variant_regs
;
1314 if (quirks
& QUIRK_PRI_6CHAN
)
1315 pri_dai
->i2s_dai_drv
.playback
.channels_max
= 6;
1317 if (quirks
& QUIRK_SEC_DAI
) {
1318 sec_dai
= i2s_alloc_dai(pdev
, true);
1320 dev_err(&pdev
->dev
, "Unable to alloc I2S_sec\n");
1324 sec_dai
->lock
= &pri_dai
->spinlock
;
1325 sec_dai
->variant_regs
= pri_dai
->variant_regs
;
1326 sec_dai
->dma_playback
.dma_addr
= regs_base
+ I2STXDS
;
1327 sec_dai
->dma_playback
.ch_name
= "tx-sec";
1330 sec_dai
->dma_playback
.slave
= i2s_pdata
->dma_play_sec
;
1331 sec_dai
->filter
= i2s_pdata
->dma_filter
;
1334 sec_dai
->dma_playback
.dma_size
= 4;
1335 sec_dai
->addr
= pri_dai
->addr
;
1336 sec_dai
->clk
= pri_dai
->clk
;
1337 sec_dai
->quirks
= quirks
;
1338 sec_dai
->idma_playback
.dma_addr
= idma_addr
;
1339 sec_dai
->pri_dai
= pri_dai
;
1340 pri_dai
->sec_dai
= sec_dai
;
1343 if (i2s_pdata
&& i2s_pdata
->cfg_gpio
&& i2s_pdata
->cfg_gpio(pdev
)) {
1344 dev_err(&pdev
->dev
, "Unable to configure gpio\n");
1348 ret
= devm_snd_soc_register_component(&pri_dai
->pdev
->dev
,
1349 &samsung_i2s_component
,
1350 &pri_dai
->i2s_dai_drv
, 1);
1354 ret
= samsung_asoc_dma_platform_register(&pdev
->dev
, pri_dai
->filter
,
1359 pm_runtime_enable(&pdev
->dev
);
1361 ret
= i2s_register_clock_provider(pdev
);
1365 pm_runtime_disable(&pdev
->dev
);
1368 i2s_free_sec_dai(sec_dai
);
1372 static int samsung_i2s_remove(struct platform_device
*pdev
)
1374 struct i2s_dai
*i2s
, *other
;
1376 i2s
= dev_get_drvdata(&pdev
->dev
);
1377 other
= get_other_dai(i2s
);
1380 other
->pri_dai
= NULL
;
1381 other
->sec_dai
= NULL
;
1383 pm_runtime_disable(&pdev
->dev
);
1386 if (!is_secondary(i2s
)) {
1387 i2s_unregister_clock_provider(pdev
);
1388 clk_disable_unprepare(i2s
->clk
);
1391 i2s
->pri_dai
= NULL
;
1392 i2s
->sec_dai
= NULL
;
1397 static const struct samsung_i2s_variant_regs i2sv3_regs
= {
1411 static const struct samsung_i2s_variant_regs i2sv6_regs
= {
1425 static const struct samsung_i2s_variant_regs i2sv7_regs
= {
1439 static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs
= {
1453 static const struct samsung_i2s_dai_data i2sv3_dai_type
= {
1454 .dai_type
= TYPE_PRI
,
1455 .quirks
= QUIRK_NO_MUXPSR
,
1456 .i2s_variant_regs
= &i2sv3_regs
,
1459 static const struct samsung_i2s_dai_data i2sv5_dai_type
= {
1460 .dai_type
= TYPE_PRI
,
1461 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1462 QUIRK_SUPPORTS_IDMA
,
1463 .i2s_variant_regs
= &i2sv3_regs
,
1466 static const struct samsung_i2s_dai_data i2sv6_dai_type
= {
1467 .dai_type
= TYPE_PRI
,
1468 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1469 QUIRK_SUPPORTS_TDM
| QUIRK_SUPPORTS_IDMA
,
1470 .i2s_variant_regs
= &i2sv6_regs
,
1473 static const struct samsung_i2s_dai_data i2sv7_dai_type
= {
1474 .dai_type
= TYPE_PRI
,
1475 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1477 .i2s_variant_regs
= &i2sv7_regs
,
1480 static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1
= {
1481 .dai_type
= TYPE_PRI
,
1482 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_NEED_RSTCLR
,
1483 .i2s_variant_regs
= &i2sv5_i2s1_regs
,
1486 static const struct samsung_i2s_dai_data samsung_dai_type_sec
= {
1487 .dai_type
= TYPE_SEC
,
1490 static const struct platform_device_id samsung_i2s_driver_ids
[] = {
1492 .name
= "samsung-i2s",
1493 .driver_data
= (kernel_ulong_t
)&i2sv3_dai_type
,
1495 .name
= "samsung-i2s-sec",
1496 .driver_data
= (kernel_ulong_t
)&samsung_dai_type_sec
,
1500 MODULE_DEVICE_TABLE(platform
, samsung_i2s_driver_ids
);
1503 static const struct of_device_id exynos_i2s_match
[] = {
1505 .compatible
= "samsung,s3c6410-i2s",
1506 .data
= &i2sv3_dai_type
,
1508 .compatible
= "samsung,s5pv210-i2s",
1509 .data
= &i2sv5_dai_type
,
1511 .compatible
= "samsung,exynos5420-i2s",
1512 .data
= &i2sv6_dai_type
,
1514 .compatible
= "samsung,exynos7-i2s",
1515 .data
= &i2sv7_dai_type
,
1517 .compatible
= "samsung,exynos7-i2s1",
1518 .data
= &i2sv5_dai_type_i2s1
,
1522 MODULE_DEVICE_TABLE(of
, exynos_i2s_match
);
1525 static const struct dev_pm_ops samsung_i2s_pm
= {
1526 SET_RUNTIME_PM_OPS(i2s_runtime_suspend
,
1527 i2s_runtime_resume
, NULL
)
1530 static struct platform_driver samsung_i2s_driver
= {
1531 .probe
= samsung_i2s_probe
,
1532 .remove
= samsung_i2s_remove
,
1533 .id_table
= samsung_i2s_driver_ids
,
1535 .name
= "samsung-i2s",
1536 .of_match_table
= of_match_ptr(exynos_i2s_match
),
1537 .pm
= &samsung_i2s_pm
,
1541 module_platform_driver(samsung_i2s_driver
);
1543 /* Module information */
1544 MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
1545 MODULE_DESCRIPTION("Samsung I2S Interface");
1546 MODULE_ALIAS("platform:samsung-i2s");
1547 MODULE_LICENSE("GPL");