1 /* sound/soc/samsung/s3c-i2c-v2.c
3 * ALSA Soc Audio Layer - I2S core for newer Samsung SoCs.
5 * Copyright (c) 2006 Wolfson Microelectronics PLC.
6 * Graeme Gregory graeme.gregory@wolfsonmicro.com
7 * linux@wolfsonmicro.com
9 * Copyright (c) 2008, 2007, 2004-2005 Simtec Electronics
10 * http://armlinux.simtec.co.uk/
11 * Ben Dooks <ben@simtec.co.uk>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 #include <linux/delay.h>
20 #include <linux/clk.h>
23 #include <sound/soc.h>
24 #include <sound/pcm_params.h>
28 #include "regs-i2s-v2.h"
29 #include "s3c-i2s-v2.h"
32 #undef S3C_IIS_V2_SUPPORTED
34 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) \
35 || defined(CONFIG_CPU_S5PV210)
36 #define S3C_IIS_V2_SUPPORTED
39 #ifdef CONFIG_PLAT_S3C64XX
40 #define S3C_IIS_V2_SUPPORTED
43 #ifndef S3C_IIS_V2_SUPPORTED
44 #error Unsupported CPU model
47 #define S3C2412_I2S_DEBUG_CON 0
49 static inline struct s3c_i2sv2_info
*to_info(struct snd_soc_dai
*cpu_dai
)
51 return snd_soc_dai_get_drvdata(cpu_dai
);
54 #define bit_set(v, b) (((v) & (b)) ? 1 : 0)
56 #if S3C2412_I2S_DEBUG_CON
57 static void dbg_showcon(const char *fn
, u32 con
)
59 printk(KERN_DEBUG
"%s: LRI=%d, TXFEMPT=%d, RXFEMPT=%d, TXFFULL=%d, RXFFULL=%d\n", fn
,
60 bit_set(con
, S3C2412_IISCON_LRINDEX
),
61 bit_set(con
, S3C2412_IISCON_TXFIFO_EMPTY
),
62 bit_set(con
, S3C2412_IISCON_RXFIFO_EMPTY
),
63 bit_set(con
, S3C2412_IISCON_TXFIFO_FULL
),
64 bit_set(con
, S3C2412_IISCON_RXFIFO_FULL
));
66 printk(KERN_DEBUG
"%s: PAUSE: TXDMA=%d, RXDMA=%d, TXCH=%d, RXCH=%d\n",
68 bit_set(con
, S3C2412_IISCON_TXDMA_PAUSE
),
69 bit_set(con
, S3C2412_IISCON_RXDMA_PAUSE
),
70 bit_set(con
, S3C2412_IISCON_TXCH_PAUSE
),
71 bit_set(con
, S3C2412_IISCON_RXCH_PAUSE
));
72 printk(KERN_DEBUG
"%s: ACTIVE: TXDMA=%d, RXDMA=%d, IIS=%d\n", fn
,
73 bit_set(con
, S3C2412_IISCON_TXDMA_ACTIVE
),
74 bit_set(con
, S3C2412_IISCON_RXDMA_ACTIVE
),
75 bit_set(con
, S3C2412_IISCON_IIS_ACTIVE
));
78 static inline void dbg_showcon(const char *fn
, u32 con
)
84 /* Turn on or off the transmission path. */
85 static void s3c2412_snd_txctrl(struct s3c_i2sv2_info
*i2s
, int on
)
87 void __iomem
*regs
= i2s
->regs
;
90 pr_debug("%s(%d)\n", __func__
, on
);
92 fic
= readl(regs
+ S3C2412_IISFIC
);
93 con
= readl(regs
+ S3C2412_IISCON
);
94 mod
= readl(regs
+ S3C2412_IISMOD
);
96 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
99 con
|= S3C2412_IISCON_TXDMA_ACTIVE
| S3C2412_IISCON_IIS_ACTIVE
;
100 con
&= ~S3C2412_IISCON_TXDMA_PAUSE
;
101 con
&= ~S3C2412_IISCON_TXCH_PAUSE
;
103 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
104 case S3C2412_IISMOD_MODE_TXONLY
:
105 case S3C2412_IISMOD_MODE_TXRX
:
106 /* do nothing, we are in the right mode */
109 case S3C2412_IISMOD_MODE_RXONLY
:
110 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
111 mod
|= S3C2412_IISMOD_MODE_TXRX
;
115 dev_err(i2s
->dev
, "TXEN: Invalid MODE %x in IISMOD\n",
116 mod
& S3C2412_IISMOD_MODE_MASK
);
120 writel(con
, regs
+ S3C2412_IISCON
);
121 writel(mod
, regs
+ S3C2412_IISMOD
);
123 /* Note, we do not have any indication that the FIFO problems
124 * tha the S3C2410/2440 had apply here, so we should be able
125 * to disable the DMA and TX without resetting the FIFOS.
128 con
|= S3C2412_IISCON_TXDMA_PAUSE
;
129 con
|= S3C2412_IISCON_TXCH_PAUSE
;
130 con
&= ~S3C2412_IISCON_TXDMA_ACTIVE
;
132 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
133 case S3C2412_IISMOD_MODE_TXRX
:
134 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
135 mod
|= S3C2412_IISMOD_MODE_RXONLY
;
138 case S3C2412_IISMOD_MODE_TXONLY
:
139 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
140 con
&= ~S3C2412_IISCON_IIS_ACTIVE
;
144 dev_err(i2s
->dev
, "TXDIS: Invalid MODE %x in IISMOD\n",
145 mod
& S3C2412_IISMOD_MODE_MASK
);
149 writel(mod
, regs
+ S3C2412_IISMOD
);
150 writel(con
, regs
+ S3C2412_IISCON
);
153 fic
= readl(regs
+ S3C2412_IISFIC
);
154 dbg_showcon(__func__
, con
);
155 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
158 static void s3c2412_snd_rxctrl(struct s3c_i2sv2_info
*i2s
, int on
)
160 void __iomem
*regs
= i2s
->regs
;
163 pr_debug("%s(%d)\n", __func__
, on
);
165 fic
= readl(regs
+ S3C2412_IISFIC
);
166 con
= readl(regs
+ S3C2412_IISCON
);
167 mod
= readl(regs
+ S3C2412_IISMOD
);
169 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
172 con
|= S3C2412_IISCON_RXDMA_ACTIVE
| S3C2412_IISCON_IIS_ACTIVE
;
173 con
&= ~S3C2412_IISCON_RXDMA_PAUSE
;
174 con
&= ~S3C2412_IISCON_RXCH_PAUSE
;
176 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
177 case S3C2412_IISMOD_MODE_TXRX
:
178 case S3C2412_IISMOD_MODE_RXONLY
:
179 /* do nothing, we are in the right mode */
182 case S3C2412_IISMOD_MODE_TXONLY
:
183 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
184 mod
|= S3C2412_IISMOD_MODE_TXRX
;
188 dev_err(i2s
->dev
, "RXEN: Invalid MODE %x in IISMOD\n",
189 mod
& S3C2412_IISMOD_MODE_MASK
);
192 writel(mod
, regs
+ S3C2412_IISMOD
);
193 writel(con
, regs
+ S3C2412_IISCON
);
195 /* See txctrl notes on FIFOs. */
197 con
&= ~S3C2412_IISCON_RXDMA_ACTIVE
;
198 con
|= S3C2412_IISCON_RXDMA_PAUSE
;
199 con
|= S3C2412_IISCON_RXCH_PAUSE
;
201 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
202 case S3C2412_IISMOD_MODE_RXONLY
:
203 con
&= ~S3C2412_IISCON_IIS_ACTIVE
;
204 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
207 case S3C2412_IISMOD_MODE_TXRX
:
208 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
209 mod
|= S3C2412_IISMOD_MODE_TXONLY
;
213 dev_err(i2s
->dev
, "RXDIS: Invalid MODE %x in IISMOD\n",
214 mod
& S3C2412_IISMOD_MODE_MASK
);
217 writel(con
, regs
+ S3C2412_IISCON
);
218 writel(mod
, regs
+ S3C2412_IISMOD
);
221 fic
= readl(regs
+ S3C2412_IISFIC
);
222 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
225 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
228 * Wait for the LR signal to allow synchronisation to the L/R clock
229 * from the codec. May only be needed for slave mode.
231 static int s3c2412_snd_lrsync(struct s3c_i2sv2_info
*i2s
)
234 unsigned long loops
= msecs_to_loops(5);
236 pr_debug("Entered %s\n", __func__
);
239 iiscon
= readl(i2s
->regs
+ S3C2412_IISCON
);
240 if (iiscon
& S3C2412_IISCON_LRINDEX
)
247 printk(KERN_ERR
"%s: timeout\n", __func__
);
255 * Set S3C2412 I2S DAI format
257 static int s3c2412_i2s_set_fmt(struct snd_soc_dai
*cpu_dai
,
260 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
263 pr_debug("Entered %s\n", __func__
);
265 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
266 pr_debug("hw_params r: IISMOD: %x \n", iismod
);
268 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
269 case SND_SOC_DAIFMT_CBM_CFM
:
271 iismod
|= S3C2412_IISMOD_SLAVE
;
273 case SND_SOC_DAIFMT_CBS_CFS
:
275 iismod
&= ~S3C2412_IISMOD_SLAVE
;
278 pr_err("unknwon master/slave format\n");
282 iismod
&= ~S3C2412_IISMOD_SDF_MASK
;
284 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
285 case SND_SOC_DAIFMT_RIGHT_J
:
286 iismod
|= S3C2412_IISMOD_LR_RLOW
;
287 iismod
|= S3C2412_IISMOD_SDF_MSB
;
289 case SND_SOC_DAIFMT_LEFT_J
:
290 iismod
|= S3C2412_IISMOD_LR_RLOW
;
291 iismod
|= S3C2412_IISMOD_SDF_LSB
;
293 case SND_SOC_DAIFMT_I2S
:
294 iismod
&= ~S3C2412_IISMOD_LR_RLOW
;
295 iismod
|= S3C2412_IISMOD_SDF_IIS
;
298 pr_err("Unknown data format\n");
302 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
303 pr_debug("hw_params w: IISMOD: %x \n", iismod
);
307 static int s3c_i2sv2_hw_params(struct snd_pcm_substream
*substream
,
308 struct snd_pcm_hw_params
*params
,
309 struct snd_soc_dai
*dai
)
311 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
312 struct s3c_dma_params
*dma_data
;
315 pr_debug("Entered %s\n", __func__
);
317 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
318 dma_data
= i2s
->dma_playback
;
320 dma_data
= i2s
->dma_capture
;
322 snd_soc_dai_set_dma_data(dai
, substream
, dma_data
);
324 /* Working copies of register */
325 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
326 pr_debug("%s: r: IISMOD: %x\n", __func__
, iismod
);
328 iismod
&= ~S3C64XX_IISMOD_BLC_MASK
;
330 switch (params_format(params
)) {
331 case SNDRV_PCM_FORMAT_S8
:
332 iismod
|= S3C64XX_IISMOD_BLC_8BIT
;
334 case SNDRV_PCM_FORMAT_S16_LE
:
336 case SNDRV_PCM_FORMAT_S24_LE
:
337 iismod
|= S3C64XX_IISMOD_BLC_24BIT
;
341 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
342 pr_debug("%s: w: IISMOD: %x\n", __func__
, iismod
);
347 static int s3c_i2sv2_set_sysclk(struct snd_soc_dai
*cpu_dai
,
348 int clk_id
, unsigned int freq
, int dir
)
350 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
351 u32 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
353 pr_debug("Entered %s\n", __func__
);
354 pr_debug("%s r: IISMOD: %x\n", __func__
, iismod
);
357 case S3C_I2SV2_CLKSRC_PCLK
:
358 iismod
&= ~S3C2412_IISMOD_IMS_SYSMUX
;
361 case S3C_I2SV2_CLKSRC_AUDIOBUS
:
362 iismod
|= S3C2412_IISMOD_IMS_SYSMUX
;
365 case S3C_I2SV2_CLKSRC_CDCLK
:
366 /* Error if controller doesn't have the CDCLKCON bit */
367 if (!(i2s
->feature
& S3C_FEATURE_CDCLKCON
))
371 case SND_SOC_CLOCK_IN
:
372 iismod
|= S3C64XX_IISMOD_CDCLKCON
;
374 case SND_SOC_CLOCK_OUT
:
375 iismod
&= ~S3C64XX_IISMOD_CDCLKCON
;
386 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
387 pr_debug("%s w: IISMOD: %x\n", __func__
, iismod
);
392 static int s3c2412_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
393 struct snd_soc_dai
*dai
)
395 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
396 struct s3c_i2sv2_info
*i2s
= to_info(rtd
->cpu_dai
);
397 int capture
= (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
);
400 struct s3c_dma_params
*dma_data
=
401 snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
403 pr_debug("Entered %s\n", __func__
);
406 case SNDRV_PCM_TRIGGER_START
:
407 /* On start, ensure that the FIFOs are cleared and reset. */
409 writel(capture
? S3C2412_IISFIC_RXFLUSH
: S3C2412_IISFIC_TXFLUSH
,
410 i2s
->regs
+ S3C2412_IISFIC
);
412 /* clear again, just in case */
413 writel(0x0, i2s
->regs
+ S3C2412_IISFIC
);
415 case SNDRV_PCM_TRIGGER_RESUME
:
416 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
418 ret
= s3c2412_snd_lrsync(i2s
);
423 local_irq_save(irqs
);
426 s3c2412_snd_rxctrl(i2s
, 1);
428 s3c2412_snd_txctrl(i2s
, 1);
430 local_irq_restore(irqs
);
433 * Load the next buffer to DMA to meet the reqirement
434 * of the auto reload mechanism of S3C24XX.
435 * This call won't bother S3C64XX.
437 s3c2410_dma_ctrl(dma_data
->channel
, S3C2410_DMAOP_STARTED
);
441 case SNDRV_PCM_TRIGGER_STOP
:
442 case SNDRV_PCM_TRIGGER_SUSPEND
:
443 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
444 local_irq_save(irqs
);
447 s3c2412_snd_rxctrl(i2s
, 0);
449 s3c2412_snd_txctrl(i2s
, 0);
451 local_irq_restore(irqs
);
463 * Set S3C2412 Clock dividers
465 static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
468 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
471 pr_debug("%s(%p, %d, %d)\n", __func__
, cpu_dai
, div_id
, div
);
474 case S3C_I2SV2_DIV_BCLK
:
477 div
= S3C2412_IISMOD_BCLK_16FS
;
481 div
= S3C2412_IISMOD_BCLK_32FS
;
485 div
= S3C2412_IISMOD_BCLK_24FS
;
489 div
= S3C2412_IISMOD_BCLK_48FS
;
496 reg
= readl(i2s
->regs
+ S3C2412_IISMOD
);
497 reg
&= ~S3C2412_IISMOD_BCLK_MASK
;
498 writel(reg
| div
, i2s
->regs
+ S3C2412_IISMOD
);
500 pr_debug("%s: MOD=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISMOD
));
503 case S3C_I2SV2_DIV_RCLK
:
506 div
= S3C2412_IISMOD_RCLK_256FS
;
510 div
= S3C2412_IISMOD_RCLK_384FS
;
514 div
= S3C2412_IISMOD_RCLK_512FS
;
518 div
= S3C2412_IISMOD_RCLK_768FS
;
525 reg
= readl(i2s
->regs
+ S3C2412_IISMOD
);
526 reg
&= ~S3C2412_IISMOD_RCLK_MASK
;
527 writel(reg
| div
, i2s
->regs
+ S3C2412_IISMOD
);
528 pr_debug("%s: MOD=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISMOD
));
531 case S3C_I2SV2_DIV_PRESCALER
:
533 writel((div
<< 8) | S3C2412_IISPSR_PSREN
,
534 i2s
->regs
+ S3C2412_IISPSR
);
536 writel(0x0, i2s
->regs
+ S3C2412_IISPSR
);
538 pr_debug("%s: PSR=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISPSR
));
548 static snd_pcm_sframes_t
s3c2412_i2s_delay(struct snd_pcm_substream
*substream
,
549 struct snd_soc_dai
*dai
)
551 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
552 u32 reg
= readl(i2s
->regs
+ S3C2412_IISFIC
);
553 snd_pcm_sframes_t delay
;
555 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
556 delay
= S3C2412_IISFIC_TXCOUNT(reg
);
558 delay
= S3C2412_IISFIC_RXCOUNT(reg
);
563 struct clk
*s3c_i2sv2_get_clock(struct snd_soc_dai
*cpu_dai
)
565 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
566 u32 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
568 if (iismod
& S3C2412_IISMOD_IMS_SYSMUX
)
569 return i2s
->iis_cclk
;
571 return i2s
->iis_pclk
;
573 EXPORT_SYMBOL_GPL(s3c_i2sv2_get_clock
);
575 /* default table of all avaialable root fs divisors */
576 static unsigned int iis_fs_tab
[] = { 256, 512, 384, 768 };
578 int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc
*info
,
580 unsigned int rate
, struct clk
*clk
)
582 unsigned long clkrate
= clk_get_rate(clk
);
588 signed int deviation
= 0;
589 unsigned int best_fs
= 0;
590 unsigned int best_div
= 0;
591 unsigned int best_rate
= 0;
592 unsigned int best_deviation
= INT_MAX
;
594 pr_debug("Input clock rate %ldHz\n", clkrate
);
599 for (fs
= 0; fs
< ARRAY_SIZE(iis_fs_tab
); fs
++) {
600 fsdiv
= iis_fs_tab
[fs
];
602 fsclk
= clkrate
/ fsdiv
;
605 if ((fsclk
% rate
) > (rate
/ 2))
611 actual
= clkrate
/ (fsdiv
* div
);
612 deviation
= actual
- rate
;
614 printk(KERN_DEBUG
"%ufs: div %u => result %u, deviation %d\n",
615 fsdiv
, div
, actual
, deviation
);
617 deviation
= abs(deviation
);
619 if (deviation
< best_deviation
) {
623 best_deviation
= deviation
;
630 printk(KERN_DEBUG
"best: fs=%u, div=%u, rate=%u\n",
631 best_fs
, best_div
, best_rate
);
633 info
->fs_div
= best_fs
;
634 info
->clk_div
= best_div
;
638 EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate
);
640 int s3c_i2sv2_probe(struct snd_soc_dai
*dai
,
641 struct s3c_i2sv2_info
*i2s
,
644 struct device
*dev
= dai
->dev
;
649 /* record our i2s structure for later use in the callbacks */
650 snd_soc_dai_set_drvdata(dai
, i2s
);
652 i2s
->regs
= ioremap(base
, 0x100);
653 if (i2s
->regs
== NULL
) {
654 dev_err(dev
, "cannot ioremap registers\n");
658 i2s
->iis_pclk
= clk_get(dev
, "iis");
659 if (IS_ERR(i2s
->iis_pclk
)) {
660 dev_err(dev
, "failed to get iis_clock\n");
665 clk_enable(i2s
->iis_pclk
);
667 /* Mark ourselves as in TXRX mode so we can run through our cleanup
668 * process without warnings. */
669 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
670 iismod
|= S3C2412_IISMOD_MODE_TXRX
;
671 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
672 s3c2412_snd_txctrl(i2s
, 0);
673 s3c2412_snd_rxctrl(i2s
, 0);
677 EXPORT_SYMBOL_GPL(s3c_i2sv2_probe
);
680 static int s3c2412_i2s_suspend(struct snd_soc_dai
*dai
)
682 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
686 i2s
->suspend_iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
687 i2s
->suspend_iiscon
= readl(i2s
->regs
+ S3C2412_IISCON
);
688 i2s
->suspend_iispsr
= readl(i2s
->regs
+ S3C2412_IISPSR
);
690 /* some basic suspend checks */
692 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
694 if (iismod
& S3C2412_IISCON_RXDMA_ACTIVE
)
695 pr_warning("%s: RXDMA active?\n", __func__
);
697 if (iismod
& S3C2412_IISCON_TXDMA_ACTIVE
)
698 pr_warning("%s: TXDMA active?\n", __func__
);
700 if (iismod
& S3C2412_IISCON_IIS_ACTIVE
)
701 pr_warning("%s: IIS active\n", __func__
);
707 static int s3c2412_i2s_resume(struct snd_soc_dai
*dai
)
709 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
711 pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n",
712 dai
->active
, i2s
->suspend_iismod
, i2s
->suspend_iiscon
);
715 writel(i2s
->suspend_iiscon
, i2s
->regs
+ S3C2412_IISCON
);
716 writel(i2s
->suspend_iismod
, i2s
->regs
+ S3C2412_IISMOD
);
717 writel(i2s
->suspend_iispsr
, i2s
->regs
+ S3C2412_IISPSR
);
719 writel(S3C2412_IISFIC_RXFLUSH
| S3C2412_IISFIC_TXFLUSH
,
720 i2s
->regs
+ S3C2412_IISFIC
);
723 writel(0x0, i2s
->regs
+ S3C2412_IISFIC
);
729 #define s3c2412_i2s_suspend NULL
730 #define s3c2412_i2s_resume NULL
733 int s3c_i2sv2_register_dai(struct device
*dev
, int id
,
734 struct snd_soc_dai_driver
*drv
)
736 struct snd_soc_dai_ops
*ops
= drv
->ops
;
738 ops
->trigger
= s3c2412_i2s_trigger
;
740 ops
->hw_params
= s3c_i2sv2_hw_params
;
741 ops
->set_fmt
= s3c2412_i2s_set_fmt
;
742 ops
->set_clkdiv
= s3c2412_i2s_set_clkdiv
;
743 ops
->set_sysclk
= s3c_i2sv2_set_sysclk
;
745 /* Allow overriding by (for example) IISv4 */
747 ops
->delay
= s3c2412_i2s_delay
;
749 drv
->suspend
= s3c2412_i2s_suspend
;
750 drv
->resume
= s3c2412_i2s_resume
;
752 return snd_soc_register_dai(dev
, drv
);
754 EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai
);
756 MODULE_LICENSE("GPL");