Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
[linux/fpc-iii.git] / sound / soc / s3c24xx / s3c-i2s-v2.c
blob13311c8cf96546bf92207b9f5193b2a62c6ff64c
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/delay.h>
20 #include <linux/clk.h>
21 #include <linux/io.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
27 #include <mach/dma.h>
29 #include "regs-i2s-v2.h"
30 #include "s3c-i2s-v2.h"
31 #include "s3c-dma.h"
33 #undef S3C_IIS_V2_SUPPORTED
35 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
36 #define S3C_IIS_V2_SUPPORTED
37 #endif
39 #ifdef CONFIG_PLAT_S3C64XX
40 #define S3C_IIS_V2_SUPPORTED
41 #endif
43 #ifndef S3C_IIS_V2_SUPPORTED
44 #error Unsupported CPU model
45 #endif
47 #define S3C2412_I2S_DEBUG_CON 0
49 static inline struct s3c_i2sv2_info *to_info(struct snd_soc_dai *cpu_dai)
51 return cpu_dai->private_data;
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",
67 fn,
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));
77 #else
78 static inline void dbg_showcon(const char *fn, u32 con)
81 #endif
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;
88 u32 fic, con, mod;
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);
98 if (on) {
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 */
107 break;
109 case S3C2412_IISMOD_MODE_RXONLY:
110 mod &= ~S3C2412_IISMOD_MODE_MASK;
111 mod |= S3C2412_IISMOD_MODE_TXRX;
112 break;
114 default:
115 dev_err(i2s->dev, "TXEN: Invalid MODE %x in IISMOD\n",
116 mod & S3C2412_IISMOD_MODE_MASK);
117 break;
120 writel(con, regs + S3C2412_IISCON);
121 writel(mod, regs + S3C2412_IISMOD);
122 } else {
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;
136 break;
138 case S3C2412_IISMOD_MODE_TXONLY:
139 mod &= ~S3C2412_IISMOD_MODE_MASK;
140 con &= ~S3C2412_IISCON_IIS_ACTIVE;
141 break;
143 default:
144 dev_err(i2s->dev, "TXDIS: Invalid MODE %x in IISMOD\n",
145 mod & S3C2412_IISMOD_MODE_MASK);
146 break;
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;
161 u32 fic, con, mod;
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);
171 if (on) {
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 */
180 break;
182 case S3C2412_IISMOD_MODE_TXONLY:
183 mod &= ~S3C2412_IISMOD_MODE_MASK;
184 mod |= S3C2412_IISMOD_MODE_TXRX;
185 break;
187 default:
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);
194 } else {
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;
205 break;
207 case S3C2412_IISMOD_MODE_TXRX:
208 mod &= ~S3C2412_IISMOD_MODE_MASK;
209 mod |= S3C2412_IISMOD_MODE_TXONLY;
210 break;
212 default:
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)
233 u32 iiscon;
234 unsigned long loops = msecs_to_loops(5);
236 pr_debug("Entered %s\n", __func__);
238 while (--loops) {
239 iiscon = readl(i2s->regs + S3C2412_IISCON);
240 if (iiscon & S3C2412_IISCON_LRINDEX)
241 break;
243 cpu_relax();
246 if (!loops) {
247 printk(KERN_ERR "%s: timeout\n", __func__);
248 return -ETIMEDOUT;
251 return 0;
255 * Set S3C2412 I2S DAI format
257 static int s3c2412_i2s_set_fmt(struct snd_soc_dai *cpu_dai,
258 unsigned int fmt)
260 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
261 u32 iismod;
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:
270 i2s->master = 0;
271 iismod |= S3C2412_IISMOD_SLAVE;
272 break;
273 case SND_SOC_DAIFMT_CBS_CFS:
274 i2s->master = 1;
275 iismod &= ~S3C2412_IISMOD_SLAVE;
276 break;
277 default:
278 pr_err("unknwon master/slave format\n");
279 return -EINVAL;
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;
288 break;
289 case SND_SOC_DAIFMT_LEFT_J:
290 iismod |= S3C2412_IISMOD_LR_RLOW;
291 iismod |= S3C2412_IISMOD_SDF_LSB;
292 break;
293 case SND_SOC_DAIFMT_I2S:
294 iismod &= ~S3C2412_IISMOD_LR_RLOW;
295 iismod |= S3C2412_IISMOD_SDF_IIS;
296 break;
297 default:
298 pr_err("Unknown data format\n");
299 return -EINVAL;
302 writel(iismod, i2s->regs + S3C2412_IISMOD);
303 pr_debug("hw_params w: IISMOD: %x \n", iismod);
304 return 0;
307 static int s3c_i2sv2_hw_params(struct snd_pcm_substream *substream,
308 struct snd_pcm_hw_params *params,
309 struct snd_soc_dai *socdai)
311 struct snd_soc_pcm_runtime *rtd = substream->private_data;
312 struct snd_soc_dai_link *dai = rtd->dai;
313 struct s3c_i2sv2_info *i2s = to_info(dai->cpu_dai);
314 struct s3c_dma_params *dma_data;
315 u32 iismod;
317 pr_debug("Entered %s\n", __func__);
319 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
320 dma_data = i2s->dma_playback;
321 else
322 dma_data = i2s->dma_capture;
324 snd_soc_dai_set_dma_data(dai->cpu_dai, substream, dma_data);
326 /* Working copies of register */
327 iismod = readl(i2s->regs + S3C2412_IISMOD);
328 pr_debug("%s: r: IISMOD: %x\n", __func__, iismod);
330 iismod &= ~S3C64XX_IISMOD_BLC_MASK;
331 /* Sample size */
332 switch (params_format(params)) {
333 case SNDRV_PCM_FORMAT_S8:
334 iismod |= S3C64XX_IISMOD_BLC_8BIT;
335 break;
336 case SNDRV_PCM_FORMAT_S16_LE:
337 break;
338 case SNDRV_PCM_FORMAT_S24_LE:
339 iismod |= S3C64XX_IISMOD_BLC_24BIT;
340 break;
343 writel(iismod, i2s->regs + S3C2412_IISMOD);
344 pr_debug("%s: w: IISMOD: %x\n", __func__, iismod);
346 return 0;
349 static int s3c_i2sv2_set_sysclk(struct snd_soc_dai *cpu_dai,
350 int clk_id, unsigned int freq, int dir)
352 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
353 u32 iismod = readl(i2s->regs + S3C2412_IISMOD);
355 pr_debug("Entered %s\n", __func__);
356 pr_debug("%s r: IISMOD: %x\n", __func__, iismod);
358 switch (clk_id) {
359 case S3C_I2SV2_CLKSRC_PCLK:
360 iismod &= ~S3C2412_IISMOD_IMS_SYSMUX;
361 break;
363 case S3C_I2SV2_CLKSRC_AUDIOBUS:
364 iismod |= S3C2412_IISMOD_IMS_SYSMUX;
365 break;
367 case S3C_I2SV2_CLKSRC_CDCLK:
368 /* Error if controller doesn't have the CDCLKCON bit */
369 if (!(i2s->feature & S3C_FEATURE_CDCLKCON))
370 return -EINVAL;
372 switch (dir) {
373 case SND_SOC_CLOCK_IN:
374 iismod |= S3C64XX_IISMOD_CDCLKCON;
375 break;
376 case SND_SOC_CLOCK_OUT:
377 iismod &= ~S3C64XX_IISMOD_CDCLKCON;
378 break;
379 default:
380 return -EINVAL;
382 break;
384 default:
385 return -EINVAL;
388 writel(iismod, i2s->regs + S3C2412_IISMOD);
389 pr_debug("%s w: IISMOD: %x\n", __func__, iismod);
391 return 0;
394 static int s3c2412_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
395 struct snd_soc_dai *dai)
397 struct snd_soc_pcm_runtime *rtd = substream->private_data;
398 struct s3c_i2sv2_info *i2s = to_info(rtd->dai->cpu_dai);
399 int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
400 unsigned long irqs;
401 int ret = 0;
402 struct s3c_dma_params *dma_data =
403 snd_soc_dai_get_dma_data(rtd->dai->cpu_dai, substream);
405 pr_debug("Entered %s\n", __func__);
407 switch (cmd) {
408 case SNDRV_PCM_TRIGGER_START:
409 /* On start, ensure that the FIFOs are cleared and reset. */
411 writel(capture ? S3C2412_IISFIC_RXFLUSH : S3C2412_IISFIC_TXFLUSH,
412 i2s->regs + S3C2412_IISFIC);
414 /* clear again, just in case */
415 writel(0x0, i2s->regs + S3C2412_IISFIC);
417 case SNDRV_PCM_TRIGGER_RESUME:
418 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
419 if (!i2s->master) {
420 ret = s3c2412_snd_lrsync(i2s);
421 if (ret)
422 goto exit_err;
425 local_irq_save(irqs);
427 if (capture)
428 s3c2412_snd_rxctrl(i2s, 1);
429 else
430 s3c2412_snd_txctrl(i2s, 1);
432 local_irq_restore(irqs);
435 * Load the next buffer to DMA to meet the reqirement
436 * of the auto reload mechanism of S3C24XX.
437 * This call won't bother S3C64XX.
439 s3c2410_dma_ctrl(dma_data->channel, S3C2410_DMAOP_STARTED);
441 break;
443 case SNDRV_PCM_TRIGGER_STOP:
444 case SNDRV_PCM_TRIGGER_SUSPEND:
445 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
446 local_irq_save(irqs);
448 if (capture)
449 s3c2412_snd_rxctrl(i2s, 0);
450 else
451 s3c2412_snd_txctrl(i2s, 0);
453 local_irq_restore(irqs);
454 break;
455 default:
456 ret = -EINVAL;
457 break;
460 exit_err:
461 return ret;
465 * Set S3C2412 Clock dividers
467 static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai *cpu_dai,
468 int div_id, int div)
470 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
471 u32 reg;
473 pr_debug("%s(%p, %d, %d)\n", __func__, cpu_dai, div_id, div);
475 switch (div_id) {
476 case S3C_I2SV2_DIV_BCLK:
477 switch (div) {
478 case 16:
479 div = S3C2412_IISMOD_BCLK_16FS;
480 break;
482 case 32:
483 div = S3C2412_IISMOD_BCLK_32FS;
484 break;
486 case 24:
487 div = S3C2412_IISMOD_BCLK_24FS;
488 break;
490 case 48:
491 div = S3C2412_IISMOD_BCLK_48FS;
492 break;
494 default:
495 return -EINVAL;
498 reg = readl(i2s->regs + S3C2412_IISMOD);
499 reg &= ~S3C2412_IISMOD_BCLK_MASK;
500 writel(reg | div, i2s->regs + S3C2412_IISMOD);
502 pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD));
503 break;
505 case S3C_I2SV2_DIV_RCLK:
506 switch (div) {
507 case 256:
508 div = S3C2412_IISMOD_RCLK_256FS;
509 break;
511 case 384:
512 div = S3C2412_IISMOD_RCLK_384FS;
513 break;
515 case 512:
516 div = S3C2412_IISMOD_RCLK_512FS;
517 break;
519 case 768:
520 div = S3C2412_IISMOD_RCLK_768FS;
521 break;
523 default:
524 return -EINVAL;
527 reg = readl(i2s->regs + S3C2412_IISMOD);
528 reg &= ~S3C2412_IISMOD_RCLK_MASK;
529 writel(reg | div, i2s->regs + S3C2412_IISMOD);
530 pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD));
531 break;
533 case S3C_I2SV2_DIV_PRESCALER:
534 if (div >= 0) {
535 writel((div << 8) | S3C2412_IISPSR_PSREN,
536 i2s->regs + S3C2412_IISPSR);
537 } else {
538 writel(0x0, i2s->regs + S3C2412_IISPSR);
540 pr_debug("%s: PSR=%08x\n", __func__, readl(i2s->regs + S3C2412_IISPSR));
541 break;
543 default:
544 return -EINVAL;
547 return 0;
550 static snd_pcm_sframes_t s3c2412_i2s_delay(struct snd_pcm_substream *substream,
551 struct snd_soc_dai *dai)
553 struct s3c_i2sv2_info *i2s = to_info(dai);
554 u32 reg = readl(i2s->regs + S3C2412_IISFIC);
555 snd_pcm_sframes_t delay;
557 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
558 delay = S3C2412_IISFIC_TXCOUNT(reg);
559 else
560 delay = S3C2412_IISFIC_RXCOUNT(reg);
562 return delay;
565 struct clk *s3c_i2sv2_get_clock(struct snd_soc_dai *cpu_dai)
567 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
568 u32 iismod = readl(i2s->regs + S3C2412_IISMOD);
570 if (iismod & S3C2412_IISMOD_IMS_SYSMUX)
571 return i2s->iis_cclk;
572 else
573 return i2s->iis_pclk;
575 EXPORT_SYMBOL_GPL(s3c_i2sv2_get_clock);
577 /* default table of all avaialable root fs divisors */
578 static unsigned int iis_fs_tab[] = { 256, 512, 384, 768 };
580 int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc *info,
581 unsigned int *fstab,
582 unsigned int rate, struct clk *clk)
584 unsigned long clkrate = clk_get_rate(clk);
585 unsigned int div;
586 unsigned int fsclk;
587 unsigned int actual;
588 unsigned int fs;
589 unsigned int fsdiv;
590 signed int deviation = 0;
591 unsigned int best_fs = 0;
592 unsigned int best_div = 0;
593 unsigned int best_rate = 0;
594 unsigned int best_deviation = INT_MAX;
596 pr_debug("Input clock rate %ldHz\n", clkrate);
598 if (fstab == NULL)
599 fstab = iis_fs_tab;
601 for (fs = 0; fs < ARRAY_SIZE(iis_fs_tab); fs++) {
602 fsdiv = iis_fs_tab[fs];
604 fsclk = clkrate / fsdiv;
605 div = fsclk / rate;
607 if ((fsclk % rate) > (rate / 2))
608 div++;
610 if (div <= 1)
611 continue;
613 actual = clkrate / (fsdiv * div);
614 deviation = actual - rate;
616 printk(KERN_DEBUG "%ufs: div %u => result %u, deviation %d\n",
617 fsdiv, div, actual, deviation);
619 deviation = abs(deviation);
621 if (deviation < best_deviation) {
622 best_fs = fsdiv;
623 best_div = div;
624 best_rate = actual;
625 best_deviation = deviation;
628 if (deviation == 0)
629 break;
632 printk(KERN_DEBUG "best: fs=%u, div=%u, rate=%u\n",
633 best_fs, best_div, best_rate);
635 info->fs_div = best_fs;
636 info->clk_div = best_div;
638 return 0;
640 EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate);
642 int s3c_i2sv2_probe(struct platform_device *pdev,
643 struct snd_soc_dai *dai,
644 struct s3c_i2sv2_info *i2s,
645 unsigned long base)
647 struct device *dev = &pdev->dev;
648 unsigned int iismod;
650 i2s->dev = dev;
652 /* record our i2s structure for later use in the callbacks */
653 dai->private_data = i2s;
655 if (!base) {
656 struct resource *res = platform_get_resource(pdev,
657 IORESOURCE_MEM,
659 if (!res) {
660 dev_err(dev, "Unable to get register resource\n");
661 return -ENXIO;
664 if (!request_mem_region(res->start, resource_size(res),
665 "s3c64xx-i2s-v4")) {
666 dev_err(dev, "Unable to request register region\n");
667 return -EBUSY;
670 base = res->start;
673 i2s->regs = ioremap(base, 0x100);
674 if (i2s->regs == NULL) {
675 dev_err(dev, "cannot ioremap registers\n");
676 return -ENXIO;
679 i2s->iis_pclk = clk_get(dev, "iis");
680 if (IS_ERR(i2s->iis_pclk)) {
681 dev_err(dev, "failed to get iis_clock\n");
682 iounmap(i2s->regs);
683 return -ENOENT;
686 clk_enable(i2s->iis_pclk);
688 /* Mark ourselves as in TXRX mode so we can run through our cleanup
689 * process without warnings. */
690 iismod = readl(i2s->regs + S3C2412_IISMOD);
691 iismod |= S3C2412_IISMOD_MODE_TXRX;
692 writel(iismod, i2s->regs + S3C2412_IISMOD);
693 s3c2412_snd_txctrl(i2s, 0);
694 s3c2412_snd_rxctrl(i2s, 0);
696 return 0;
698 EXPORT_SYMBOL_GPL(s3c_i2sv2_probe);
700 #ifdef CONFIG_PM
701 static int s3c2412_i2s_suspend(struct snd_soc_dai *dai)
703 struct s3c_i2sv2_info *i2s = to_info(dai);
704 u32 iismod;
706 if (dai->active) {
707 i2s->suspend_iismod = readl(i2s->regs + S3C2412_IISMOD);
708 i2s->suspend_iiscon = readl(i2s->regs + S3C2412_IISCON);
709 i2s->suspend_iispsr = readl(i2s->regs + S3C2412_IISPSR);
711 /* some basic suspend checks */
713 iismod = readl(i2s->regs + S3C2412_IISMOD);
715 if (iismod & S3C2412_IISCON_RXDMA_ACTIVE)
716 pr_warning("%s: RXDMA active?\n", __func__);
718 if (iismod & S3C2412_IISCON_TXDMA_ACTIVE)
719 pr_warning("%s: TXDMA active?\n", __func__);
721 if (iismod & S3C2412_IISCON_IIS_ACTIVE)
722 pr_warning("%s: IIS active\n", __func__);
725 return 0;
728 static int s3c2412_i2s_resume(struct snd_soc_dai *dai)
730 struct s3c_i2sv2_info *i2s = to_info(dai);
732 pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n",
733 dai->active, i2s->suspend_iismod, i2s->suspend_iiscon);
735 if (dai->active) {
736 writel(i2s->suspend_iiscon, i2s->regs + S3C2412_IISCON);
737 writel(i2s->suspend_iismod, i2s->regs + S3C2412_IISMOD);
738 writel(i2s->suspend_iispsr, i2s->regs + S3C2412_IISPSR);
740 writel(S3C2412_IISFIC_RXFLUSH | S3C2412_IISFIC_TXFLUSH,
741 i2s->regs + S3C2412_IISFIC);
743 ndelay(250);
744 writel(0x0, i2s->regs + S3C2412_IISFIC);
747 return 0;
749 #else
750 #define s3c2412_i2s_suspend NULL
751 #define s3c2412_i2s_resume NULL
752 #endif
754 int s3c_i2sv2_register_dai(struct snd_soc_dai *dai)
756 struct snd_soc_dai_ops *ops = dai->ops;
758 ops->trigger = s3c2412_i2s_trigger;
759 if (!ops->hw_params)
760 ops->hw_params = s3c_i2sv2_hw_params;
761 ops->set_fmt = s3c2412_i2s_set_fmt;
762 ops->set_clkdiv = s3c2412_i2s_set_clkdiv;
763 ops->set_sysclk = s3c_i2sv2_set_sysclk;
765 /* Allow overriding by (for example) IISv4 */
766 if (!ops->delay)
767 ops->delay = s3c2412_i2s_delay;
769 dai->suspend = s3c2412_i2s_suspend;
770 dai->resume = s3c2412_i2s_resume;
772 return snd_soc_register_dai(dai);
774 EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai);
776 MODULE_LICENSE("GPL");