1 /* sound/soc/s3c24xx/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/init.h>
20 #include <linux/module.h>
21 #include <linux/device.h>
22 #include <linux/delay.h>
23 #include <linux/clk.h>
24 #include <linux/kernel.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/initval.h>
31 #include <sound/soc.h>
33 #include <plat/regs-s3c2412-iis.h>
35 #include <plat/audio.h>
38 #include "s3c-i2s-v2.h"
39 #include "s3c24xx-pcm.h"
41 #undef S3C_IIS_V2_SUPPORTED
43 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
44 #define S3C_IIS_V2_SUPPORTED
47 #ifdef CONFIG_PLAT_S3C64XX
48 #define S3C_IIS_V2_SUPPORTED
51 #ifndef S3C_IIS_V2_SUPPORTED
52 #error Unsupported CPU model
55 #define S3C2412_I2S_DEBUG_CON 0
57 static inline struct s3c_i2sv2_info
*to_info(struct snd_soc_dai
*cpu_dai
)
59 return cpu_dai
->private_data
;
62 #define bit_set(v, b) (((v) & (b)) ? 1 : 0)
64 #if S3C2412_I2S_DEBUG_CON
65 static void dbg_showcon(const char *fn
, u32 con
)
67 printk(KERN_DEBUG
"%s: LRI=%d, TXFEMPT=%d, RXFEMPT=%d, TXFFULL=%d, RXFFULL=%d\n", fn
,
68 bit_set(con
, S3C2412_IISCON_LRINDEX
),
69 bit_set(con
, S3C2412_IISCON_TXFIFO_EMPTY
),
70 bit_set(con
, S3C2412_IISCON_RXFIFO_EMPTY
),
71 bit_set(con
, S3C2412_IISCON_TXFIFO_FULL
),
72 bit_set(con
, S3C2412_IISCON_RXFIFO_FULL
));
74 printk(KERN_DEBUG
"%s: PAUSE: TXDMA=%d, RXDMA=%d, TXCH=%d, RXCH=%d\n",
76 bit_set(con
, S3C2412_IISCON_TXDMA_PAUSE
),
77 bit_set(con
, S3C2412_IISCON_RXDMA_PAUSE
),
78 bit_set(con
, S3C2412_IISCON_TXCH_PAUSE
),
79 bit_set(con
, S3C2412_IISCON_RXCH_PAUSE
));
80 printk(KERN_DEBUG
"%s: ACTIVE: TXDMA=%d, RXDMA=%d, IIS=%d\n", fn
,
81 bit_set(con
, S3C2412_IISCON_TXDMA_ACTIVE
),
82 bit_set(con
, S3C2412_IISCON_RXDMA_ACTIVE
),
83 bit_set(con
, S3C2412_IISCON_IIS_ACTIVE
));
86 static inline void dbg_showcon(const char *fn
, u32 con
)
92 /* Turn on or off the transmission path. */
93 static void s3c2412_snd_txctrl(struct s3c_i2sv2_info
*i2s
, int on
)
95 void __iomem
*regs
= i2s
->regs
;
98 pr_debug("%s(%d)\n", __func__
, on
);
100 fic
= readl(regs
+ S3C2412_IISFIC
);
101 con
= readl(regs
+ S3C2412_IISCON
);
102 mod
= readl(regs
+ S3C2412_IISMOD
);
104 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
107 con
|= S3C2412_IISCON_TXDMA_ACTIVE
| S3C2412_IISCON_IIS_ACTIVE
;
108 con
&= ~S3C2412_IISCON_TXDMA_PAUSE
;
109 con
&= ~S3C2412_IISCON_TXCH_PAUSE
;
111 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
112 case S3C2412_IISMOD_MODE_TXONLY
:
113 case S3C2412_IISMOD_MODE_TXRX
:
114 /* do nothing, we are in the right mode */
117 case S3C2412_IISMOD_MODE_RXONLY
:
118 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
119 mod
|= S3C2412_IISMOD_MODE_TXRX
;
123 dev_err(i2s
->dev
, "TXEN: Invalid MODE %x in IISMOD\n",
124 mod
& S3C2412_IISMOD_MODE_MASK
);
128 writel(con
, regs
+ S3C2412_IISCON
);
129 writel(mod
, regs
+ S3C2412_IISMOD
);
131 /* Note, we do not have any indication that the FIFO problems
132 * tha the S3C2410/2440 had apply here, so we should be able
133 * to disable the DMA and TX without resetting the FIFOS.
136 con
|= S3C2412_IISCON_TXDMA_PAUSE
;
137 con
|= S3C2412_IISCON_TXCH_PAUSE
;
138 con
&= ~S3C2412_IISCON_TXDMA_ACTIVE
;
140 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
141 case S3C2412_IISMOD_MODE_TXRX
:
142 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
143 mod
|= S3C2412_IISMOD_MODE_RXONLY
;
146 case S3C2412_IISMOD_MODE_TXONLY
:
147 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
148 con
&= ~S3C2412_IISCON_IIS_ACTIVE
;
152 dev_err(i2s
->dev
, "TXDIS: Invalid MODE %x in IISMOD\n",
153 mod
& S3C2412_IISMOD_MODE_MASK
);
157 writel(mod
, regs
+ S3C2412_IISMOD
);
158 writel(con
, regs
+ S3C2412_IISCON
);
161 fic
= readl(regs
+ S3C2412_IISFIC
);
162 dbg_showcon(__func__
, con
);
163 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
166 static void s3c2412_snd_rxctrl(struct s3c_i2sv2_info
*i2s
, int on
)
168 void __iomem
*regs
= i2s
->regs
;
171 pr_debug("%s(%d)\n", __func__
, on
);
173 fic
= readl(regs
+ S3C2412_IISFIC
);
174 con
= readl(regs
+ S3C2412_IISCON
);
175 mod
= readl(regs
+ S3C2412_IISMOD
);
177 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
180 con
|= S3C2412_IISCON_RXDMA_ACTIVE
| S3C2412_IISCON_IIS_ACTIVE
;
181 con
&= ~S3C2412_IISCON_RXDMA_PAUSE
;
182 con
&= ~S3C2412_IISCON_RXCH_PAUSE
;
184 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
185 case S3C2412_IISMOD_MODE_TXRX
:
186 case S3C2412_IISMOD_MODE_RXONLY
:
187 /* do nothing, we are in the right mode */
190 case S3C2412_IISMOD_MODE_TXONLY
:
191 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
192 mod
|= S3C2412_IISMOD_MODE_TXRX
;
196 dev_err(i2s
->dev
, "RXEN: Invalid MODE %x in IISMOD\n",
197 mod
& S3C2412_IISMOD_MODE_MASK
);
200 writel(mod
, regs
+ S3C2412_IISMOD
);
201 writel(con
, regs
+ S3C2412_IISCON
);
203 /* See txctrl notes on FIFOs. */
205 con
&= ~S3C2412_IISCON_RXDMA_ACTIVE
;
206 con
|= S3C2412_IISCON_RXDMA_PAUSE
;
207 con
|= S3C2412_IISCON_RXCH_PAUSE
;
209 switch (mod
& S3C2412_IISMOD_MODE_MASK
) {
210 case S3C2412_IISMOD_MODE_RXONLY
:
211 con
&= ~S3C2412_IISCON_IIS_ACTIVE
;
212 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
215 case S3C2412_IISMOD_MODE_TXRX
:
216 mod
&= ~S3C2412_IISMOD_MODE_MASK
;
217 mod
|= S3C2412_IISMOD_MODE_TXONLY
;
221 dev_err(i2s
->dev
, "RXDIS: Invalid MODE %x in IISMOD\n",
222 mod
& S3C2412_IISMOD_MODE_MASK
);
225 writel(con
, regs
+ S3C2412_IISCON
);
226 writel(mod
, regs
+ S3C2412_IISMOD
);
229 fic
= readl(regs
+ S3C2412_IISFIC
);
230 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__
, con
, mod
, fic
);
233 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
236 * Wait for the LR signal to allow synchronisation to the L/R clock
237 * from the codec. May only be needed for slave mode.
239 static int s3c2412_snd_lrsync(struct s3c_i2sv2_info
*i2s
)
242 unsigned long loops
= msecs_to_loops(5);
244 pr_debug("Entered %s\n", __func__
);
247 iiscon
= readl(i2s
->regs
+ S3C2412_IISCON
);
248 if (iiscon
& S3C2412_IISCON_LRINDEX
)
255 printk(KERN_ERR
"%s: timeout\n", __func__
);
263 * Set S3C2412 I2S DAI format
265 static int s3c2412_i2s_set_fmt(struct snd_soc_dai
*cpu_dai
,
268 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
271 pr_debug("Entered %s\n", __func__
);
273 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
274 pr_debug("hw_params r: IISMOD: %x \n", iismod
);
276 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
277 #define IISMOD_MASTER_MASK S3C2412_IISMOD_MASTER_MASK
278 #define IISMOD_SLAVE S3C2412_IISMOD_SLAVE
279 #define IISMOD_MASTER S3C2412_IISMOD_MASTER_INTERNAL
282 #if defined(CONFIG_PLAT_S3C64XX)
283 /* From Rev1.1 datasheet, we have two master and two slave modes:
285 * 00 = master mode, fed from PCLK
286 * 01 = master mode, fed from CLKAUDIO
287 * 10 = slave mode, using PCLK
288 * 11 = slave mode, using I2SCLK
290 #define IISMOD_MASTER_MASK (1 << 11)
291 #define IISMOD_SLAVE (1 << 11)
292 #define IISMOD_MASTER (0 << 11)
295 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
296 case SND_SOC_DAIFMT_CBM_CFM
:
298 iismod
&= ~IISMOD_MASTER_MASK
;
299 iismod
|= IISMOD_SLAVE
;
301 case SND_SOC_DAIFMT_CBS_CFS
:
303 iismod
&= ~IISMOD_MASTER_MASK
;
304 iismod
|= IISMOD_MASTER
;
307 pr_err("unknwon master/slave format\n");
311 iismod
&= ~S3C2412_IISMOD_SDF_MASK
;
313 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
314 case SND_SOC_DAIFMT_RIGHT_J
:
315 iismod
|= S3C2412_IISMOD_SDF_MSB
;
317 case SND_SOC_DAIFMT_LEFT_J
:
318 iismod
|= S3C2412_IISMOD_SDF_LSB
;
320 case SND_SOC_DAIFMT_I2S
:
321 iismod
|= S3C2412_IISMOD_SDF_IIS
;
324 pr_err("Unknown data format\n");
328 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
329 pr_debug("hw_params w: IISMOD: %x \n", iismod
);
333 static int s3c2412_i2s_hw_params(struct snd_pcm_substream
*substream
,
334 struct snd_pcm_hw_params
*params
,
335 struct snd_soc_dai
*socdai
)
337 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
338 struct snd_soc_dai_link
*dai
= rtd
->dai
;
339 struct s3c_i2sv2_info
*i2s
= to_info(dai
->cpu_dai
);
342 pr_debug("Entered %s\n", __func__
);
344 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
345 dai
->cpu_dai
->dma_data
= i2s
->dma_playback
;
347 dai
->cpu_dai
->dma_data
= i2s
->dma_capture
;
349 /* Working copies of register */
350 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
351 pr_debug("%s: r: IISMOD: %x\n", __func__
, iismod
);
353 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
354 switch (params_format(params
)) {
355 case SNDRV_PCM_FORMAT_S8
:
356 iismod
|= S3C2412_IISMOD_8BIT
;
358 case SNDRV_PCM_FORMAT_S16_LE
:
359 iismod
&= ~S3C2412_IISMOD_8BIT
;
364 #ifdef CONFIG_PLAT_S3C64XX
365 iismod
&= ~(S3C64XX_IISMOD_BLC_MASK
| S3C2412_IISMOD_BCLK_MASK
);
367 switch (params_format(params
)) {
368 case SNDRV_PCM_FORMAT_S8
:
369 /* 8 bit sample, 16fs BCLK */
370 iismod
|= (S3C64XX_IISMOD_BLC_8BIT
| S3C2412_IISMOD_BCLK_16FS
);
372 case SNDRV_PCM_FORMAT_S16_LE
:
373 /* 16 bit sample, 32fs BCLK */
375 case SNDRV_PCM_FORMAT_S24_LE
:
376 /* 24 bit sample, 48fs BCLK */
377 iismod
|= (S3C64XX_IISMOD_BLC_24BIT
| S3C2412_IISMOD_BCLK_48FS
);
382 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
383 pr_debug("%s: w: IISMOD: %x\n", __func__
, iismod
);
387 static int s3c2412_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
388 struct snd_soc_dai
*dai
)
390 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
391 struct s3c_i2sv2_info
*i2s
= to_info(rtd
->dai
->cpu_dai
);
392 int capture
= (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
);
395 int channel
= ((struct s3c24xx_pcm_dma_params
*)
396 rtd
->dai
->cpu_dai
->dma_data
)->channel
;
398 pr_debug("Entered %s\n", __func__
);
401 case SNDRV_PCM_TRIGGER_START
:
402 /* On start, ensure that the FIFOs are cleared and reset. */
404 writel(capture
? S3C2412_IISFIC_RXFLUSH
: S3C2412_IISFIC_TXFLUSH
,
405 i2s
->regs
+ S3C2412_IISFIC
);
407 /* clear again, just in case */
408 writel(0x0, i2s
->regs
+ S3C2412_IISFIC
);
410 case SNDRV_PCM_TRIGGER_RESUME
:
411 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
413 ret
= s3c2412_snd_lrsync(i2s
);
418 local_irq_save(irqs
);
421 s3c2412_snd_rxctrl(i2s
, 1);
423 s3c2412_snd_txctrl(i2s
, 1);
425 local_irq_restore(irqs
);
428 * Load the next buffer to DMA to meet the reqirement
429 * of the auto reload mechanism of S3C24XX.
430 * This call won't bother S3C64XX.
432 s3c2410_dma_ctrl(channel
, S3C2410_DMAOP_STARTED
);
436 case SNDRV_PCM_TRIGGER_STOP
:
437 case SNDRV_PCM_TRIGGER_SUSPEND
:
438 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
439 local_irq_save(irqs
);
442 s3c2412_snd_rxctrl(i2s
, 0);
444 s3c2412_snd_txctrl(i2s
, 0);
446 local_irq_restore(irqs
);
458 * Set S3C2412 Clock dividers
460 static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
463 struct s3c_i2sv2_info
*i2s
= to_info(cpu_dai
);
466 pr_debug("%s(%p, %d, %d)\n", __func__
, cpu_dai
, div_id
, div
);
469 case S3C_I2SV2_DIV_BCLK
:
470 reg
= readl(i2s
->regs
+ S3C2412_IISMOD
);
471 reg
&= ~S3C2412_IISMOD_BCLK_MASK
;
472 writel(reg
| div
, i2s
->regs
+ S3C2412_IISMOD
);
474 pr_debug("%s: MOD=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISMOD
));
477 case S3C_I2SV2_DIV_RCLK
:
479 /* convert value to bit field */
483 div
= S3C2412_IISMOD_RCLK_256FS
;
487 div
= S3C2412_IISMOD_RCLK_384FS
;
491 div
= S3C2412_IISMOD_RCLK_512FS
;
495 div
= S3C2412_IISMOD_RCLK_768FS
;
503 reg
= readl(i2s
->regs
+ S3C2412_IISMOD
);
504 reg
&= ~S3C2412_IISMOD_RCLK_MASK
;
505 writel(reg
| div
, i2s
->regs
+ S3C2412_IISMOD
);
506 pr_debug("%s: MOD=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISMOD
));
509 case S3C_I2SV2_DIV_PRESCALER
:
511 writel((div
<< 8) | S3C2412_IISPSR_PSREN
,
512 i2s
->regs
+ S3C2412_IISPSR
);
514 writel(0x0, i2s
->regs
+ S3C2412_IISPSR
);
516 pr_debug("%s: PSR=%08x\n", __func__
, readl(i2s
->regs
+ S3C2412_IISPSR
));
526 /* default table of all avaialable root fs divisors */
527 static unsigned int iis_fs_tab
[] = { 256, 512, 384, 768 };
529 int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc
*info
,
531 unsigned int rate
, struct clk
*clk
)
533 unsigned long clkrate
= clk_get_rate(clk
);
539 signed int deviation
= 0;
540 unsigned int best_fs
= 0;
541 unsigned int best_div
= 0;
542 unsigned int best_rate
= 0;
543 unsigned int best_deviation
= INT_MAX
;
545 pr_debug("Input clock rate %ldHz\n", clkrate
);
550 for (fs
= 0; fs
< ARRAY_SIZE(iis_fs_tab
); fs
++) {
551 fsdiv
= iis_fs_tab
[fs
];
553 fsclk
= clkrate
/ fsdiv
;
556 if ((fsclk
% rate
) > (rate
/ 2))
562 actual
= clkrate
/ (fsdiv
* div
);
563 deviation
= actual
- rate
;
565 printk(KERN_DEBUG
"%ufs: div %u => result %u, deviation %d\n",
566 fsdiv
, div
, actual
, deviation
);
568 deviation
= abs(deviation
);
570 if (deviation
< best_deviation
) {
574 best_deviation
= deviation
;
581 printk(KERN_DEBUG
"best: fs=%u, div=%u, rate=%u\n",
582 best_fs
, best_div
, best_rate
);
584 info
->fs_div
= best_fs
;
585 info
->clk_div
= best_div
;
589 EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate
);
591 int s3c_i2sv2_probe(struct platform_device
*pdev
,
592 struct snd_soc_dai
*dai
,
593 struct s3c_i2sv2_info
*i2s
,
596 struct device
*dev
= &pdev
->dev
;
601 /* record our i2s structure for later use in the callbacks */
602 dai
->private_data
= i2s
;
605 struct resource
*res
= platform_get_resource(pdev
,
609 dev_err(dev
, "Unable to get register resource\n");
613 if (!request_mem_region(res
->start
, resource_size(res
),
615 dev_err(dev
, "Unable to request register region\n");
622 i2s
->regs
= ioremap(base
, 0x100);
623 if (i2s
->regs
== NULL
) {
624 dev_err(dev
, "cannot ioremap registers\n");
628 i2s
->iis_pclk
= clk_get(dev
, "iis");
629 if (i2s
->iis_pclk
== NULL
) {
630 dev_err(dev
, "failed to get iis_clock\n");
635 clk_enable(i2s
->iis_pclk
);
637 /* Mark ourselves as in TXRX mode so we can run through our cleanup
638 * process without warnings. */
639 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
640 iismod
|= S3C2412_IISMOD_MODE_TXRX
;
641 writel(iismod
, i2s
->regs
+ S3C2412_IISMOD
);
642 s3c2412_snd_txctrl(i2s
, 0);
643 s3c2412_snd_rxctrl(i2s
, 0);
647 EXPORT_SYMBOL_GPL(s3c_i2sv2_probe
);
650 static int s3c2412_i2s_suspend(struct snd_soc_dai
*dai
)
652 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
656 i2s
->suspend_iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
657 i2s
->suspend_iiscon
= readl(i2s
->regs
+ S3C2412_IISCON
);
658 i2s
->suspend_iispsr
= readl(i2s
->regs
+ S3C2412_IISPSR
);
660 /* some basic suspend checks */
662 iismod
= readl(i2s
->regs
+ S3C2412_IISMOD
);
664 if (iismod
& S3C2412_IISCON_RXDMA_ACTIVE
)
665 pr_warning("%s: RXDMA active?\n", __func__
);
667 if (iismod
& S3C2412_IISCON_TXDMA_ACTIVE
)
668 pr_warning("%s: TXDMA active?\n", __func__
);
670 if (iismod
& S3C2412_IISCON_IIS_ACTIVE
)
671 pr_warning("%s: IIS active\n", __func__
);
677 static int s3c2412_i2s_resume(struct snd_soc_dai
*dai
)
679 struct s3c_i2sv2_info
*i2s
= to_info(dai
);
681 pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n",
682 dai
->active
, i2s
->suspend_iismod
, i2s
->suspend_iiscon
);
685 writel(i2s
->suspend_iiscon
, i2s
->regs
+ S3C2412_IISCON
);
686 writel(i2s
->suspend_iismod
, i2s
->regs
+ S3C2412_IISMOD
);
687 writel(i2s
->suspend_iispsr
, i2s
->regs
+ S3C2412_IISPSR
);
689 writel(S3C2412_IISFIC_RXFLUSH
| S3C2412_IISFIC_TXFLUSH
,
690 i2s
->regs
+ S3C2412_IISFIC
);
693 writel(0x0, i2s
->regs
+ S3C2412_IISFIC
);
699 #define s3c2412_i2s_suspend NULL
700 #define s3c2412_i2s_resume NULL
703 int s3c_i2sv2_register_dai(struct snd_soc_dai
*dai
)
705 struct snd_soc_dai_ops
*ops
= dai
->ops
;
707 ops
->trigger
= s3c2412_i2s_trigger
;
708 ops
->hw_params
= s3c2412_i2s_hw_params
;
709 ops
->set_fmt
= s3c2412_i2s_set_fmt
;
710 ops
->set_clkdiv
= s3c2412_i2s_set_clkdiv
;
712 dai
->suspend
= s3c2412_i2s_suspend
;
713 dai
->resume
= s3c2412_i2s_resume
;
715 return snd_soc_register_dai(dai
);
717 EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai
);
719 MODULE_LICENSE("GPL");