1 /* ALSA Soc Audio Layer - I2S core for newer Samsung SoCs.
3 * Copyright (c) 2006 Wolfson Microelectronics PLC.
4 * Graeme Gregory graeme.gregory@wolfsonmicro.com
5 * linux@wolfsonmicro.com
7 * Copyright (c) 2008, 2007, 2004-2005 Simtec Electronics
8 * http://armlinux.simtec.co.uk/
9 * Ben Dooks <ben@simtec.co.uk>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
17 #include <linux/module.h>
18 #include <linux/delay.h>
19 #include <linux/clk.h>
22 #include <sound/soc.h>
23 #include <sound/pcm_params.h>
27 #include "regs-i2s-v2.h"
28 #include "s3c-i2s-v2.h"
31 #undef S3C_IIS_V2_SUPPORTED
33 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) \
34 || defined(CONFIG_CPU_S5PV210)
35 #define S3C_IIS_V2_SUPPORTED
38 #ifdef CONFIG_PLAT_S3C64XX
39 #define S3C_IIS_V2_SUPPORTED
42 #ifndef S3C_IIS_V2_SUPPORTED
43 #error Unsupported CPU model
46 #define S3C2412_I2S_DEBUG_CON 0
48 static inline struct s3c_i2sv2_info
*to_info(struct snd_soc_dai
*cpu_dai
)
50 return snd_soc_dai_get_drvdata(cpu_dai
);
53 #define bit_set(v, b) (((v) & (b)) ? 1 : 0)
55 #if S3C2412_I2S_DEBUG_CON
56 static void dbg_showcon(const char *fn
, u32 con
)
58 printk(KERN_DEBUG
"%s: LRI=%d, TXFEMPT=%d, RXFEMPT=%d, TXFFULL=%d, RXFFULL=%d\n", fn
,
59 bit_set(con
, S3C2412_IISCON_LRINDEX
),
60 bit_set(con
, S3C2412_IISCON_TXFIFO_EMPTY
),
61 bit_set(con
, S3C2412_IISCON_RXFIFO_EMPTY
),
62 bit_set(con
, S3C2412_IISCON_TXFIFO_FULL
),
63 bit_set(con
, S3C2412_IISCON_RXFIFO_FULL
));
65 printk(KERN_DEBUG
"%s: PAUSE: TXDMA=%d, RXDMA=%d, TXCH=%d, RXCH=%d\n",
67 bit_set(con
, S3C2412_IISCON_TXDMA_PAUSE
),
68 bit_set(con
, S3C2412_IISCON_RXDMA_PAUSE
),
69 bit_set(con
, S3C2412_IISCON_TXCH_PAUSE
),
70 bit_set(con
, S3C2412_IISCON_RXCH_PAUSE
));
71 printk(KERN_DEBUG
"%s: ACTIVE: TXDMA=%d, RXDMA=%d, IIS=%d\n", fn
,
72 bit_set(con
, S3C2412_IISCON_TXDMA_ACTIVE
),
73 bit_set(con
, S3C2412_IISCON_RXDMA_ACTIVE
),
74 bit_set(con
, S3C2412_IISCON_IIS_ACTIVE
));
77 static inline void dbg_showcon(const char *fn
, u32 con
)
83 /* Turn on or off the transmission path. */
84 static void s3c2412_snd_txctrl(struct s3c_i2sv2_info
*i2s
, int on
)
86 void __iomem
*regs
= i2s
->regs
;
89 pr_debug("%s(%d)\n", __func__
, on
);
91 fic
= readl(regs
+ S3C2412_IISFIC
);
92 con
= readl(regs
+ S3C2412_IISCON
);
93 mod
= readl(regs
+ S3C2412_IISMOD
);
95 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
98 con
|= S3C2412_IISCON_TXDMA_ACTIVE
| S3C2412_IISCON_IIS_ACTIVE
;
99 con
&= ~S3C2412_IISCON_TXDMA_PAUSE
;
100 con
&= ~S3C2412_IISCON_TXCH_PAUSE
;
102 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
103 case S3C2412_IISMOD_MODE_TXONLY
:
104 case S3C2412_IISMOD_MODE_TXRX
:
105 /* do nothing, we are in the right mode */
108 case S3C2412_IISMOD_MODE_RXONLY
:
109 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
110 mod
|= S3C2412_IISMOD_MODE_TXRX
;
114 dev_err(i2s
->dev
, "TXEN: Invalid MODE %x in IISMOD\n",
115 mod
& S3C2412_IISMOD_MODE_MASK
);
119 writel(con
, regs
+ S3C2412_IISCON
);
120 writel(mod
, regs
+ S3C2412_IISMOD
);
122 /* Note, we do not have any indication that the FIFO problems
123 * tha the S3C2410/2440 had apply here, so we should be able
124 * to disable the DMA and TX without resetting the FIFOS.
127 con
|= S3C2412_IISCON_TXDMA_PAUSE
;
128 con
|= S3C2412_IISCON_TXCH_PAUSE
;
129 con
&= ~S3C2412_IISCON_TXDMA_ACTIVE
;
131 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
132 case S3C2412_IISMOD_MODE_TXRX
:
133 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
134 mod
|= S3C2412_IISMOD_MODE_RXONLY
;
137 case S3C2412_IISMOD_MODE_TXONLY
:
138 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
139 con
&= ~S3C2412_IISCON_IIS_ACTIVE
;
143 dev_err(i2s
->dev
, "TXDIS: Invalid MODE %x in IISMOD\n",
144 mod
& S3C2412_IISMOD_MODE_MASK
);
148 writel(mod
, regs
+ S3C2412_IISMOD
);
149 writel(con
, regs
+ S3C2412_IISCON
);
152 fic
= readl(regs
+ S3C2412_IISFIC
);
153 dbg_showcon(__func__
, con
);
154 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
157 static void s3c2412_snd_rxctrl(struct s3c_i2sv2_info
*i2s
, int on
)
159 void __iomem
*regs
= i2s
->regs
;
162 pr_debug("%s(%d)\n", __func__
, on
);
164 fic
= readl(regs
+ S3C2412_IISFIC
);
165 con
= readl(regs
+ S3C2412_IISCON
);
166 mod
= readl(regs
+ S3C2412_IISMOD
);
168 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
171 con
|= S3C2412_IISCON_RXDMA_ACTIVE
| S3C2412_IISCON_IIS_ACTIVE
;
172 con
&= ~S3C2412_IISCON_RXDMA_PAUSE
;
173 con
&= ~S3C2412_IISCON_RXCH_PAUSE
;
175 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
176 case S3C2412_IISMOD_MODE_TXRX
:
177 case S3C2412_IISMOD_MODE_RXONLY
:
178 /* do nothing, we are in the right mode */
181 case S3C2412_IISMOD_MODE_TXONLY
:
182 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
183 mod
|= S3C2412_IISMOD_MODE_TXRX
;
187 dev_err(i2s
->dev
, "RXEN: Invalid MODE %x in IISMOD\n",
188 mod
& S3C2412_IISMOD_MODE_MASK
);
191 writel(mod
, regs
+ S3C2412_IISMOD
);
192 writel(con
, regs
+ S3C2412_IISCON
);
194 /* See txctrl notes on FIFOs. */
196 con
&= ~S3C2412_IISCON_RXDMA_ACTIVE
;
197 con
|= S3C2412_IISCON_RXDMA_PAUSE
;
198 con
|= S3C2412_IISCON_RXCH_PAUSE
;
200 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
201 case S3C2412_IISMOD_MODE_RXONLY
:
202 con
&= ~S3C2412_IISCON_IIS_ACTIVE
;
203 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
206 case S3C2412_IISMOD_MODE_TXRX
:
207 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
208 mod
|= S3C2412_IISMOD_MODE_TXONLY
;
212 dev_err(i2s
->dev
, "RXDIS: Invalid MODE %x in IISMOD\n",
213 mod
& S3C2412_IISMOD_MODE_MASK
);
216 writel(con
, regs
+ S3C2412_IISCON
);
217 writel(mod
, regs
+ S3C2412_IISMOD
);
220 fic
= readl(regs
+ S3C2412_IISFIC
);
221 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
224 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
227 * Wait for the LR signal to allow synchronisation to the L/R clock
228 * from the codec. May only be needed for slave mode.
230 static int s3c2412_snd_lrsync(struct s3c_i2sv2_info
*i2s
)
233 unsigned long loops
= msecs_to_loops(5);
235 pr_debug("Entered %s\n", __func__
);
238 iiscon
= readl(i2s
->regs
+ S3C2412_IISCON
);
239 if (iiscon
& S3C2412_IISCON_LRINDEX
)
246 printk(KERN_ERR
"%s: timeout\n", __func__
);
254 * Set S3C2412 I2S DAI format
256 static int s3c2412_i2s_set_fmt(struct snd_soc_dai
*cpu_dai
,
259 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
262 pr_debug("Entered %s\n", __func__
);
264 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
265 pr_debug("hw_params r: IISMOD: %x \n", iismod
);
267 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
268 case SND_SOC_DAIFMT_CBM_CFM
:
270 iismod
|= S3C2412_IISMOD_SLAVE
;
272 case SND_SOC_DAIFMT_CBS_CFS
:
274 iismod
&= ~S3C2412_IISMOD_SLAVE
;
277 pr_err("unknwon master/slave format\n");
281 iismod
&= ~S3C2412_IISMOD_SDF_MASK
;
283 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
284 case SND_SOC_DAIFMT_RIGHT_J
:
285 iismod
|= S3C2412_IISMOD_LR_RLOW
;
286 iismod
|= S3C2412_IISMOD_SDF_MSB
;
288 case SND_SOC_DAIFMT_LEFT_J
:
289 iismod
|= S3C2412_IISMOD_LR_RLOW
;
290 iismod
|= S3C2412_IISMOD_SDF_LSB
;
292 case SND_SOC_DAIFMT_I2S
:
293 iismod
&= ~S3C2412_IISMOD_LR_RLOW
;
294 iismod
|= S3C2412_IISMOD_SDF_IIS
;
297 pr_err("Unknown data format\n");
301 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
302 pr_debug("hw_params w: IISMOD: %x \n", iismod
);
306 static int s3c_i2sv2_hw_params(struct snd_pcm_substream
*substream
,
307 struct snd_pcm_hw_params
*params
,
308 struct snd_soc_dai
*dai
)
310 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
311 struct s3c_dma_params
*dma_data
;
314 pr_debug("Entered %s\n", __func__
);
316 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
317 dma_data
= i2s
->dma_playback
;
319 dma_data
= i2s
->dma_capture
;
321 snd_soc_dai_set_dma_data(dai
, substream
, dma_data
);
323 /* Working copies of register */
324 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
325 pr_debug("%s: r: IISMOD: %x\n", __func__
, iismod
);
327 iismod
&= ~S3C64XX_IISMOD_BLC_MASK
;
329 switch (params_format(params
)) {
330 case SNDRV_PCM_FORMAT_S8
:
331 iismod
|= S3C64XX_IISMOD_BLC_8BIT
;
333 case SNDRV_PCM_FORMAT_S16_LE
:
335 case SNDRV_PCM_FORMAT_S24_LE
:
336 iismod
|= S3C64XX_IISMOD_BLC_24BIT
;
340 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
341 pr_debug("%s: w: IISMOD: %x\n", __func__
, iismod
);
346 static int s3c_i2sv2_set_sysclk(struct snd_soc_dai
*cpu_dai
,
347 int clk_id
, unsigned int freq
, int dir
)
349 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
350 u32 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
352 pr_debug("Entered %s\n", __func__
);
353 pr_debug("%s r: IISMOD: %x\n", __func__
, iismod
);
356 case S3C_I2SV2_CLKSRC_PCLK
:
357 iismod
&= ~S3C2412_IISMOD_IMS_SYSMUX
;
360 case S3C_I2SV2_CLKSRC_AUDIOBUS
:
361 iismod
|= S3C2412_IISMOD_IMS_SYSMUX
;
364 case S3C_I2SV2_CLKSRC_CDCLK
:
365 /* Error if controller doesn't have the CDCLKCON bit */
366 if (!(i2s
->feature
& S3C_FEATURE_CDCLKCON
))
370 case SND_SOC_CLOCK_IN
:
371 iismod
|= S3C64XX_IISMOD_CDCLKCON
;
373 case SND_SOC_CLOCK_OUT
:
374 iismod
&= ~S3C64XX_IISMOD_CDCLKCON
;
385 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
386 pr_debug("%s w: IISMOD: %x\n", __func__
, iismod
);
391 static int s3c2412_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
392 struct snd_soc_dai
*dai
)
394 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
395 struct s3c_i2sv2_info
*i2s
= to_info(rtd
->cpu_dai
);
396 int capture
= (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
);
399 struct s3c_dma_params
*dma_data
=
400 snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
402 pr_debug("Entered %s\n", __func__
);
405 case SNDRV_PCM_TRIGGER_START
:
406 /* On start, ensure that the FIFOs are cleared and reset. */
408 writel(capture
? S3C2412_IISFIC_RXFLUSH
: S3C2412_IISFIC_TXFLUSH
,
409 i2s
->regs
+ S3C2412_IISFIC
);
411 /* clear again, just in case */
412 writel(0x0, i2s
->regs
+ S3C2412_IISFIC
);
414 case SNDRV_PCM_TRIGGER_RESUME
:
415 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
417 ret
= s3c2412_snd_lrsync(i2s
);
422 local_irq_save(irqs
);
425 s3c2412_snd_rxctrl(i2s
, 1);
427 s3c2412_snd_txctrl(i2s
, 1);
429 local_irq_restore(irqs
);
432 * Load the next buffer to DMA to meet the reqirement
433 * of the auto reload mechanism of S3C24XX.
434 * This call won't bother S3C64XX.
436 s3c2410_dma_ctrl(dma_data
->channel
, S3C2410_DMAOP_STARTED
);
440 case SNDRV_PCM_TRIGGER_STOP
:
441 case SNDRV_PCM_TRIGGER_SUSPEND
:
442 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
443 local_irq_save(irqs
);
446 s3c2412_snd_rxctrl(i2s
, 0);
448 s3c2412_snd_txctrl(i2s
, 0);
450 local_irq_restore(irqs
);
462 * Set S3C2412 Clock dividers
464 static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
467 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
470 pr_debug("%s(%p, %d, %d)\n", __func__
, cpu_dai
, div_id
, div
);
473 case S3C_I2SV2_DIV_BCLK
:
476 div
= S3C2412_IISMOD_BCLK_16FS
;
480 div
= S3C2412_IISMOD_BCLK_32FS
;
484 div
= S3C2412_IISMOD_BCLK_24FS
;
488 div
= S3C2412_IISMOD_BCLK_48FS
;
495 reg
= readl(i2s
->regs
+ S3C2412_IISMOD
);
496 reg
&= ~S3C2412_IISMOD_BCLK_MASK
;
497 writel(reg
| div
, i2s
->regs
+ S3C2412_IISMOD
);
499 pr_debug("%s: MOD=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISMOD
));
502 case S3C_I2SV2_DIV_RCLK
:
505 div
= S3C2412_IISMOD_RCLK_256FS
;
509 div
= S3C2412_IISMOD_RCLK_384FS
;
513 div
= S3C2412_IISMOD_RCLK_512FS
;
517 div
= S3C2412_IISMOD_RCLK_768FS
;
524 reg
= readl(i2s
->regs
+ S3C2412_IISMOD
);
525 reg
&= ~S3C2412_IISMOD_RCLK_MASK
;
526 writel(reg
| div
, i2s
->regs
+ S3C2412_IISMOD
);
527 pr_debug("%s: MOD=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISMOD
));
530 case S3C_I2SV2_DIV_PRESCALER
:
532 writel((div
<< 8) | S3C2412_IISPSR_PSREN
,
533 i2s
->regs
+ S3C2412_IISPSR
);
535 writel(0x0, i2s
->regs
+ S3C2412_IISPSR
);
537 pr_debug("%s: PSR=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISPSR
));
547 static snd_pcm_sframes_t
s3c2412_i2s_delay(struct snd_pcm_substream
*substream
,
548 struct snd_soc_dai
*dai
)
550 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
551 u32 reg
= readl(i2s
->regs
+ S3C2412_IISFIC
);
552 snd_pcm_sframes_t delay
;
554 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
555 delay
= S3C2412_IISFIC_TXCOUNT(reg
);
557 delay
= S3C2412_IISFIC_RXCOUNT(reg
);
562 struct clk
*s3c_i2sv2_get_clock(struct snd_soc_dai
*cpu_dai
)
564 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
565 u32 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
567 if (iismod
& S3C2412_IISMOD_IMS_SYSMUX
)
568 return i2s
->iis_cclk
;
570 return i2s
->iis_pclk
;
572 EXPORT_SYMBOL_GPL(s3c_i2sv2_get_clock
);
574 /* default table of all avaialable root fs divisors */
575 static unsigned int iis_fs_tab
[] = { 256, 512, 384, 768 };
577 int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc
*info
,
579 unsigned int rate
, struct clk
*clk
)
581 unsigned long clkrate
= clk_get_rate(clk
);
587 signed int deviation
= 0;
588 unsigned int best_fs
= 0;
589 unsigned int best_div
= 0;
590 unsigned int best_rate
= 0;
591 unsigned int best_deviation
= INT_MAX
;
593 pr_debug("Input clock rate %ldHz\n", clkrate
);
598 for (fs
= 0; fs
< ARRAY_SIZE(iis_fs_tab
); fs
++) {
599 fsdiv
= iis_fs_tab
[fs
];
601 fsclk
= clkrate
/ fsdiv
;
604 if ((fsclk
% rate
) > (rate
/ 2))
610 actual
= clkrate
/ (fsdiv
* div
);
611 deviation
= actual
- rate
;
613 printk(KERN_DEBUG
"%ufs: div %u => result %u, deviation %d\n",
614 fsdiv
, div
, actual
, deviation
);
616 deviation
= abs(deviation
);
618 if (deviation
< best_deviation
) {
622 best_deviation
= deviation
;
629 printk(KERN_DEBUG
"best: fs=%u, div=%u, rate=%u\n",
630 best_fs
, best_div
, best_rate
);
632 info
->fs_div
= best_fs
;
633 info
->clk_div
= best_div
;
637 EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate
);
639 int s3c_i2sv2_probe(struct snd_soc_dai
*dai
,
640 struct s3c_i2sv2_info
*i2s
,
643 struct device
*dev
= dai
->dev
;
648 /* record our i2s structure for later use in the callbacks */
649 snd_soc_dai_set_drvdata(dai
, i2s
);
651 i2s
->regs
= ioremap(base
, 0x100);
652 if (i2s
->regs
== NULL
) {
653 dev_err(dev
, "cannot ioremap registers\n");
657 i2s
->iis_pclk
= clk_get(dev
, "iis");
658 if (IS_ERR(i2s
->iis_pclk
)) {
659 dev_err(dev
, "failed to get iis_clock\n");
664 clk_enable(i2s
->iis_pclk
);
666 /* Mark ourselves as in TXRX mode so we can run through our cleanup
667 * process without warnings. */
668 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
669 iismod
|= S3C2412_IISMOD_MODE_TXRX
;
670 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
671 s3c2412_snd_txctrl(i2s
, 0);
672 s3c2412_snd_rxctrl(i2s
, 0);
676 EXPORT_SYMBOL_GPL(s3c_i2sv2_probe
);
679 static int s3c2412_i2s_suspend(struct snd_soc_dai
*dai
)
681 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
685 i2s
->suspend_iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
686 i2s
->suspend_iiscon
= readl(i2s
->regs
+ S3C2412_IISCON
);
687 i2s
->suspend_iispsr
= readl(i2s
->regs
+ S3C2412_IISPSR
);
689 /* some basic suspend checks */
691 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
693 if (iismod
& S3C2412_IISCON_RXDMA_ACTIVE
)
694 pr_warning("%s: RXDMA active?\n", __func__
);
696 if (iismod
& S3C2412_IISCON_TXDMA_ACTIVE
)
697 pr_warning("%s: TXDMA active?\n", __func__
);
699 if (iismod
& S3C2412_IISCON_IIS_ACTIVE
)
700 pr_warning("%s: IIS active\n", __func__
);
706 static int s3c2412_i2s_resume(struct snd_soc_dai
*dai
)
708 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
710 pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n",
711 dai
->active
, i2s
->suspend_iismod
, i2s
->suspend_iiscon
);
714 writel(i2s
->suspend_iiscon
, i2s
->regs
+ S3C2412_IISCON
);
715 writel(i2s
->suspend_iismod
, i2s
->regs
+ S3C2412_IISMOD
);
716 writel(i2s
->suspend_iispsr
, i2s
->regs
+ S3C2412_IISPSR
);
718 writel(S3C2412_IISFIC_RXFLUSH
| S3C2412_IISFIC_TXFLUSH
,
719 i2s
->regs
+ S3C2412_IISFIC
);
722 writel(0x0, i2s
->regs
+ S3C2412_IISFIC
);
728 #define s3c2412_i2s_suspend NULL
729 #define s3c2412_i2s_resume NULL
732 int s3c_i2sv2_register_component(struct device
*dev
, int id
,
733 struct snd_soc_component_driver
*cmp_drv
,
734 struct snd_soc_dai_driver
*dai_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_component(dev
, cmp_drv
, dai_drv
, 1);
754 EXPORT_SYMBOL_GPL(s3c_i2sv2_register_component
);
756 MODULE_LICENSE("GPL");