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 <linux/delay.h>
14 #include <linux/slab.h>
15 #include <linux/clk.h>
17 #include <linux/module.h>
19 #include <linux/of_gpio.h>
20 #include <linux/pm_runtime.h>
22 #include <sound/soc.h>
23 #include <sound/pcm_params.h>
27 #include <linux/platform_data/asoc-s3c.h>
34 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
36 enum samsung_dai_type
{
41 struct samsung_i2s_dai_data
{
47 /* Platform device for this DAI */
48 struct platform_device
*pdev
;
51 /* Physical base address of SFRs */
53 /* Rate of RCLK source clock */
54 unsigned long rclk_srcrate
;
58 * Specifically requested RCLK,BCLK by MACHINE Driver.
59 * 0 indicates CPU driver is free to choose any value.
62 /* I2S Controller's core clock */
64 /* Clock for generating I2S signals */
66 /* Pointer to the Primary_Fifo if this is Sec_Fifo, NULL otherwise */
67 struct i2s_dai
*pri_dai
;
68 /* Pointer to the Secondary_Fifo if it has one, NULL otherwise */
69 struct i2s_dai
*sec_dai
;
70 #define DAI_OPENED (1 << 0) /* Dai is opened */
71 #define DAI_MANAGER (1 << 1) /* Dai is the manager */
73 /* Driver for this DAI */
74 struct snd_soc_dai_driver i2s_dai_drv
;
76 struct s3c_dma_params dma_playback
;
77 struct s3c_dma_params dma_capture
;
78 struct s3c_dma_params idma_playback
;
83 unsigned long gpios
[7]; /* i2s gpio line numbers */
86 /* Lock for cross i/f checks */
87 static DEFINE_SPINLOCK(lock
);
89 /* If this is the 'overlay' stereo DAI */
90 static inline bool is_secondary(struct i2s_dai
*i2s
)
92 return i2s
->pri_dai
? true : false;
95 /* If operating in SoC-Slave mode */
96 static inline bool is_slave(struct i2s_dai
*i2s
)
98 return (readl(i2s
->addr
+ I2SMOD
) & MOD_SLAVE
) ? true : false;
101 /* If this interface of the controller is transmitting data */
102 static inline bool tx_active(struct i2s_dai
*i2s
)
109 active
= readl(i2s
->addr
+ I2SCON
);
111 if (is_secondary(i2s
))
112 active
&= CON_TXSDMA_ACTIVE
;
114 active
&= CON_TXDMA_ACTIVE
;
116 return active
? true : false;
119 /* If the other interface of the controller is transmitting data */
120 static inline bool other_tx_active(struct i2s_dai
*i2s
)
122 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
124 return tx_active(other
);
127 /* If any interface of the controller is transmitting data */
128 static inline bool any_tx_active(struct i2s_dai
*i2s
)
130 return tx_active(i2s
) || other_tx_active(i2s
);
133 /* If this interface of the controller is receiving data */
134 static inline bool rx_active(struct i2s_dai
*i2s
)
141 active
= readl(i2s
->addr
+ I2SCON
) & CON_RXDMA_ACTIVE
;
143 return active
? true : false;
146 /* If the other interface of the controller is receiving data */
147 static inline bool other_rx_active(struct i2s_dai
*i2s
)
149 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
151 return rx_active(other
);
154 /* If any interface of the controller is receiving data */
155 static inline bool any_rx_active(struct i2s_dai
*i2s
)
157 return rx_active(i2s
) || other_rx_active(i2s
);
160 /* If the other DAI is transmitting or receiving data */
161 static inline bool other_active(struct i2s_dai
*i2s
)
163 return other_rx_active(i2s
) || other_tx_active(i2s
);
166 /* If this DAI is transmitting or receiving data */
167 static inline bool this_active(struct i2s_dai
*i2s
)
169 return tx_active(i2s
) || rx_active(i2s
);
172 /* If the controller is active anyway */
173 static inline bool any_active(struct i2s_dai
*i2s
)
175 return this_active(i2s
) || other_active(i2s
);
178 static inline struct i2s_dai
*to_info(struct snd_soc_dai
*dai
)
180 return snd_soc_dai_get_drvdata(dai
);
183 static inline bool is_opened(struct i2s_dai
*i2s
)
185 if (i2s
&& (i2s
->mode
& DAI_OPENED
))
191 static inline bool is_manager(struct i2s_dai
*i2s
)
193 if (is_opened(i2s
) && (i2s
->mode
& DAI_MANAGER
))
199 /* Read RCLK of I2S (in multiples of LRCLK) */
200 static inline unsigned get_rfs(struct i2s_dai
*i2s
)
204 if (i2s
->quirks
& QUIRK_SUPPORTS_TDM
)
205 rfs
= readl(i2s
->addr
+ I2SMOD
) >> EXYNOS5420_MOD_RCLK_SHIFT
;
207 rfs
= (readl(i2s
->addr
+ I2SMOD
) >> MOD_RCLK_SHIFT
);
208 rfs
&= MOD_RCLK_MASK
;
218 /* Write RCLK of I2S (in multiples of LRCLK) */
219 static inline void set_rfs(struct i2s_dai
*i2s
, unsigned rfs
)
221 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
224 if (i2s
->quirks
& QUIRK_SUPPORTS_TDM
)
225 rfs_shift
= EXYNOS5420_MOD_RCLK_SHIFT
;
227 rfs_shift
= MOD_RCLK_SHIFT
;
228 mod
&= ~(MOD_RCLK_MASK
<< rfs_shift
);
232 mod
|= (MOD_RCLK_768FS
<< rfs_shift
);
235 mod
|= (MOD_RCLK_512FS
<< rfs_shift
);
238 mod
|= (MOD_RCLK_384FS
<< rfs_shift
);
241 mod
|= (MOD_RCLK_256FS
<< rfs_shift
);
245 writel(mod
, i2s
->addr
+ I2SMOD
);
248 /* Read Bit-Clock of I2S (in multiples of LRCLK) */
249 static inline unsigned get_bfs(struct i2s_dai
*i2s
)
253 if (i2s
->quirks
& QUIRK_SUPPORTS_TDM
) {
254 bfs
= readl(i2s
->addr
+ I2SMOD
) >> EXYNOS5420_MOD_BCLK_SHIFT
;
255 bfs
&= EXYNOS5420_MOD_BCLK_MASK
;
257 bfs
= readl(i2s
->addr
+ I2SMOD
) >> MOD_BCLK_SHIFT
;
258 bfs
&= MOD_BCLK_MASK
;
274 /* Write Bit-Clock of I2S (in multiples of LRCLK) */
275 static inline void set_bfs(struct i2s_dai
*i2s
, unsigned bfs
)
277 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
279 int tdm
= i2s
->quirks
& QUIRK_SUPPORTS_TDM
;
281 if (i2s
->quirks
& QUIRK_SUPPORTS_TDM
) {
282 bfs_shift
= EXYNOS5420_MOD_BCLK_SHIFT
;
283 mod
&= ~(EXYNOS5420_MOD_BCLK_MASK
<< bfs_shift
);
285 bfs_shift
= MOD_BCLK_SHIFT
;
286 mod
&= ~(MOD_BCLK_MASK
<< bfs_shift
);
289 /* Non-TDM I2S controllers do not support BCLK > 48 * FS */
290 if (!tdm
&& bfs
> 48) {
291 dev_err(&i2s
->pdev
->dev
, "Unsupported BCLK divider\n");
297 mod
|= (MOD_BCLK_48FS
<< bfs_shift
);
300 mod
|= (MOD_BCLK_32FS
<< bfs_shift
);
303 mod
|= (MOD_BCLK_24FS
<< bfs_shift
);
306 mod
|= (MOD_BCLK_16FS
<< bfs_shift
);
309 mod
|= (EXYNOS5420_MOD_BCLK_64FS
<< bfs_shift
);
312 mod
|= (EXYNOS5420_MOD_BCLK_96FS
<< bfs_shift
);
315 mod
|= (EXYNOS5420_MOD_BCLK_128FS
<< bfs_shift
);
318 mod
|= (EXYNOS5420_MOD_BCLK_192FS
<< bfs_shift
);
321 mod
|= (EXYNOS5420_MOD_BCLK_256FS
<< bfs_shift
);
324 dev_err(&i2s
->pdev
->dev
, "Wrong BCLK Divider!\n");
328 writel(mod
, i2s
->addr
+ I2SMOD
);
332 static inline int get_blc(struct i2s_dai
*i2s
)
334 int blc
= readl(i2s
->addr
+ I2SMOD
);
336 blc
= (blc
>> 13) & 0x3;
345 /* TX Channel Control */
346 static void i2s_txctrl(struct i2s_dai
*i2s
, int on
)
348 void __iomem
*addr
= i2s
->addr
;
349 u32 con
= readl(addr
+ I2SCON
);
350 u32 mod
= readl(addr
+ I2SMOD
) & ~MOD_MASK
;
354 con
&= ~CON_TXCH_PAUSE
;
356 if (is_secondary(i2s
)) {
357 con
|= CON_TXSDMA_ACTIVE
;
358 con
&= ~CON_TXSDMA_PAUSE
;
360 con
|= CON_TXDMA_ACTIVE
;
361 con
&= ~CON_TXDMA_PAUSE
;
364 if (any_rx_active(i2s
))
369 if (is_secondary(i2s
)) {
370 con
|= CON_TXSDMA_PAUSE
;
371 con
&= ~CON_TXSDMA_ACTIVE
;
373 con
|= CON_TXDMA_PAUSE
;
374 con
&= ~CON_TXDMA_ACTIVE
;
377 if (other_tx_active(i2s
)) {
378 writel(con
, addr
+ I2SCON
);
382 con
|= CON_TXCH_PAUSE
;
384 if (any_rx_active(i2s
))
390 writel(mod
, addr
+ I2SMOD
);
391 writel(con
, addr
+ I2SCON
);
394 /* RX Channel Control */
395 static void i2s_rxctrl(struct i2s_dai
*i2s
, int on
)
397 void __iomem
*addr
= i2s
->addr
;
398 u32 con
= readl(addr
+ I2SCON
);
399 u32 mod
= readl(addr
+ I2SMOD
) & ~MOD_MASK
;
402 con
|= CON_RXDMA_ACTIVE
| CON_ACTIVE
;
403 con
&= ~(CON_RXDMA_PAUSE
| CON_RXCH_PAUSE
);
405 if (any_tx_active(i2s
))
410 con
|= CON_RXDMA_PAUSE
| CON_RXCH_PAUSE
;
411 con
&= ~CON_RXDMA_ACTIVE
;
413 if (any_tx_active(i2s
))
419 writel(mod
, addr
+ I2SMOD
);
420 writel(con
, addr
+ I2SCON
);
423 /* Flush FIFO of an interface */
424 static inline void i2s_fifo(struct i2s_dai
*i2s
, u32 flush
)
432 if (is_secondary(i2s
))
433 fic
= i2s
->addr
+ I2SFICS
;
435 fic
= i2s
->addr
+ I2SFIC
;
438 writel(readl(fic
) | flush
, fic
);
441 val
= msecs_to_loops(1) / 1000; /* 1 usec */
445 writel(readl(fic
) & ~flush
, fic
);
448 static int i2s_set_sysclk(struct snd_soc_dai
*dai
,
449 int clk_id
, unsigned int rfs
, int dir
)
451 struct i2s_dai
*i2s
= to_info(dai
);
452 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
453 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
456 case SAMSUNG_I2S_CDCLK
:
457 /* Shouldn't matter in GATING(CLOCK_IN) mode */
458 if (dir
== SND_SOC_CLOCK_IN
)
461 if ((rfs
&& other
->rfs
&& (other
->rfs
!= rfs
)) ||
463 (((dir
== SND_SOC_CLOCK_IN
)
464 && !(mod
& MOD_CDCLKCON
)) ||
465 ((dir
== SND_SOC_CLOCK_OUT
)
466 && (mod
& MOD_CDCLKCON
))))) {
467 dev_err(&i2s
->pdev
->dev
,
468 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
472 if (dir
== SND_SOC_CLOCK_IN
)
475 mod
&= ~MOD_CDCLKCON
;
480 case SAMSUNG_I2S_RCLKSRC_0
: /* clock corrsponding to IISMOD[10] := 0 */
481 case SAMSUNG_I2S_RCLKSRC_1
: /* clock corrsponding to IISMOD[10] := 1 */
482 if ((i2s
->quirks
& QUIRK_NO_MUXPSR
)
483 || (clk_id
== SAMSUNG_I2S_RCLKSRC_0
))
488 if (!any_active(i2s
)) {
490 if ((clk_id
&& !(mod
& MOD_IMS_SYSMUX
)) ||
491 (!clk_id
&& (mod
& MOD_IMS_SYSMUX
))) {
492 clk_disable_unprepare(i2s
->op_clk
);
493 clk_put(i2s
->op_clk
);
496 clk_get_rate(i2s
->op_clk
);
502 i2s
->op_clk
= clk_get(&i2s
->pdev
->dev
,
505 i2s
->op_clk
= clk_get(&i2s
->pdev
->dev
,
507 clk_prepare_enable(i2s
->op_clk
);
508 i2s
->rclk_srcrate
= clk_get_rate(i2s
->op_clk
);
510 /* Over-ride the other's */
512 other
->op_clk
= i2s
->op_clk
;
513 other
->rclk_srcrate
= i2s
->rclk_srcrate
;
515 } else if ((!clk_id
&& (mod
& MOD_IMS_SYSMUX
))
516 || (clk_id
&& !(mod
& MOD_IMS_SYSMUX
))) {
517 dev_err(&i2s
->pdev
->dev
,
518 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
521 /* Call can't be on the active DAI */
522 i2s
->op_clk
= other
->op_clk
;
523 i2s
->rclk_srcrate
= other
->rclk_srcrate
;
528 mod
&= ~MOD_IMS_SYSMUX
;
530 mod
|= MOD_IMS_SYSMUX
;
534 dev_err(&i2s
->pdev
->dev
, "We don't serve that!\n");
538 writel(mod
, i2s
->addr
+ I2SMOD
);
543 static int i2s_set_fmt(struct snd_soc_dai
*dai
,
546 struct i2s_dai
*i2s
= to_info(dai
);
547 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
548 int lrp_shift
, sdf_shift
, sdf_mask
, lrp_rlow
;
551 if (i2s
->quirks
& QUIRK_SUPPORTS_TDM
) {
552 lrp_shift
= EXYNOS5420_MOD_LRP_SHIFT
;
553 sdf_shift
= EXYNOS5420_MOD_SDF_SHIFT
;
555 lrp_shift
= MOD_LRP_SHIFT
;
556 sdf_shift
= MOD_SDF_SHIFT
;
559 sdf_mask
= MOD_SDF_MASK
<< sdf_shift
;
560 lrp_rlow
= MOD_LR_RLOW
<< lrp_shift
;
562 /* Format is priority */
563 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
564 case SND_SOC_DAIFMT_RIGHT_J
:
566 tmp
|= (MOD_SDF_MSB
<< sdf_shift
);
568 case SND_SOC_DAIFMT_LEFT_J
:
570 tmp
|= (MOD_SDF_LSB
<< sdf_shift
);
572 case SND_SOC_DAIFMT_I2S
:
573 tmp
|= (MOD_SDF_IIS
<< sdf_shift
);
576 dev_err(&i2s
->pdev
->dev
, "Format not supported\n");
581 * INV flag is relative to the FORMAT flag - if set it simply
582 * flips the polarity specified by the Standard
584 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
585 case SND_SOC_DAIFMT_NB_NF
:
587 case SND_SOC_DAIFMT_NB_IF
:
594 dev_err(&i2s
->pdev
->dev
, "Polarity not supported\n");
598 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
599 case SND_SOC_DAIFMT_CBM_CFM
:
602 case SND_SOC_DAIFMT_CBS_CFS
:
603 /* Set default source clock in Master mode */
604 if (i2s
->rclk_srcrate
== 0)
605 i2s_set_sysclk(dai
, SAMSUNG_I2S_RCLKSRC_0
,
606 0, SND_SOC_CLOCK_IN
);
609 dev_err(&i2s
->pdev
->dev
, "master/slave format not supported\n");
614 * Don't change the I2S mode if any controller is active on this
617 if (any_active(i2s
) &&
618 ((mod
& (sdf_mask
| lrp_rlow
| MOD_SLAVE
)) != tmp
)) {
619 dev_err(&i2s
->pdev
->dev
,
620 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
624 mod
&= ~(sdf_mask
| lrp_rlow
| MOD_SLAVE
);
626 writel(mod
, i2s
->addr
+ I2SMOD
);
631 static int i2s_hw_params(struct snd_pcm_substream
*substream
,
632 struct snd_pcm_hw_params
*params
, struct snd_soc_dai
*dai
)
634 struct i2s_dai
*i2s
= to_info(dai
);
635 u32 mod
= readl(i2s
->addr
+ I2SMOD
);
637 if (!is_secondary(i2s
))
638 mod
&= ~(MOD_DC2_EN
| MOD_DC1_EN
);
640 switch (params_channels(params
)) {
647 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
648 i2s
->dma_playback
.dma_size
= 4;
650 i2s
->dma_capture
.dma_size
= 4;
653 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
654 i2s
->dma_playback
.dma_size
= 2;
656 i2s
->dma_capture
.dma_size
= 2;
660 dev_err(&i2s
->pdev
->dev
, "%d channels not supported\n",
661 params_channels(params
));
665 if (is_secondary(i2s
))
666 mod
&= ~MOD_BLCS_MASK
;
668 mod
&= ~MOD_BLCP_MASK
;
671 mod
&= ~MOD_BLC_MASK
;
673 switch (params_format(params
)) {
674 case SNDRV_PCM_FORMAT_S8
:
675 if (is_secondary(i2s
))
676 mod
|= MOD_BLCS_8BIT
;
678 mod
|= MOD_BLCP_8BIT
;
682 case SNDRV_PCM_FORMAT_S16_LE
:
683 if (is_secondary(i2s
))
684 mod
|= MOD_BLCS_16BIT
;
686 mod
|= MOD_BLCP_16BIT
;
688 mod
|= MOD_BLC_16BIT
;
690 case SNDRV_PCM_FORMAT_S24_LE
:
691 if (is_secondary(i2s
))
692 mod
|= MOD_BLCS_24BIT
;
694 mod
|= MOD_BLCP_24BIT
;
696 mod
|= MOD_BLC_24BIT
;
699 dev_err(&i2s
->pdev
->dev
, "Format(%d) not supported\n",
700 params_format(params
));
703 writel(mod
, i2s
->addr
+ I2SMOD
);
705 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
706 snd_soc_dai_set_dma_data(dai
, substream
,
707 (void *)&i2s
->dma_playback
);
709 snd_soc_dai_set_dma_data(dai
, substream
,
710 (void *)&i2s
->dma_capture
);
712 i2s
->frmclk
= params_rate(params
);
717 /* We set constraints on the substream acc to the version of I2S */
718 static int i2s_startup(struct snd_pcm_substream
*substream
,
719 struct snd_soc_dai
*dai
)
721 struct i2s_dai
*i2s
= to_info(dai
);
722 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
725 spin_lock_irqsave(&lock
, flags
);
727 i2s
->mode
|= DAI_OPENED
;
729 if (is_manager(other
))
730 i2s
->mode
&= ~DAI_MANAGER
;
732 i2s
->mode
|= DAI_MANAGER
;
734 /* Enforce set_sysclk in Master mode */
735 i2s
->rclk_srcrate
= 0;
737 if (!any_active(i2s
) && (i2s
->quirks
& QUIRK_NEED_RSTCLR
))
738 writel(CON_RSTCLR
, i2s
->addr
+ I2SCON
);
740 spin_unlock_irqrestore(&lock
, flags
);
745 static void i2s_shutdown(struct snd_pcm_substream
*substream
,
746 struct snd_soc_dai
*dai
)
748 struct i2s_dai
*i2s
= to_info(dai
);
749 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
752 spin_lock_irqsave(&lock
, flags
);
754 i2s
->mode
&= ~DAI_OPENED
;
755 i2s
->mode
&= ~DAI_MANAGER
;
757 if (is_opened(other
))
758 other
->mode
|= DAI_MANAGER
;
760 /* Reset any constraint on RFS and BFS */
764 spin_unlock_irqrestore(&lock
, flags
);
766 /* Gate CDCLK by default */
767 if (!is_opened(other
))
768 i2s_set_sysclk(dai
, SAMSUNG_I2S_CDCLK
,
769 0, SND_SOC_CLOCK_IN
);
772 static int config_setup(struct i2s_dai
*i2s
)
774 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
775 unsigned rfs
, bfs
, blc
;
785 /* Select least possible multiple(2) if no constraint set */
794 if ((rfs
== 256 || rfs
== 512) && (blc
== 24)) {
795 dev_err(&i2s
->pdev
->dev
,
796 "%d-RFS not supported for 24-blc\n", rfs
);
801 if (bfs
== 16 || bfs
== 32)
807 /* If already setup and running */
808 if (any_active(i2s
) && (get_rfs(i2s
) != rfs
|| get_bfs(i2s
) != bfs
)) {
809 dev_err(&i2s
->pdev
->dev
,
810 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
817 /* Don't bother with PSR in Slave mode */
821 if (!(i2s
->quirks
& QUIRK_NO_MUXPSR
)) {
822 psr
= i2s
->rclk_srcrate
/ i2s
->frmclk
/ rfs
;
823 writel(((psr
- 1) << 8) | PSR_PSREN
, i2s
->addr
+ I2SPSR
);
824 dev_dbg(&i2s
->pdev
->dev
,
825 "RCLK_SRC=%luHz PSR=%u, RCLK=%dfs, BCLK=%dfs\n",
826 i2s
->rclk_srcrate
, psr
, rfs
, bfs
);
832 static int i2s_trigger(struct snd_pcm_substream
*substream
,
833 int cmd
, struct snd_soc_dai
*dai
)
835 int capture
= (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
);
836 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
837 struct i2s_dai
*i2s
= to_info(rtd
->cpu_dai
);
841 case SNDRV_PCM_TRIGGER_START
:
842 case SNDRV_PCM_TRIGGER_RESUME
:
843 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
844 local_irq_save(flags
);
846 if (config_setup(i2s
)) {
847 local_irq_restore(flags
);
856 local_irq_restore(flags
);
858 case SNDRV_PCM_TRIGGER_STOP
:
859 case SNDRV_PCM_TRIGGER_SUSPEND
:
860 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
861 local_irq_save(flags
);
865 i2s_fifo(i2s
, FIC_RXFLUSH
);
868 i2s_fifo(i2s
, FIC_TXFLUSH
);
871 local_irq_restore(flags
);
878 static int i2s_set_clkdiv(struct snd_soc_dai
*dai
,
881 struct i2s_dai
*i2s
= to_info(dai
);
882 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
885 case SAMSUNG_I2S_DIV_BCLK
:
886 if ((any_active(i2s
) && div
&& (get_bfs(i2s
) != div
))
887 || (other
&& other
->bfs
&& (other
->bfs
!= div
))) {
888 dev_err(&i2s
->pdev
->dev
,
889 "%s:%d Other DAI busy\n", __func__
, __LINE__
);
895 dev_err(&i2s
->pdev
->dev
,
896 "Invalid clock divider(%d)\n", div_id
);
903 static snd_pcm_sframes_t
904 i2s_delay(struct snd_pcm_substream
*substream
, struct snd_soc_dai
*dai
)
906 struct i2s_dai
*i2s
= to_info(dai
);
907 u32 reg
= readl(i2s
->addr
+ I2SFIC
);
908 snd_pcm_sframes_t delay
;
910 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
911 delay
= FIC_RXCOUNT(reg
);
912 else if (is_secondary(i2s
))
913 delay
= FICS_TXCOUNT(readl(i2s
->addr
+ I2SFICS
));
915 delay
= FIC_TXCOUNT(reg
);
921 static int i2s_suspend(struct snd_soc_dai
*dai
)
923 struct i2s_dai
*i2s
= to_info(dai
);
926 i2s
->suspend_i2smod
= readl(i2s
->addr
+ I2SMOD
);
927 i2s
->suspend_i2scon
= readl(i2s
->addr
+ I2SCON
);
928 i2s
->suspend_i2spsr
= readl(i2s
->addr
+ I2SPSR
);
934 static int i2s_resume(struct snd_soc_dai
*dai
)
936 struct i2s_dai
*i2s
= to_info(dai
);
939 writel(i2s
->suspend_i2scon
, i2s
->addr
+ I2SCON
);
940 writel(i2s
->suspend_i2smod
, i2s
->addr
+ I2SMOD
);
941 writel(i2s
->suspend_i2spsr
, i2s
->addr
+ I2SPSR
);
947 #define i2s_suspend NULL
948 #define i2s_resume NULL
951 static int samsung_i2s_dai_probe(struct snd_soc_dai
*dai
)
953 struct i2s_dai
*i2s
= to_info(dai
);
954 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
956 if (other
&& other
->clk
) /* If this is probe on secondary */
959 i2s
->addr
= ioremap(i2s
->base
, 0x100);
960 if (i2s
->addr
== NULL
) {
961 dev_err(&i2s
->pdev
->dev
, "cannot ioremap registers\n");
965 i2s
->clk
= clk_get(&i2s
->pdev
->dev
, "iis");
966 if (IS_ERR(i2s
->clk
)) {
967 dev_err(&i2s
->pdev
->dev
, "failed to get i2s_clock\n");
971 clk_prepare_enable(i2s
->clk
);
974 other
->addr
= i2s
->addr
;
975 other
->clk
= i2s
->clk
;
978 if (i2s
->quirks
& QUIRK_NEED_RSTCLR
)
979 writel(CON_RSTCLR
, i2s
->addr
+ I2SCON
);
981 if (i2s
->quirks
& QUIRK_SEC_DAI
)
982 idma_reg_addr_init(i2s
->addr
,
983 i2s
->sec_dai
->idma_playback
.dma_addr
);
986 /* Reset any constraint on RFS and BFS */
991 i2s_fifo(i2s
, FIC_TXFLUSH
);
992 i2s_fifo(other
, FIC_TXFLUSH
);
993 i2s_fifo(i2s
, FIC_RXFLUSH
);
995 /* Gate CDCLK by default */
996 if (!is_opened(other
))
997 i2s_set_sysclk(dai
, SAMSUNG_I2S_CDCLK
,
998 0, SND_SOC_CLOCK_IN
);
1003 static int samsung_i2s_dai_remove(struct snd_soc_dai
*dai
)
1005 struct i2s_dai
*i2s
= snd_soc_dai_get_drvdata(dai
);
1006 struct i2s_dai
*other
= i2s
->pri_dai
? : i2s
->sec_dai
;
1008 if (!other
|| !other
->clk
) {
1010 if (i2s
->quirks
& QUIRK_NEED_RSTCLR
)
1011 writel(0, i2s
->addr
+ I2SCON
);
1013 clk_disable_unprepare(i2s
->clk
);
1024 static const struct snd_soc_dai_ops samsung_i2s_dai_ops
= {
1025 .trigger
= i2s_trigger
,
1026 .hw_params
= i2s_hw_params
,
1027 .set_fmt
= i2s_set_fmt
,
1028 .set_clkdiv
= i2s_set_clkdiv
,
1029 .set_sysclk
= i2s_set_sysclk
,
1030 .startup
= i2s_startup
,
1031 .shutdown
= i2s_shutdown
,
1035 static const struct snd_soc_component_driver samsung_i2s_component
= {
1036 .name
= "samsung-i2s",
1039 #define SAMSUNG_I2S_RATES SNDRV_PCM_RATE_8000_96000
1041 #define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | \
1042 SNDRV_PCM_FMTBIT_S16_LE | \
1043 SNDRV_PCM_FMTBIT_S24_LE)
1045 static struct i2s_dai
*i2s_alloc_dai(struct platform_device
*pdev
, bool sec
)
1047 struct i2s_dai
*i2s
;
1050 i2s
= devm_kzalloc(&pdev
->dev
, sizeof(struct i2s_dai
), GFP_KERNEL
);
1055 i2s
->pri_dai
= NULL
;
1056 i2s
->sec_dai
= NULL
;
1057 i2s
->i2s_dai_drv
.symmetric_rates
= 1;
1058 i2s
->i2s_dai_drv
.probe
= samsung_i2s_dai_probe
;
1059 i2s
->i2s_dai_drv
.remove
= samsung_i2s_dai_remove
;
1060 i2s
->i2s_dai_drv
.ops
= &samsung_i2s_dai_ops
;
1061 i2s
->i2s_dai_drv
.suspend
= i2s_suspend
;
1062 i2s
->i2s_dai_drv
.resume
= i2s_resume
;
1063 i2s
->i2s_dai_drv
.playback
.channels_min
= 2;
1064 i2s
->i2s_dai_drv
.playback
.channels_max
= 2;
1065 i2s
->i2s_dai_drv
.playback
.rates
= SAMSUNG_I2S_RATES
;
1066 i2s
->i2s_dai_drv
.playback
.formats
= SAMSUNG_I2S_FMTS
;
1069 i2s
->i2s_dai_drv
.capture
.channels_min
= 1;
1070 i2s
->i2s_dai_drv
.capture
.channels_max
= 2;
1071 i2s
->i2s_dai_drv
.capture
.rates
= SAMSUNG_I2S_RATES
;
1072 i2s
->i2s_dai_drv
.capture
.formats
= SAMSUNG_I2S_FMTS
;
1073 dev_set_drvdata(&i2s
->pdev
->dev
, i2s
);
1074 } else { /* Create a new platform_device for Secondary */
1075 i2s
->pdev
= platform_device_alloc("samsung-i2s-sec", -1);
1076 if (IS_ERR(i2s
->pdev
))
1079 i2s
->pdev
->dev
.parent
= &pdev
->dev
;
1081 platform_set_drvdata(i2s
->pdev
, i2s
);
1082 ret
= platform_device_add(i2s
->pdev
);
1090 static const struct of_device_id exynos_i2s_match
[];
1092 static inline const struct samsung_i2s_dai_data
*samsung_i2s_get_driver_data(
1093 struct platform_device
*pdev
)
1096 if (pdev
->dev
.of_node
) {
1097 const struct of_device_id
*match
;
1098 match
= of_match_node(exynos_i2s_match
, pdev
->dev
.of_node
);
1102 return (struct samsung_i2s_dai_data
*)
1103 platform_get_device_id(pdev
)->driver_data
;
1106 #ifdef CONFIG_PM_RUNTIME
1107 static int i2s_runtime_suspend(struct device
*dev
)
1109 struct i2s_dai
*i2s
= dev_get_drvdata(dev
);
1111 clk_disable_unprepare(i2s
->clk
);
1116 static int i2s_runtime_resume(struct device
*dev
)
1118 struct i2s_dai
*i2s
= dev_get_drvdata(dev
);
1120 clk_prepare_enable(i2s
->clk
);
1124 #endif /* CONFIG_PM_RUNTIME */
1126 static int samsung_i2s_probe(struct platform_device
*pdev
)
1128 struct i2s_dai
*pri_dai
, *sec_dai
= NULL
;
1129 struct s3c_audio_pdata
*i2s_pdata
= pdev
->dev
.platform_data
;
1130 struct samsung_i2s
*i2s_cfg
= NULL
;
1131 struct resource
*res
;
1132 u32 regs_base
, quirks
= 0, idma_addr
= 0;
1133 struct device_node
*np
= pdev
->dev
.of_node
;
1134 const struct samsung_i2s_dai_data
*i2s_dai_data
;
1137 /* Call during Seconday interface registration */
1138 i2s_dai_data
= samsung_i2s_get_driver_data(pdev
);
1140 if (i2s_dai_data
->dai_type
== TYPE_SEC
) {
1141 sec_dai
= dev_get_drvdata(&pdev
->dev
);
1143 dev_err(&pdev
->dev
, "Unable to get drvdata\n");
1146 snd_soc_register_component(&sec_dai
->pdev
->dev
,
1147 &samsung_i2s_component
,
1148 &sec_dai
->i2s_dai_drv
, 1);
1149 samsung_asoc_dma_platform_register(&pdev
->dev
);
1153 pri_dai
= i2s_alloc_dai(pdev
, false);
1155 dev_err(&pdev
->dev
, "Unable to alloc I2S_pri\n");
1160 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
1163 "Unable to get I2S-TX dma resource\n");
1166 pri_dai
->dma_playback
.channel
= res
->start
;
1168 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 1);
1171 "Unable to get I2S-RX dma resource\n");
1174 pri_dai
->dma_capture
.channel
= res
->start
;
1176 if (i2s_pdata
== NULL
) {
1177 dev_err(&pdev
->dev
, "Can't work without s3c_audio_pdata\n");
1181 if (&i2s_pdata
->type
)
1182 i2s_cfg
= &i2s_pdata
->type
.i2s
;
1185 quirks
= i2s_cfg
->quirks
;
1186 idma_addr
= i2s_cfg
->idma_addr
;
1189 quirks
= i2s_dai_data
->quirks
;
1190 if (of_property_read_u32(np
, "samsung,idma-addr",
1192 if (quirks
& QUIRK_SEC_DAI
) {
1193 dev_err(&pdev
->dev
, "idma address is not"\
1200 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1202 dev_err(&pdev
->dev
, "Unable to get I2S SFR address\n");
1206 if (!request_mem_region(res
->start
, resource_size(res
),
1208 dev_err(&pdev
->dev
, "Unable to request SFR region\n");
1211 regs_base
= res
->start
;
1213 pri_dai
->dma_playback
.dma_addr
= regs_base
+ I2STXD
;
1214 pri_dai
->dma_capture
.dma_addr
= regs_base
+ I2SRXD
;
1215 pri_dai
->dma_playback
.client
=
1216 (struct s3c2410_dma_client
*)&pri_dai
->dma_playback
;
1217 pri_dai
->dma_playback
.ch_name
= "tx";
1218 pri_dai
->dma_capture
.client
=
1219 (struct s3c2410_dma_client
*)&pri_dai
->dma_capture
;
1220 pri_dai
->dma_capture
.ch_name
= "rx";
1221 pri_dai
->dma_playback
.dma_size
= 4;
1222 pri_dai
->dma_capture
.dma_size
= 4;
1223 pri_dai
->base
= regs_base
;
1224 pri_dai
->quirks
= quirks
;
1226 if (quirks
& QUIRK_PRI_6CHAN
)
1227 pri_dai
->i2s_dai_drv
.playback
.channels_max
= 6;
1229 if (quirks
& QUIRK_SEC_DAI
) {
1230 sec_dai
= i2s_alloc_dai(pdev
, true);
1232 dev_err(&pdev
->dev
, "Unable to alloc I2S_sec\n");
1236 sec_dai
->dma_playback
.dma_addr
= regs_base
+ I2STXDS
;
1237 sec_dai
->dma_playback
.client
=
1238 (struct s3c2410_dma_client
*)&sec_dai
->dma_playback
;
1239 sec_dai
->dma_playback
.ch_name
= "tx-sec";
1242 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 2);
1244 sec_dai
->dma_playback
.channel
= res
->start
;
1247 sec_dai
->dma_playback
.dma_size
= 4;
1248 sec_dai
->base
= regs_base
;
1249 sec_dai
->quirks
= quirks
;
1250 sec_dai
->idma_playback
.dma_addr
= idma_addr
;
1251 sec_dai
->pri_dai
= pri_dai
;
1252 pri_dai
->sec_dai
= sec_dai
;
1255 if (i2s_pdata
&& i2s_pdata
->cfg_gpio
&& i2s_pdata
->cfg_gpio(pdev
)) {
1256 dev_err(&pdev
->dev
, "Unable to configure gpio\n");
1261 snd_soc_register_component(&pri_dai
->pdev
->dev
, &samsung_i2s_component
,
1262 &pri_dai
->i2s_dai_drv
, 1);
1264 pm_runtime_enable(&pdev
->dev
);
1266 samsung_asoc_dma_platform_register(&pdev
->dev
);
1270 release_mem_region(regs_base
, resource_size(res
));
1275 static int samsung_i2s_remove(struct platform_device
*pdev
)
1277 struct i2s_dai
*i2s
, *other
;
1278 struct resource
*res
;
1280 i2s
= dev_get_drvdata(&pdev
->dev
);
1281 other
= i2s
->pri_dai
? : i2s
->sec_dai
;
1284 other
->pri_dai
= NULL
;
1285 other
->sec_dai
= NULL
;
1287 pm_runtime_disable(&pdev
->dev
);
1288 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1290 release_mem_region(res
->start
, resource_size(res
));
1293 i2s
->pri_dai
= NULL
;
1294 i2s
->sec_dai
= NULL
;
1296 samsung_asoc_dma_platform_unregister(&pdev
->dev
);
1297 snd_soc_unregister_component(&pdev
->dev
);
1302 static const struct samsung_i2s_dai_data i2sv3_dai_type
= {
1303 .dai_type
= TYPE_PRI
,
1304 .quirks
= QUIRK_NO_MUXPSR
,
1307 static const struct samsung_i2s_dai_data i2sv5_dai_type
= {
1308 .dai_type
= TYPE_PRI
,
1309 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
,
1312 static const struct samsung_i2s_dai_data i2sv6_dai_type
= {
1313 .dai_type
= TYPE_PRI
,
1314 .quirks
= QUIRK_PRI_6CHAN
| QUIRK_SEC_DAI
| QUIRK_NEED_RSTCLR
|
1318 static const struct samsung_i2s_dai_data samsung_dai_type_pri
= {
1319 .dai_type
= TYPE_PRI
,
1322 static const struct samsung_i2s_dai_data samsung_dai_type_sec
= {
1323 .dai_type
= TYPE_SEC
,
1326 static struct platform_device_id samsung_i2s_driver_ids
[] = {
1328 .name
= "samsung-i2s",
1329 .driver_data
= (kernel_ulong_t
)&samsung_dai_type_pri
,
1331 .name
= "samsung-i2s-sec",
1332 .driver_data
= (kernel_ulong_t
)&samsung_dai_type_sec
,
1336 MODULE_DEVICE_TABLE(platform
, samsung_i2s_driver_ids
);
1339 static const struct of_device_id exynos_i2s_match
[] = {
1341 .compatible
= "samsung,s3c6410-i2s",
1342 .data
= &i2sv3_dai_type
,
1344 .compatible
= "samsung,s5pv210-i2s",
1345 .data
= &i2sv5_dai_type
,
1347 .compatible
= "samsung,exynos5420-i2s",
1348 .data
= &i2sv6_dai_type
,
1352 MODULE_DEVICE_TABLE(of
, exynos_i2s_match
);
1355 static const struct dev_pm_ops samsung_i2s_pm
= {
1356 SET_RUNTIME_PM_OPS(i2s_runtime_suspend
,
1357 i2s_runtime_resume
, NULL
)
1360 static struct platform_driver samsung_i2s_driver
= {
1361 .probe
= samsung_i2s_probe
,
1362 .remove
= samsung_i2s_remove
,
1363 .id_table
= samsung_i2s_driver_ids
,
1365 .name
= "samsung-i2s",
1366 .owner
= THIS_MODULE
,
1367 .of_match_table
= of_match_ptr(exynos_i2s_match
),
1368 .pm
= &samsung_i2s_pm
,
1372 module_platform_driver(samsung_i2s_driver
);
1374 /* Module information */
1375 MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
1376 MODULE_DESCRIPTION("Samsung I2S Interface");
1377 MODULE_ALIAS("platform:samsung-i2s");
1378 MODULE_LICENSE("GPL");