1 // SPDX-License-Identifier: GPL-2.0
3 // ALSA SoC Audio Layer - Samsung I2S Controller driver
5 // Copyright (c) 2010 Samsung Electronics Co. Ltd.
6 // Jaswinder Singh <jassisinghbrar@gmail.com>
8 #include <dt-bindings/sound/samsung-i2s.h>
9 #include <linux/delay.h>
10 #include <linux/slab.h>
11 #include <linux/clk.h>
12 #include <linux/clk-provider.h>
14 #include <linux/module.h>
16 #include <linux/pm_runtime.h>
18 #include <sound/soc.h>
19 #include <sound/pcm_params.h>
21 #include <linux/platform_data/asoc-s3c.h>
28 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
30 #define SAMSUNG_I2S_ID_PRIMARY 1
31 #define SAMSUNG_I2S_ID_SECONDARY 2
33 struct samsung_i2s_variant_regs
{
38 unsigned int rclksrc_off
;
40 unsigned int cdclkcon_off
;
42 unsigned int bfs_mask
;
43 unsigned int rfs_mask
;
44 unsigned int ftx0cnt_off
;
47 struct samsung_i2s_dai_data
{
49 unsigned int pcm_rates
;
50 const struct samsung_i2s_variant_regs
*i2s_variant_regs
;
51 void (*fixup_early
)(struct snd_pcm_substream
*substream
,
52 struct snd_soc_dai
*dai
);
53 void (*fixup_late
)(struct snd_pcm_substream
*substream
,
54 struct snd_soc_dai
*dai
);
58 /* Platform device for this DAI */
59 struct platform_device
*pdev
;
64 * Specifically requested RCLK, BCLK by machine driver.
65 * 0 indicates CPU driver is free to choose any value.
68 /* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */
69 struct i2s_dai
*pri_dai
;
70 /* Pointer to the Secondary_Fifo if it has one, NULL otherwise */
71 struct i2s_dai
*sec_dai
;
73 #define DAI_OPENED (1 << 0) /* DAI is opened */
74 #define DAI_MANAGER (1 << 1) /* DAI is the manager */
77 /* Driver for this DAI */
78 struct snd_soc_dai_driver
*drv
;
81 struct snd_dmaengine_dai_dma_data dma_playback
;
82 struct snd_dmaengine_dai_dma_data dma_capture
;
83 struct snd_dmaengine_dai_dma_data idma_playback
;
86 struct samsung_i2s_priv
*priv
;
89 struct samsung_i2s_priv
{
90 struct platform_device
*pdev
;
91 struct platform_device
*pdev_sec
;
93 /* Lock for cross interface checks */
96 /* CPU DAIs and their corresponding drivers */
98 struct snd_soc_dai_driver
*dai_drv
;
101 /* The I2S controller's core clock */
104 /* Clock for generating I2S signals */
107 /* Rate of RCLK source clock */
108 unsigned long rclk_srcrate
;
110 /* Cache of selected I2S registers for system suspend */
115 const struct samsung_i2s_variant_regs
*variant_regs
;
116 void (*fixup_early
)(struct snd_pcm_substream
*substream
,
117 struct snd_soc_dai
*dai
);
118 void (*fixup_late
)(struct snd_pcm_substream
*substream
,
119 struct snd_soc_dai
*dai
);
122 /* The clock provider's data */
123 struct clk
*clk_table
[3];
124 struct clk_onecell_data clk_data
;
126 /* Spinlock protecting member fields below */
129 /* Memory mapped SFR region */
132 /* A flag indicating the I2S slave mode operation */
136 /* Returns true if this is the 'overlay' stereo DAI */
137 static inline bool is_secondary(struct i2s_dai
*i2s
)
139 return i2s
->drv
->id
== SAMSUNG_I2S_ID_SECONDARY
;
142 /* If this interface of the controller is transmitting data */
143 static inline bool tx_active(struct i2s_dai
*i2s
)
150 active
= readl(i2s
->priv
->addr
+ I2SCON
);
152 if (is_secondary(i2s
))
153 active
&= CON_TXSDMA_ACTIVE
;
155 active
&= CON_TXDMA_ACTIVE
;
157 return active
? true : false;
160 /* Return pointer to the other DAI */
161 static inline struct i2s_dai
*get_other_dai(struct i2s_dai
*i2s
)
163 return i2s
->pri_dai
? : i2s
->sec_dai
;
166 /* If the other interface of the controller is transmitting data */
167 static inline bool other_tx_active(struct i2s_dai
*i2s
)
169 struct i2s_dai
*other
= get_other_dai(i2s
);
171 return tx_active(other
);
174 /* If any interface of the controller is transmitting data */
175 static inline bool any_tx_active(struct i2s_dai
*i2s
)
177 return tx_active(i2s
) || other_tx_active(i2s
);
180 /* If this interface of the controller is receiving data */
181 static inline bool rx_active(struct i2s_dai
*i2s
)
188 active
= readl(i2s
->priv
->addr
+ I2SCON
) & CON_RXDMA_ACTIVE
;
190 return active
? true : false;
193 /* If the other interface of the controller is receiving data */
194 static inline bool other_rx_active(struct i2s_dai
*i2s
)
196 struct i2s_dai
*other
= get_other_dai(i2s
);
198 return rx_active(other
);
201 /* If any interface of the controller is receiving data */
202 static inline bool any_rx_active(struct i2s_dai
*i2s
)
204 return rx_active(i2s
) || other_rx_active(i2s
);
207 /* If the other DAI is transmitting or receiving data */
208 static inline bool other_active(struct i2s_dai
*i2s
)
210 return other_rx_active(i2s
) || other_tx_active(i2s
);
213 /* If this DAI is transmitting or receiving data */
214 static inline bool this_active(struct i2s_dai
*i2s
)
216 return tx_active(i2s
) || rx_active(i2s
);
219 /* If the controller is active anyway */
220 static inline bool any_active(struct i2s_dai
*i2s
)
222 return this_active(i2s
) || other_active(i2s
);
225 static inline struct i2s_dai
*to_info(struct snd_soc_dai
*dai
)
227 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
229 return &priv
->dai
[dai
->id
- 1];
232 static inline bool is_opened(struct i2s_dai
*i2s
)
234 if (i2s
&& (i2s
->mode
& DAI_OPENED
))
240 static inline bool is_manager(struct i2s_dai
*i2s
)
242 if (is_opened(i2s
) && (i2s
->mode
& DAI_MANAGER
))
248 /* Read RCLK of I2S (in multiples of LRCLK) */
249 static inline unsigned get_rfs(struct i2s_dai
*i2s
)
251 struct samsung_i2s_priv
*priv
= i2s
->priv
;
254 rfs
= readl(priv
->addr
+ I2SMOD
) >> priv
->variant_regs
->rfs_off
;
255 rfs
&= priv
->variant_regs
->rfs_mask
;
269 /* Write RCLK of I2S (in multiples of LRCLK) */
270 static inline void set_rfs(struct i2s_dai
*i2s
, unsigned rfs
)
272 struct samsung_i2s_priv
*priv
= i2s
->priv
;
273 u32 mod
= readl(priv
->addr
+ I2SMOD
);
274 int rfs_shift
= priv
->variant_regs
->rfs_off
;
276 mod
&= ~(priv
->variant_regs
->rfs_mask
<< rfs_shift
);
280 mod
|= (EXYNOS7_MOD_RCLK_192FS
<< rfs_shift
);
283 mod
|= (EXYNOS7_MOD_RCLK_96FS
<< rfs_shift
);
286 mod
|= (EXYNOS7_MOD_RCLK_128FS
<< rfs_shift
);
289 mod
|= (EXYNOS7_MOD_RCLK_64FS
<< rfs_shift
);
292 mod
|= (MOD_RCLK_768FS
<< rfs_shift
);
295 mod
|= (MOD_RCLK_512FS
<< rfs_shift
);
298 mod
|= (MOD_RCLK_384FS
<< rfs_shift
);
301 mod
|= (MOD_RCLK_256FS
<< rfs_shift
);
305 writel(mod
, priv
->addr
+ I2SMOD
);
308 /* Read bit-clock of I2S (in multiples of LRCLK) */
309 static inline unsigned get_bfs(struct i2s_dai
*i2s
)
311 struct samsung_i2s_priv
*priv
= i2s
->priv
;
314 bfs
= readl(priv
->addr
+ I2SMOD
) >> priv
->variant_regs
->bfs_off
;
315 bfs
&= priv
->variant_regs
->bfs_mask
;
330 /* Write bit-clock of I2S (in multiples of LRCLK) */
331 static inline void set_bfs(struct i2s_dai
*i2s
, unsigned bfs
)
333 struct samsung_i2s_priv
*priv
= i2s
->priv
;
334 u32 mod
= readl(priv
->addr
+ I2SMOD
);
335 int tdm
= priv
->quirks
& QUIRK_SUPPORTS_TDM
;
336 int bfs_shift
= priv
->variant_regs
->bfs_off
;
338 /* Non-TDM I2S controllers do not support BCLK > 48 * FS */
339 if (!tdm
&& bfs
> 48) {
340 dev_err(&i2s
->pdev
->dev
, "Unsupported BCLK divider\n");
344 mod
&= ~(priv
->variant_regs
->bfs_mask
<< bfs_shift
);
348 mod
|= (MOD_BCLK_48FS
<< bfs_shift
);
351 mod
|= (MOD_BCLK_32FS
<< bfs_shift
);
354 mod
|= (MOD_BCLK_24FS
<< bfs_shift
);
357 mod
|= (MOD_BCLK_16FS
<< bfs_shift
);
360 mod
|= (EXYNOS5420_MOD_BCLK_64FS
<< bfs_shift
);
363 mod
|= (EXYNOS5420_MOD_BCLK_96FS
<< bfs_shift
);
366 mod
|= (EXYNOS5420_MOD_BCLK_128FS
<< bfs_shift
);
369 mod
|= (EXYNOS5420_MOD_BCLK_192FS
<< bfs_shift
);
372 mod
|= (EXYNOS5420_MOD_BCLK_256FS
<< bfs_shift
);
375 dev_err(&i2s
->pdev
->dev
, "Wrong BCLK Divider!\n");
379 writel(mod
, priv
->addr
+ I2SMOD
);
383 static inline int get_blc(struct i2s_dai
*i2s
)
385 int blc
= readl(i2s
->priv
->addr
+ I2SMOD
);
387 blc
= (blc
>> 13) & 0x3;
396 /* TX channel control */
397 static void i2s_txctrl(struct i2s_dai
*i2s
, int on
)
399 struct samsung_i2s_priv
*priv
= i2s
->priv
;
400 void __iomem
*addr
= priv
->addr
;
401 int txr_off
= priv
->variant_regs
->txr_off
;
402 u32 con
= readl(addr
+ I2SCON
);
403 u32 mod
= readl(addr
+ I2SMOD
) & ~(3 << txr_off
);
407 con
&= ~CON_TXCH_PAUSE
;
409 if (is_secondary(i2s
)) {
410 con
|= CON_TXSDMA_ACTIVE
;
411 con
&= ~CON_TXSDMA_PAUSE
;
413 con
|= CON_TXDMA_ACTIVE
;
414 con
&= ~CON_TXDMA_PAUSE
;
417 if (any_rx_active(i2s
))
422 if (is_secondary(i2s
)) {
423 con
|= CON_TXSDMA_PAUSE
;
424 con
&= ~CON_TXSDMA_ACTIVE
;
426 con
|= CON_TXDMA_PAUSE
;
427 con
&= ~CON_TXDMA_ACTIVE
;
430 if (other_tx_active(i2s
)) {
431 writel(con
, addr
+ I2SCON
);
435 con
|= CON_TXCH_PAUSE
;
437 if (any_rx_active(i2s
))
443 writel(mod
, addr
+ I2SMOD
);
444 writel(con
, addr
+ I2SCON
);
447 /* RX Channel Control */
448 static void i2s_rxctrl(struct i2s_dai
*i2s
, int on
)
450 struct samsung_i2s_priv
*priv
= i2s
->priv
;
451 void __iomem
*addr
= priv
->addr
;
452 int txr_off
= priv
->variant_regs
->txr_off
;
453 u32 con
= readl(addr
+ I2SCON
);
454 u32 mod
= readl(addr
+ I2SMOD
) & ~(3 << txr_off
);
457 con
|= CON_RXDMA_ACTIVE
| CON_ACTIVE
;
458 con
&= ~(CON_RXDMA_PAUSE
| CON_RXCH_PAUSE
);
460 if (any_tx_active(i2s
))
465 con
|= CON_RXDMA_PAUSE
| CON_RXCH_PAUSE
;
466 con
&= ~CON_RXDMA_ACTIVE
;
468 if (any_tx_active(i2s
))
474 writel(mod
, addr
+ I2SMOD
);
475 writel(con
, addr
+ I2SCON
);
478 /* Flush FIFO of an interface */
479 static inline void i2s_fifo(struct i2s_dai
*i2s
, u32 flush
)
487 if (is_secondary(i2s
))
488 fic
= i2s
->priv
->addr
+ I2SFICS
;
490 fic
= i2s
->priv
->addr
+ I2SFIC
;
493 writel(readl(fic
) | flush
, fic
);
496 val
= msecs_to_loops(1) / 1000; /* 1 usec */
500 writel(readl(fic
) & ~flush
, fic
);
503 static int i2s_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
, unsigned int rfs
,
506 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
507 struct i2s_dai
*i2s
= to_info(dai
);
508 struct i2s_dai
*other
= get_other_dai(i2s
);
509 const struct samsung_i2s_variant_regs
*i2s_regs
= priv
->variant_regs
;
510 unsigned int cdcon_mask
= 1 << i2s_regs
->cdclkcon_off
;
511 unsigned int rsrc_mask
= 1 << i2s_regs
->rclksrc_off
;
512 u32 mod
, mask
, val
= 0;
516 pm_runtime_get_sync(dai
->dev
);
518 spin_lock_irqsave(&priv
->lock
, flags
);
519 mod
= readl(priv
->addr
+ I2SMOD
);
520 spin_unlock_irqrestore(&priv
->lock
, flags
);
523 case SAMSUNG_I2S_OPCLK
:
524 mask
= MOD_OPCLK_MASK
;
525 val
= (dir
<< MOD_OPCLK_SHIFT
) & MOD_OPCLK_MASK
;
527 case SAMSUNG_I2S_CDCLK
:
528 mask
= 1 << i2s_regs
->cdclkcon_off
;
529 /* Shouldn't matter in GATING(CLOCK_IN) mode */
530 if (dir
== SND_SOC_CLOCK_IN
)
533 if ((rfs
&& other
&& other
->rfs
&& (other
->rfs
!= rfs
)) ||
535 (((dir
== SND_SOC_CLOCK_IN
)
536 && !(mod
& cdcon_mask
)) ||
537 ((dir
== SND_SOC_CLOCK_OUT
)
538 && (mod
& cdcon_mask
))))) {
539 dev_err(&i2s
->pdev
->dev
,
540 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
545 if (dir
== SND_SOC_CLOCK_IN
)
546 val
= 1 << i2s_regs
->cdclkcon_off
;
551 case SAMSUNG_I2S_RCLKSRC_0
: /* clock corrsponding to IISMOD[10] := 0 */
552 case SAMSUNG_I2S_RCLKSRC_1
: /* clock corrsponding to IISMOD[10] := 1 */
553 mask
= 1 << i2s_regs
->rclksrc_off
;
555 if ((priv
->quirks
& QUIRK_NO_MUXPSR
)
556 || (clk_id
== SAMSUNG_I2S_RCLKSRC_0
))
561 if (!any_active(i2s
)) {
562 if (priv
->op_clk
&& !IS_ERR(priv
->op_clk
)) {
563 if ((clk_id
&& !(mod
& rsrc_mask
)) ||
564 (!clk_id
&& (mod
& rsrc_mask
))) {
565 clk_disable_unprepare(priv
->op_clk
);
566 clk_put(priv
->op_clk
);
569 clk_get_rate(priv
->op_clk
);
575 priv
->op_clk
= clk_get(&i2s
->pdev
->dev
,
578 priv
->op_clk
= clk_get(&i2s
->pdev
->dev
,
581 if (WARN_ON(IS_ERR(priv
->op_clk
))) {
582 ret
= PTR_ERR(priv
->op_clk
);
587 ret
= clk_prepare_enable(priv
->op_clk
);
589 clk_put(priv
->op_clk
);
593 priv
->rclk_srcrate
= clk_get_rate(priv
->op_clk
);
595 } else if ((!clk_id
&& (mod
& rsrc_mask
))
596 || (clk_id
&& !(mod
& rsrc_mask
))) {
597 dev_err(&i2s
->pdev
->dev
,
598 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
602 /* Call can't be on the active DAI */
607 val
= 1 << i2s_regs
->rclksrc_off
;
610 dev_err(&i2s
->pdev
->dev
, "We don't serve that!\n");
615 spin_lock_irqsave(&priv
->lock
, flags
);
616 mod
= readl(priv
->addr
+ I2SMOD
);
617 mod
= (mod
& ~mask
) | val
;
618 writel(mod
, priv
->addr
+ I2SMOD
);
619 spin_unlock_irqrestore(&priv
->lock
, flags
);
621 pm_runtime_put(dai
->dev
);
625 pm_runtime_put(dai
->dev
);
629 static int i2s_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
631 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
632 struct i2s_dai
*i2s
= to_info(dai
);
633 int lrp_shift
, sdf_shift
, sdf_mask
, lrp_rlow
, mod_slave
;
637 lrp_shift
= priv
->variant_regs
->lrp_off
;
638 sdf_shift
= priv
->variant_regs
->sdf_off
;
639 mod_slave
= 1 << priv
->variant_regs
->mss_off
;
641 sdf_mask
= MOD_SDF_MASK
<< sdf_shift
;
642 lrp_rlow
= MOD_LR_RLOW
<< lrp_shift
;
644 /* Format is priority */
645 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
646 case SND_SOC_DAIFMT_RIGHT_J
:
648 tmp
|= (MOD_SDF_MSB
<< sdf_shift
);
650 case SND_SOC_DAIFMT_LEFT_J
:
652 tmp
|= (MOD_SDF_LSB
<< sdf_shift
);
654 case SND_SOC_DAIFMT_I2S
:
655 tmp
|= (MOD_SDF_IIS
<< sdf_shift
);
658 dev_err(&i2s
->pdev
->dev
, "Format not supported\n");
663 * INV flag is relative to the FORMAT flag - if set it simply
664 * flips the polarity specified by the Standard
666 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
667 case SND_SOC_DAIFMT_NB_NF
:
669 case SND_SOC_DAIFMT_NB_IF
:
676 dev_err(&i2s
->pdev
->dev
, "Polarity not supported\n");
680 switch (fmt
& SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK
) {
681 case SND_SOC_DAIFMT_BC_FC
:
684 case SND_SOC_DAIFMT_BP_FP
:
686 * Set default source clock in Master mode, only when the
687 * CLK_I2S_RCLK_SRC clock is not exposed so we ensure any
688 * clock configuration assigned in DT is not overwritten.
690 if (priv
->rclk_srcrate
== 0 && priv
->clk_data
.clks
== NULL
)
691 i2s_set_sysclk(dai
, SAMSUNG_I2S_RCLKSRC_0
,
692 0, SND_SOC_CLOCK_IN
);
695 dev_err(&i2s
->pdev
->dev
, "master/slave format not supported\n");
699 pm_runtime_get_sync(dai
->dev
);
700 spin_lock_irqsave(&priv
->lock
, flags
);
701 mod
= readl(priv
->addr
+ I2SMOD
);
703 * Don't change the I2S mode if any controller is active on this
706 if (any_active(i2s
) &&
707 ((mod
& (sdf_mask
| lrp_rlow
| mod_slave
)) != tmp
)) {
708 spin_unlock_irqrestore(&priv
->lock
, flags
);
709 pm_runtime_put(dai
->dev
);
710 dev_err(&i2s
->pdev
->dev
,
711 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
715 mod
&= ~(sdf_mask
| lrp_rlow
| mod_slave
);
717 writel(mod
, priv
->addr
+ I2SMOD
);
718 priv
->slave_mode
= (mod
& mod_slave
);
719 spin_unlock_irqrestore(&priv
->lock
, flags
);
720 pm_runtime_put(dai
->dev
);
725 static int i2s_hw_params(struct snd_pcm_substream
*substream
,
726 struct snd_pcm_hw_params
*params
, struct snd_soc_dai
*dai
)
728 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
729 struct i2s_dai
*i2s
= to_info(dai
);
730 u32 mod
, mask
= 0, val
= 0;
734 WARN_ON(!pm_runtime_active(dai
->dev
));
736 if (!is_secondary(i2s
))
737 mask
|= (MOD_DC2_EN
| MOD_DC1_EN
);
739 switch (params_channels(params
)) {
747 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
748 i2s
->dma_playback
.addr_width
= 4;
750 i2s
->dma_capture
.addr_width
= 4;
753 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
754 i2s
->dma_playback
.addr_width
= 2;
756 i2s
->dma_capture
.addr_width
= 2;
760 dev_err(&i2s
->pdev
->dev
, "%d channels not supported\n",
761 params_channels(params
));
765 if (is_secondary(i2s
))
766 mask
|= MOD_BLCS_MASK
;
768 mask
|= MOD_BLCP_MASK
;
771 mask
|= MOD_BLC_MASK
;
773 switch (params_width(params
)) {
775 if (is_secondary(i2s
))
776 val
|= MOD_BLCS_8BIT
;
778 val
|= MOD_BLCP_8BIT
;
783 if (is_secondary(i2s
))
784 val
|= MOD_BLCS_16BIT
;
786 val
|= MOD_BLCP_16BIT
;
788 val
|= MOD_BLC_16BIT
;
791 if (is_secondary(i2s
))
792 val
|= MOD_BLCS_24BIT
;
794 val
|= MOD_BLCP_24BIT
;
796 val
|= MOD_BLC_24BIT
;
799 dev_err(&i2s
->pdev
->dev
, "Format(%d) not supported\n",
800 params_format(params
));
804 spin_lock_irqsave(&priv
->lock
, flags
);
805 mod
= readl(priv
->addr
+ I2SMOD
);
806 mod
= (mod
& ~mask
) | val
;
807 writel(mod
, priv
->addr
+ I2SMOD
);
808 spin_unlock_irqrestore(&priv
->lock
, flags
);
810 snd_soc_dai_init_dma_data(dai
, &i2s
->dma_playback
, &i2s
->dma_capture
);
812 i2s
->frmclk
= params_rate(params
);
814 rclksrc
= priv
->clk_table
[CLK_I2S_RCLK_SRC
];
815 if (rclksrc
&& !IS_ERR(rclksrc
))
816 priv
->rclk_srcrate
= clk_get_rate(rclksrc
);
821 /* We set constraints on the substream according to the version of I2S */
822 static int i2s_startup(struct snd_pcm_substream
*substream
,
823 struct snd_soc_dai
*dai
)
825 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
826 struct i2s_dai
*i2s
= to_info(dai
);
827 struct i2s_dai
*other
= get_other_dai(i2s
);
830 pm_runtime_get_sync(dai
->dev
);
832 spin_lock_irqsave(&priv
->pcm_lock
, flags
);
834 i2s
->mode
|= DAI_OPENED
;
836 if (is_manager(other
))
837 i2s
->mode
&= ~DAI_MANAGER
;
839 i2s
->mode
|= DAI_MANAGER
;
841 if (!any_active(i2s
) && (priv
->quirks
& QUIRK_NEED_RSTCLR
))
842 writel(CON_RSTCLR
, i2s
->priv
->addr
+ I2SCON
);
844 spin_unlock_irqrestore(&priv
->pcm_lock
, flags
);
849 static void i2s_shutdown(struct snd_pcm_substream
*substream
,
850 struct snd_soc_dai
*dai
)
852 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
853 struct i2s_dai
*i2s
= to_info(dai
);
854 struct i2s_dai
*other
= get_other_dai(i2s
);
857 spin_lock_irqsave(&priv
->pcm_lock
, flags
);
859 i2s
->mode
&= ~DAI_OPENED
;
860 i2s
->mode
&= ~DAI_MANAGER
;
862 if (is_opened(other
))
863 other
->mode
|= DAI_MANAGER
;
865 /* Reset any constraint on RFS and BFS */
869 spin_unlock_irqrestore(&priv
->pcm_lock
, flags
);
871 pm_runtime_put(dai
->dev
);
874 static int config_setup(struct i2s_dai
*i2s
)
876 struct samsung_i2s_priv
*priv
= i2s
->priv
;
877 struct i2s_dai
*other
= get_other_dai(i2s
);
878 unsigned rfs
, bfs
, blc
;
888 /* Select least possible multiple(2) if no constraint set */
897 if ((rfs
== 256 || rfs
== 512) && (blc
== 24)) {
898 dev_err(&i2s
->pdev
->dev
,
899 "%d-RFS not supported for 24-blc\n", rfs
);
904 if (bfs
== 16 || bfs
== 32)
910 /* If already setup and running */
911 if (any_active(i2s
) && (get_rfs(i2s
) != rfs
|| get_bfs(i2s
) != bfs
)) {
912 dev_err(&i2s
->pdev
->dev
,
913 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
920 /* Don't bother with PSR in Slave mode */
921 if (priv
->slave_mode
)
924 if (!(priv
->quirks
& QUIRK_NO_MUXPSR
)) {
925 psr
= priv
->rclk_srcrate
/ i2s
->frmclk
/ rfs
;
926 writel(((psr
- 1) << 8) | PSR_PSREN
, priv
->addr
+ I2SPSR
);
927 dev_dbg(&i2s
->pdev
->dev
,
928 "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
929 priv
->rclk_srcrate
, psr
, rfs
, bfs
);
935 static int i2s_trigger(struct snd_pcm_substream
*substream
,
936 int cmd
, struct snd_soc_dai
*dai
)
938 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
939 int capture
= (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
);
940 struct snd_soc_pcm_runtime
*rtd
= snd_soc_substream_to_rtd(substream
);
941 struct i2s_dai
*i2s
= to_info(snd_soc_rtd_to_cpu(rtd
, 0));
945 case SNDRV_PCM_TRIGGER_START
:
946 case SNDRV_PCM_TRIGGER_RESUME
:
947 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
948 pm_runtime_get_sync(dai
->dev
);
950 if (priv
->fixup_early
)
951 priv
->fixup_early(substream
, dai
);
953 spin_lock_irqsave(&priv
->lock
, flags
);
955 if (config_setup(i2s
)) {
956 spin_unlock_irqrestore(&priv
->lock
, flags
);
960 if (priv
->fixup_late
)
961 priv
->fixup_late(substream
, dai
);
968 spin_unlock_irqrestore(&priv
->lock
, flags
);
970 case SNDRV_PCM_TRIGGER_STOP
:
971 case SNDRV_PCM_TRIGGER_SUSPEND
:
972 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
973 spin_lock_irqsave(&priv
->lock
, flags
);
977 i2s_fifo(i2s
, FIC_RXFLUSH
);
980 i2s_fifo(i2s
, FIC_TXFLUSH
);
983 spin_unlock_irqrestore(&priv
->lock
, flags
);
984 pm_runtime_put(dai
->dev
);
991 static int i2s_set_clkdiv(struct snd_soc_dai
*dai
,
994 struct i2s_dai
*i2s
= to_info(dai
);
995 struct i2s_dai
*other
= get_other_dai(i2s
);
998 case SAMSUNG_I2S_DIV_BCLK
:
999 pm_runtime_get_sync(dai
->dev
);
1000 if ((any_active(i2s
) && div
&& (get_bfs(i2s
) != div
))
1001 || (other
&& other
->bfs
&& (other
->bfs
!= div
))) {
1002 pm_runtime_put(dai
->dev
);
1003 dev_err(&i2s
->pdev
->dev
,
1004 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
1008 pm_runtime_put(dai
->dev
);
1011 dev_err(&i2s
->pdev
->dev
,
1012 "Invalid clock divider(%d)\n", div_id
);
1019 static snd_pcm_sframes_t
1020 i2s_delay(struct snd_pcm_substream
*substream
, struct snd_soc_dai
*dai
)
1022 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
1023 struct i2s_dai
*i2s
= to_info(dai
);
1024 u32 reg
= readl(priv
->addr
+ I2SFIC
);
1025 snd_pcm_sframes_t delay
;
1027 WARN_ON(!pm_runtime_active(dai
->dev
));
1029 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
1030 delay
= FIC_RXCOUNT(reg
);
1031 else if (is_secondary(i2s
))
1032 delay
= FICS_TXCOUNT(readl(priv
->addr
+ I2SFICS
));
1034 delay
= (reg
>> priv
->variant_regs
->ftx0cnt_off
) & 0x7f;
1040 static int i2s_suspend(struct snd_soc_component
*component
)
1042 return pm_runtime_force_suspend(component
->dev
);
1045 static int i2s_resume(struct snd_soc_component
*component
)
1047 return pm_runtime_force_resume(component
->dev
);
1050 #define i2s_suspend NULL
1051 #define i2s_resume NULL
1054 static int samsung_i2s_dai_probe(struct snd_soc_dai
*dai
)
1056 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
1057 struct i2s_dai
*i2s
= to_info(dai
);
1058 struct i2s_dai
*other
= get_other_dai(i2s
);
1059 unsigned long flags
;
1061 pm_runtime_get_sync(dai
->dev
);
1063 if (is_secondary(i2s
)) {
1064 /* If this is probe on the secondary DAI */
1065 snd_soc_dai_init_dma_data(dai
, &i2s
->dma_playback
, NULL
);
1067 snd_soc_dai_init_dma_data(dai
, &i2s
->dma_playback
,
1070 if (priv
->quirks
& QUIRK_NEED_RSTCLR
)
1071 writel(CON_RSTCLR
, priv
->addr
+ I2SCON
);
1073 if (priv
->quirks
& QUIRK_SUPPORTS_IDMA
)
1074 idma_reg_addr_init(priv
->addr
,
1075 other
->idma_playback
.addr
);
1078 /* Reset any constraint on RFS and BFS */
1082 spin_lock_irqsave(&priv
->lock
, flags
);
1085 i2s_fifo(i2s
, FIC_TXFLUSH
);
1086 i2s_fifo(other
, FIC_TXFLUSH
);
1087 i2s_fifo(i2s
, FIC_RXFLUSH
);
1088 spin_unlock_irqrestore(&priv
->lock
, flags
);
1090 /* Gate CDCLK by default */
1091 if (!is_opened(other
))
1092 i2s_set_sysclk(dai
, SAMSUNG_I2S_CDCLK
,
1093 0, SND_SOC_CLOCK_IN
);
1094 pm_runtime_put(dai
->dev
);
1099 static int samsung_i2s_dai_remove(struct snd_soc_dai
*dai
)
1101 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
1102 struct i2s_dai
*i2s
= to_info(dai
);
1103 unsigned long flags
;
1105 pm_runtime_get_sync(dai
->dev
);
1107 if (!is_secondary(i2s
)) {
1108 if (priv
->quirks
& QUIRK_NEED_RSTCLR
) {
1109 spin_lock_irqsave(&priv
->lock
, flags
);
1110 writel(0, priv
->addr
+ I2SCON
);
1111 spin_unlock_irqrestore(&priv
->lock
, flags
);
1115 pm_runtime_put(dai
->dev
);
1120 static const struct snd_soc_dai_ops samsung_i2s_dai_ops
= {
1121 .probe
= samsung_i2s_dai_probe
,
1122 .remove
= samsung_i2s_dai_remove
,
1123 .trigger
= i2s_trigger
,
1124 .hw_params
= i2s_hw_params
,
1125 .set_fmt
= i2s_set_fmt
,
1126 .set_clkdiv
= i2s_set_clkdiv
,
1127 .set_sysclk
= i2s_set_sysclk
,
1128 .startup
= i2s_startup
,
1129 .shutdown
= i2s_shutdown
,
1133 static const struct snd_soc_dapm_widget samsung_i2s_widgets
[] = {
1135 SND_SOC_DAPM_AIF_OUT("Mixer DAI TX", NULL
, 0, SND_SOC_NOPM
, 0, 0),
1136 SND_SOC_DAPM_AIF_IN("Mixer DAI RX", NULL
, 0, SND_SOC_NOPM
, 0, 0),
1138 /* Playback Mixer */
1139 SND_SOC_DAPM_MIXER("Playback Mixer", SND_SOC_NOPM
, 0, 0, NULL
, 0),
1142 static const struct snd_soc_dapm_route samsung_i2s_dapm_routes
[] = {
1143 { "Playback Mixer", NULL
, "Primary Playback" },
1144 { "Playback Mixer", NULL
, "Secondary Playback" },
1146 { "Mixer DAI TX", NULL
, "Playback Mixer" },
1147 { "Primary Capture", NULL
, "Mixer DAI RX" },
1150 static const struct snd_soc_component_driver samsung_i2s_component
= {
1151 .name
= "samsung-i2s",
1153 .dapm_widgets
= samsung_i2s_widgets
,
1154 .num_dapm_widgets
= ARRAY_SIZE(samsung_i2s_widgets
),
1156 .dapm_routes
= samsung_i2s_dapm_routes
,
1157 .num_dapm_routes
= ARRAY_SIZE(samsung_i2s_dapm_routes
),
1159 .suspend
= i2s_suspend
,
1160 .resume
= i2s_resume
,
1162 .legacy_dai_naming
= 1,
1165 #define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \
1166 SNDRV_PCM_FMTBIT_S24_LE)
1168 static int i2s_alloc_dais(struct samsung_i2s_priv
*priv
,
1169 const struct samsung_i2s_dai_data
*i2s_dai_data
,
1172 static const char *dai_names
[] = { "samsung-i2s", "samsung-i2s-sec" };
1173 static const char *stream_names
[] = { "Primary Playback",
1174 "Secondary Playback" };
1175 struct snd_soc_dai_driver
*dai_drv
;
1178 priv
->dai
= devm_kcalloc(&priv
->pdev
->dev
, num_dais
,
1179 sizeof(struct i2s_dai
), GFP_KERNEL
);
1183 priv
->dai_drv
= devm_kcalloc(&priv
->pdev
->dev
, num_dais
,
1184 sizeof(*dai_drv
), GFP_KERNEL
);
1188 for (i
= 0; i
< num_dais
; i
++) {
1189 dai_drv
= &priv
->dai_drv
[i
];
1191 dai_drv
->symmetric_rate
= 1;
1192 dai_drv
->ops
= &samsung_i2s_dai_ops
;
1194 dai_drv
->playback
.channels_min
= 1;
1195 dai_drv
->playback
.channels_max
= 2;
1196 dai_drv
->playback
.rates
= i2s_dai_data
->pcm_rates
;
1197 dai_drv
->playback
.formats
= SAMSUNG_I2S_FMTS
;
1198 dai_drv
->playback
.stream_name
= stream_names
[i
];
1200 dai_drv
->id
= i
+ 1;
1201 dai_drv
->name
= dai_names
[i
];
1203 priv
->dai
[i
].drv
= &priv
->dai_drv
[i
];
1204 priv
->dai
[i
].pdev
= priv
->pdev
;
1207 /* Initialize capture only for the primary DAI */
1208 dai_drv
= &priv
->dai_drv
[SAMSUNG_I2S_ID_PRIMARY
- 1];
1210 dai_drv
->capture
.channels_min
= 1;
1211 dai_drv
->capture
.channels_max
= 2;
1212 dai_drv
->capture
.rates
= i2s_dai_data
->pcm_rates
;
1213 dai_drv
->capture
.formats
= SAMSUNG_I2S_FMTS
;
1214 dai_drv
->capture
.stream_name
= "Primary Capture";
1220 static int i2s_runtime_suspend(struct device
*dev
)
1222 struct samsung_i2s_priv
*priv
= dev_get_drvdata(dev
);
1224 priv
->suspend_i2smod
= readl(priv
->addr
+ I2SMOD
);
1225 priv
->suspend_i2scon
= readl(priv
->addr
+ I2SCON
);
1226 priv
->suspend_i2spsr
= readl(priv
->addr
+ I2SPSR
);
1228 clk_disable_unprepare(priv
->op_clk
);
1229 clk_disable_unprepare(priv
->clk
);
1234 static int i2s_runtime_resume(struct device
*dev
)
1236 struct samsung_i2s_priv
*priv
= dev_get_drvdata(dev
);
1239 ret
= clk_prepare_enable(priv
->clk
);
1244 ret
= clk_prepare_enable(priv
->op_clk
);
1246 clk_disable_unprepare(priv
->clk
);
1251 writel(priv
->suspend_i2scon
, priv
->addr
+ I2SCON
);
1252 writel(priv
->suspend_i2smod
, priv
->addr
+ I2SMOD
);
1253 writel(priv
->suspend_i2spsr
, priv
->addr
+ I2SPSR
);
1257 #endif /* CONFIG_PM */
1259 static void i2s_unregister_clocks(struct samsung_i2s_priv
*priv
)
1263 for (i
= 0; i
< priv
->clk_data
.clk_num
; i
++) {
1264 if (!IS_ERR(priv
->clk_table
[i
]))
1265 clk_unregister(priv
->clk_table
[i
]);
1269 static void i2s_unregister_clock_provider(struct samsung_i2s_priv
*priv
)
1271 of_clk_del_provider(priv
->pdev
->dev
.of_node
);
1272 i2s_unregister_clocks(priv
);
1276 static int i2s_register_clock_provider(struct samsung_i2s_priv
*priv
)
1279 const char * const i2s_clk_desc
[] = { "cdclk", "rclk_src", "prescaler" };
1280 const char *clk_name
[2] = { "i2s_opclk0", "i2s_opclk1" };
1281 const char *p_names
[2] = { NULL
};
1282 struct device
*dev
= &priv
->pdev
->dev
;
1283 const struct samsung_i2s_variant_regs
*reg_info
= priv
->variant_regs
;
1284 const char *i2s_clk_name
[ARRAY_SIZE(i2s_clk_desc
)];
1285 struct clk
*rclksrc
;
1288 /* Register the clock provider only if it's expected in the DTB */
1289 if (!of_property_present(dev
->of_node
, "#clock-cells"))
1292 /* Get the RCLKSRC mux clock parent clock names */
1293 for (i
= 0; i
< ARRAY_SIZE(p_names
); i
++) {
1294 rclksrc
= clk_get(dev
, clk_name
[i
]);
1295 if (IS_ERR(rclksrc
))
1297 p_names
[i
] = __clk_get_name(rclksrc
);
1301 for (i
= 0; i
< ARRAY_SIZE(i2s_clk_desc
); i
++) {
1302 i2s_clk_name
[i
] = devm_kasprintf(dev
, GFP_KERNEL
, "%s_%s",
1303 dev_name(dev
), i2s_clk_desc
[i
]);
1304 if (!i2s_clk_name
[i
])
1308 if (!(priv
->quirks
& QUIRK_NO_MUXPSR
)) {
1309 /* Activate the prescaler */
1310 u32 val
= readl(priv
->addr
+ I2SPSR
);
1311 writel(val
| PSR_PSREN
, priv
->addr
+ I2SPSR
);
1313 priv
->clk_table
[CLK_I2S_RCLK_SRC
] = clk_register_mux(dev
,
1314 i2s_clk_name
[CLK_I2S_RCLK_SRC
], p_names
,
1315 ARRAY_SIZE(p_names
),
1316 CLK_SET_RATE_NO_REPARENT
| CLK_SET_RATE_PARENT
,
1317 priv
->addr
+ I2SMOD
, reg_info
->rclksrc_off
,
1320 priv
->clk_table
[CLK_I2S_RCLK_PSR
] = clk_register_divider(dev
,
1321 i2s_clk_name
[CLK_I2S_RCLK_PSR
],
1322 i2s_clk_name
[CLK_I2S_RCLK_SRC
],
1323 CLK_SET_RATE_PARENT
,
1324 priv
->addr
+ I2SPSR
, 8, 6, 0, &priv
->lock
);
1326 p_names
[0] = i2s_clk_name
[CLK_I2S_RCLK_PSR
];
1327 priv
->clk_data
.clk_num
= 2;
1330 priv
->clk_table
[CLK_I2S_CDCLK
] = clk_register_gate(dev
,
1331 i2s_clk_name
[CLK_I2S_CDCLK
], p_names
[0],
1332 CLK_SET_RATE_PARENT
,
1333 priv
->addr
+ I2SMOD
, reg_info
->cdclkcon_off
,
1334 CLK_GATE_SET_TO_DISABLE
, &priv
->lock
);
1336 priv
->clk_data
.clk_num
+= 1;
1337 priv
->clk_data
.clks
= priv
->clk_table
;
1339 ret
= of_clk_add_provider(dev
->of_node
, of_clk_src_onecell_get
,
1342 dev_err(dev
, "failed to add clock provider: %d\n", ret
);
1343 i2s_unregister_clocks(priv
);
1349 /* Create platform device for the secondary PCM */
1350 static int i2s_create_secondary_device(struct samsung_i2s_priv
*priv
)
1352 struct platform_device
*pdev_sec
;
1353 const char *devname
;
1356 devname
= devm_kasprintf(&priv
->pdev
->dev
, GFP_KERNEL
, "%s-sec",
1357 dev_name(&priv
->pdev
->dev
));
1361 pdev_sec
= platform_device_alloc(devname
, -1);
1365 pdev_sec
->driver_override
= kstrdup("samsung-i2s", GFP_KERNEL
);
1366 if (!pdev_sec
->driver_override
) {
1367 platform_device_put(pdev_sec
);
1371 ret
= platform_device_add(pdev_sec
);
1373 platform_device_put(pdev_sec
);
1377 ret
= device_attach(&pdev_sec
->dev
);
1379 platform_device_unregister(priv
->pdev_sec
);
1380 dev_info(&pdev_sec
->dev
, "device_attach() failed\n");
1384 priv
->pdev_sec
= pdev_sec
;
1389 static void i2s_delete_secondary_device(struct samsung_i2s_priv
*priv
)
1391 platform_device_unregister(priv
->pdev_sec
);
1392 priv
->pdev_sec
= NULL
;
1395 static int samsung_i2s_probe(struct platform_device
*pdev
)
1397 struct i2s_dai
*pri_dai
, *sec_dai
= NULL
;
1398 struct s3c_audio_pdata
*i2s_pdata
= pdev
->dev
.platform_data
;
1399 u32 regs_base
, idma_addr
= 0;
1400 struct device_node
*np
= pdev
->dev
.of_node
;
1401 const struct samsung_i2s_dai_data
*i2s_dai_data
;
1402 const struct platform_device_id
*id
;
1403 struct samsung_i2s_priv
*priv
;
1404 struct resource
*res
;
1407 if (IS_ENABLED(CONFIG_OF
) && pdev
->dev
.of_node
) {
1408 i2s_dai_data
= of_device_get_match_data(&pdev
->dev
);
1410 id
= platform_get_device_id(pdev
);
1412 /* Nothing to do if it is the secondary device probe */
1416 i2s_dai_data
= (struct samsung_i2s_dai_data
*)id
->driver_data
;
1419 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
1424 priv
->quirks
= i2s_dai_data
->quirks
;
1425 priv
->fixup_early
= i2s_dai_data
->fixup_early
;
1426 priv
->fixup_late
= i2s_dai_data
->fixup_late
;
1429 dev_err(&pdev
->dev
, "Missing platform data\n");
1432 priv
->quirks
= i2s_pdata
->type
.quirks
;
1435 num_dais
= (priv
->quirks
& QUIRK_SEC_DAI
) ? 2 : 1;
1437 priv
->variant_regs
= i2s_dai_data
->i2s_variant_regs
;
1439 ret
= i2s_alloc_dais(priv
, i2s_dai_data
, num_dais
);
1443 pri_dai
= &priv
->dai
[SAMSUNG_I2S_ID_PRIMARY
- 1];
1445 spin_lock_init(&priv
->lock
);
1446 spin_lock_init(&priv
->pcm_lock
);
1449 pri_dai
->dma_playback
.filter_data
= i2s_pdata
->dma_playback
;
1450 pri_dai
->dma_capture
.filter_data
= i2s_pdata
->dma_capture
;
1451 pri_dai
->filter
= i2s_pdata
->dma_filter
;
1453 idma_addr
= i2s_pdata
->type
.idma_addr
;
1455 if (of_property_read_u32(np
, "samsung,idma-addr",
1457 if (priv
->quirks
& QUIRK_SUPPORTS_IDMA
) {
1458 dev_info(&pdev
->dev
, "idma address is not"\
1464 priv
->addr
= devm_platform_get_and_ioremap_resource(pdev
, 0, &res
);
1465 if (IS_ERR(priv
->addr
))
1466 return PTR_ERR(priv
->addr
);
1468 regs_base
= res
->start
;
1470 priv
->clk
= devm_clk_get(&pdev
->dev
, "iis");
1471 if (IS_ERR(priv
->clk
)) {
1472 dev_err(&pdev
->dev
, "Failed to get iis clock\n");
1473 return PTR_ERR(priv
->clk
);
1476 ret
= clk_prepare_enable(priv
->clk
);
1478 dev_err(&pdev
->dev
, "failed to enable clock: %d\n", ret
);
1481 pri_dai
->dma_playback
.addr
= regs_base
+ I2STXD
;
1482 pri_dai
->dma_capture
.addr
= regs_base
+ I2SRXD
;
1483 pri_dai
->dma_playback
.chan_name
= "tx";
1484 pri_dai
->dma_capture
.chan_name
= "rx";
1485 pri_dai
->dma_playback
.addr_width
= 4;
1486 pri_dai
->dma_capture
.addr_width
= 4;
1487 pri_dai
->priv
= priv
;
1489 if (priv
->quirks
& QUIRK_PRI_6CHAN
)
1490 pri_dai
->drv
->playback
.channels_max
= 6;
1492 ret
= samsung_asoc_dma_platform_register(&pdev
->dev
, pri_dai
->filter
,
1495 goto err_disable_clk
;
1497 if (priv
->quirks
& QUIRK_SEC_DAI
) {
1498 sec_dai
= &priv
->dai
[SAMSUNG_I2S_ID_SECONDARY
- 1];
1500 sec_dai
->dma_playback
.addr
= regs_base
+ I2STXDS
;
1501 sec_dai
->dma_playback
.chan_name
= "tx-sec";
1504 sec_dai
->dma_playback
.filter_data
= i2s_pdata
->dma_play_sec
;
1505 sec_dai
->filter
= i2s_pdata
->dma_filter
;
1508 sec_dai
->dma_playback
.addr_width
= 4;
1509 sec_dai
->idma_playback
.addr
= idma_addr
;
1510 sec_dai
->pri_dai
= pri_dai
;
1511 sec_dai
->priv
= priv
;
1512 pri_dai
->sec_dai
= sec_dai
;
1514 ret
= i2s_create_secondary_device(priv
);
1516 goto err_disable_clk
;
1518 ret
= samsung_asoc_dma_platform_register(&priv
->pdev_sec
->dev
,
1519 sec_dai
->filter
, "tx-sec", NULL
,
1526 if (i2s_pdata
&& i2s_pdata
->cfg_gpio
&& i2s_pdata
->cfg_gpio(pdev
)) {
1527 dev_err(&pdev
->dev
, "Unable to configure gpio\n");
1532 dev_set_drvdata(&pdev
->dev
, priv
);
1534 ret
= devm_snd_soc_register_component(&pdev
->dev
,
1535 &samsung_i2s_component
,
1536 priv
->dai_drv
, num_dais
);
1540 pm_runtime_set_active(&pdev
->dev
);
1541 pm_runtime_enable(&pdev
->dev
);
1543 ret
= i2s_register_clock_provider(priv
);
1545 goto err_disable_pm
;
1547 priv
->op_clk
= clk_get_parent(priv
->clk_table
[CLK_I2S_RCLK_SRC
]);
1552 pm_runtime_disable(&pdev
->dev
);
1554 i2s_delete_secondary_device(priv
);
1556 clk_disable_unprepare(priv
->clk
);
1560 static void samsung_i2s_remove(struct platform_device
*pdev
)
1562 struct samsung_i2s_priv
*priv
= dev_get_drvdata(&pdev
->dev
);
1564 /* The secondary device has no driver data assigned */
1568 pm_runtime_get_sync(&pdev
->dev
);
1569 pm_runtime_disable(&pdev
->dev
);
1571 i2s_unregister_clock_provider(priv
);
1572 i2s_delete_secondary_device(priv
);
1573 clk_disable_unprepare(priv
->clk
);
1575 pm_runtime_put_noidle(&pdev
->dev
);
1578 static void fsd_i2s_fixup_early(struct snd_pcm_substream
*substream
,
1579 struct snd_soc_dai
*dai
)
1581 struct snd_soc_pcm_runtime
*rtd
= snd_soc_substream_to_rtd(substream
);
1582 struct i2s_dai
*i2s
= to_info(snd_soc_rtd_to_cpu(rtd
, 0));
1583 struct i2s_dai
*other
= get_other_dai(i2s
);
1585 if (!is_opened(other
)) {
1586 i2s_set_sysclk(dai
, SAMSUNG_I2S_CDCLK
, 0, SND_SOC_CLOCK_OUT
);
1587 i2s_set_sysclk(dai
, SAMSUNG_I2S_OPCLK
, 0, MOD_OPCLK_PCLK
);
1591 static void fsd_i2s_fixup_late(struct snd_pcm_substream
*substream
,
1592 struct snd_soc_dai
*dai
)
1594 struct snd_soc_pcm_runtime
*rtd
= snd_soc_substream_to_rtd(substream
);
1595 struct samsung_i2s_priv
*priv
= snd_soc_dai_get_drvdata(dai
);
1596 struct i2s_dai
*i2s
= to_info(snd_soc_rtd_to_cpu(rtd
, 0));
1597 struct i2s_dai
*other
= get_other_dai(i2s
);
1599 if (!is_opened(other
))
1600 writel(PSR_PSVAL(2) | PSR_PSREN
, priv
->addr
+ I2SPSR
);
1603 static const struct samsung_i2s_variant_regs i2sv3_regs
= {
1617 static const struct samsung_i2s_variant_regs i2sv6_regs
= {
1631 static const struct samsung_i2s_variant_regs i2sv7_regs
= {
1645 static const struct samsung_i2s_variant_regs i2sv5_i2s1_regs
= {
1659 static const struct samsung_i2s_dai_data i2sv3_dai_type
= {
1660 .quirks
= QUIRK_NO_MUXPSR
,
1661 .pcm_rates
= SNDRV_PCM_RATE_8000_96000
,
1662 .i2s_variant_regs
= &i2sv3_regs
,
1665 static const struct samsung_i2s_dai_data i2sv5_dai_type __maybe_unused
= {
1666 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1667 QUIRK_SUPPORTS_IDMA
,
1668 .pcm_rates
= SNDRV_PCM_RATE_8000_96000
,
1669 .i2s_variant_regs
= &i2sv3_regs
,
1672 static const struct samsung_i2s_dai_data i2sv6_dai_type __maybe_unused
= {
1673 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1674 QUIRK_SUPPORTS_TDM
| QUIRK_SUPPORTS_IDMA
,
1675 .pcm_rates
= SNDRV_PCM_RATE_8000_96000
,
1676 .i2s_variant_regs
= &i2sv6_regs
,
1679 static const struct samsung_i2s_dai_data i2sv7_dai_type __maybe_unused
= {
1680 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1682 .pcm_rates
= SNDRV_PCM_RATE_8000_192000
,
1683 .i2s_variant_regs
= &i2sv7_regs
,
1686 static const struct samsung_i2s_dai_data i2sv5_dai_type_i2s1 __maybe_unused
= {
1687 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_NEED_RSTCLR
,
1688 .pcm_rates
= SNDRV_PCM_RATE_8000_96000
,
1689 .i2s_variant_regs
= &i2sv5_i2s1_regs
,
1692 static const struct samsung_i2s_dai_data fsd_dai_type __maybe_unused
= {
1693 .quirks
= QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
| QUIRK_SUPPORTS_TDM
,
1694 .pcm_rates
= SNDRV_PCM_RATE_8000_192000
,
1695 .i2s_variant_regs
= &i2sv7_regs
,
1696 .fixup_early
= fsd_i2s_fixup_early
,
1697 .fixup_late
= fsd_i2s_fixup_late
,
1700 static const struct platform_device_id samsung_i2s_driver_ids
[] = {
1702 .name
= "samsung-i2s",
1703 .driver_data
= (kernel_ulong_t
)&i2sv3_dai_type
,
1707 MODULE_DEVICE_TABLE(platform
, samsung_i2s_driver_ids
);
1710 static const struct of_device_id exynos_i2s_match
[] = {
1712 .compatible
= "samsung,s3c6410-i2s",
1713 .data
= &i2sv3_dai_type
,
1715 .compatible
= "samsung,s5pv210-i2s",
1716 .data
= &i2sv5_dai_type
,
1718 .compatible
= "samsung,exynos5420-i2s",
1719 .data
= &i2sv6_dai_type
,
1721 .compatible
= "samsung,exynos7-i2s",
1722 .data
= &i2sv7_dai_type
,
1724 .compatible
= "samsung,exynos7-i2s1",
1725 .data
= &i2sv5_dai_type_i2s1
,
1727 .compatible
= "tesla,fsd-i2s",
1728 .data
= &fsd_dai_type
,
1732 MODULE_DEVICE_TABLE(of
, exynos_i2s_match
);
1735 static const struct dev_pm_ops samsung_i2s_pm
= {
1736 SET_RUNTIME_PM_OPS(i2s_runtime_suspend
,
1737 i2s_runtime_resume
, NULL
)
1738 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
1739 pm_runtime_force_resume
)
1742 static struct platform_driver samsung_i2s_driver
= {
1743 .probe
= samsung_i2s_probe
,
1744 .remove
= samsung_i2s_remove
,
1745 .id_table
= samsung_i2s_driver_ids
,
1747 .name
= "samsung-i2s",
1748 .of_match_table
= of_match_ptr(exynos_i2s_match
),
1749 .pm
= &samsung_i2s_pm
,
1753 module_platform_driver(samsung_i2s_driver
);
1755 /* Module information */
1756 MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
1757 MODULE_DESCRIPTION("Samsung I2S Interface");
1758 MODULE_LICENSE("GPL");