GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / sound / soc / s3c24xx / s3c-i2s-v2.c
blobea8be4b24d4922368f7ac6cde3d9cc283ff1025f
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 defined(CONFIG_CPU_S5PV210)
37 #define S3C_IIS_V2_SUPPORTED
38 #endif
40 #ifdef CONFIG_PLAT_S3C64XX
41 #define S3C_IIS_V2_SUPPORTED
42 #endif
44 #ifndef S3C_IIS_V2_SUPPORTED
45 #error Unsupported CPU model
46 #endif
48 #define S3C2412_I2S_DEBUG_CON 0
50 static inline struct s3c_i2sv2_info *to_info(struct snd_soc_dai *cpu_dai)
52 return cpu_dai->private_data;
55 #define bit_set(v, b) (((v) & (b)) ? 1 : 0)
57 #if S3C2412_I2S_DEBUG_CON
58 static void dbg_showcon(const char *fn, u32 con)
60 printk(KERN_DEBUG "%s: LRI=%d, TXFEMPT=%d, RXFEMPT=%d, TXFFULL=%d, RXFFULL=%d\n", fn,
61 bit_set(con, S3C2412_IISCON_LRINDEX),
62 bit_set(con, S3C2412_IISCON_TXFIFO_EMPTY),
63 bit_set(con, S3C2412_IISCON_RXFIFO_EMPTY),
64 bit_set(con, S3C2412_IISCON_TXFIFO_FULL),
65 bit_set(con, S3C2412_IISCON_RXFIFO_FULL));
67 printk(KERN_DEBUG "%s: PAUSE: TXDMA=%d, RXDMA=%d, TXCH=%d, RXCH=%d\n",
68 fn,
69 bit_set(con, S3C2412_IISCON_TXDMA_PAUSE),
70 bit_set(con, S3C2412_IISCON_RXDMA_PAUSE),
71 bit_set(con, S3C2412_IISCON_TXCH_PAUSE),
72 bit_set(con, S3C2412_IISCON_RXCH_PAUSE));
73 printk(KERN_DEBUG "%s: ACTIVE: TXDMA=%d, RXDMA=%d, IIS=%d\n", fn,
74 bit_set(con, S3C2412_IISCON_TXDMA_ACTIVE),
75 bit_set(con, S3C2412_IISCON_RXDMA_ACTIVE),
76 bit_set(con, S3C2412_IISCON_IIS_ACTIVE));
78 #else
79 static inline void dbg_showcon(const char *fn, u32 con)
82 #endif
85 /* Turn on or off the transmission path. */
86 static void s3c2412_snd_txctrl(struct s3c_i2sv2_info *i2s, int on)
88 void __iomem *regs = i2s->regs;
89 u32 fic, con, mod;
91 pr_debug("%s(%d)\n", __func__, on);
93 fic = readl(regs + S3C2412_IISFIC);
94 con = readl(regs + S3C2412_IISCON);
95 mod = readl(regs + S3C2412_IISMOD);
97 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
99 if (on) {
100 con |= S3C2412_IISCON_TXDMA_ACTIVE | S3C2412_IISCON_IIS_ACTIVE;
101 con &= ~S3C2412_IISCON_TXDMA_PAUSE;
102 con &= ~S3C2412_IISCON_TXCH_PAUSE;
104 switch (mod & S3C2412_IISMOD_MODE_MASK) {
105 case S3C2412_IISMOD_MODE_TXONLY:
106 case S3C2412_IISMOD_MODE_TXRX:
107 /* do nothing, we are in the right mode */
108 break;
110 case S3C2412_IISMOD_MODE_RXONLY:
111 mod &= ~S3C2412_IISMOD_MODE_MASK;
112 mod |= S3C2412_IISMOD_MODE_TXRX;
113 break;
115 default:
116 dev_err(i2s->dev, "TXEN: Invalid MODE %x in IISMOD\n",
117 mod & S3C2412_IISMOD_MODE_MASK);
118 break;
121 writel(con, regs + S3C2412_IISCON);
122 writel(mod, regs + S3C2412_IISMOD);
123 } else {
124 /* Note, we do not have any indication that the FIFO problems
125 * tha the S3C2410/2440 had apply here, so we should be able
126 * to disable the DMA and TX without resetting the FIFOS.
129 con |= S3C2412_IISCON_TXDMA_PAUSE;
130 con |= S3C2412_IISCON_TXCH_PAUSE;
131 con &= ~S3C2412_IISCON_TXDMA_ACTIVE;
133 switch (mod & S3C2412_IISMOD_MODE_MASK) {
134 case S3C2412_IISMOD_MODE_TXRX:
135 mod &= ~S3C2412_IISMOD_MODE_MASK;
136 mod |= S3C2412_IISMOD_MODE_RXONLY;
137 break;
139 case S3C2412_IISMOD_MODE_TXONLY:
140 mod &= ~S3C2412_IISMOD_MODE_MASK;
141 con &= ~S3C2412_IISCON_IIS_ACTIVE;
142 break;
144 default:
145 dev_err(i2s->dev, "TXDIS: Invalid MODE %x in IISMOD\n",
146 mod & S3C2412_IISMOD_MODE_MASK);
147 break;
150 writel(mod, regs + S3C2412_IISMOD);
151 writel(con, regs + S3C2412_IISCON);
154 fic = readl(regs + S3C2412_IISFIC);
155 dbg_showcon(__func__, con);
156 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
159 static void s3c2412_snd_rxctrl(struct s3c_i2sv2_info *i2s, int on)
161 void __iomem *regs = i2s->regs;
162 u32 fic, con, mod;
164 pr_debug("%s(%d)\n", __func__, on);
166 fic = readl(regs + S3C2412_IISFIC);
167 con = readl(regs + S3C2412_IISCON);
168 mod = readl(regs + S3C2412_IISMOD);
170 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
172 if (on) {
173 con |= S3C2412_IISCON_RXDMA_ACTIVE | S3C2412_IISCON_IIS_ACTIVE;
174 con &= ~S3C2412_IISCON_RXDMA_PAUSE;
175 con &= ~S3C2412_IISCON_RXCH_PAUSE;
177 switch (mod & S3C2412_IISMOD_MODE_MASK) {
178 case S3C2412_IISMOD_MODE_TXRX:
179 case S3C2412_IISMOD_MODE_RXONLY:
180 /* do nothing, we are in the right mode */
181 break;
183 case S3C2412_IISMOD_MODE_TXONLY:
184 mod &= ~S3C2412_IISMOD_MODE_MASK;
185 mod |= S3C2412_IISMOD_MODE_TXRX;
186 break;
188 default:
189 dev_err(i2s->dev, "RXEN: Invalid MODE %x in IISMOD\n",
190 mod & S3C2412_IISMOD_MODE_MASK);
193 writel(mod, regs + S3C2412_IISMOD);
194 writel(con, regs + S3C2412_IISCON);
195 } else {
196 /* See txctrl notes on FIFOs. */
198 con &= ~S3C2412_IISCON_RXDMA_ACTIVE;
199 con |= S3C2412_IISCON_RXDMA_PAUSE;
200 con |= S3C2412_IISCON_RXCH_PAUSE;
202 switch (mod & S3C2412_IISMOD_MODE_MASK) {
203 case S3C2412_IISMOD_MODE_RXONLY:
204 con &= ~S3C2412_IISCON_IIS_ACTIVE;
205 mod &= ~S3C2412_IISMOD_MODE_MASK;
206 break;
208 case S3C2412_IISMOD_MODE_TXRX:
209 mod &= ~S3C2412_IISMOD_MODE_MASK;
210 mod |= S3C2412_IISMOD_MODE_TXONLY;
211 break;
213 default:
214 dev_err(i2s->dev, "RXDIS: Invalid MODE %x in IISMOD\n",
215 mod & S3C2412_IISMOD_MODE_MASK);
218 writel(con, regs + S3C2412_IISCON);
219 writel(mod, regs + S3C2412_IISMOD);
222 fic = readl(regs + S3C2412_IISFIC);
223 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic);
226 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
229 * Wait for the LR signal to allow synchronisation to the L/R clock
230 * from the codec. May only be needed for slave mode.
232 static int s3c2412_snd_lrsync(struct s3c_i2sv2_info *i2s)
234 u32 iiscon;
235 unsigned long loops = msecs_to_loops(5);
237 pr_debug("Entered %s\n", __func__);
239 while (--loops) {
240 iiscon = readl(i2s->regs + S3C2412_IISCON);
241 if (iiscon & S3C2412_IISCON_LRINDEX)
242 break;
244 cpu_relax();
247 if (!loops) {
248 printk(KERN_ERR "%s: timeout\n", __func__);
249 return -ETIMEDOUT;
252 return 0;
256 * Set S3C2412 I2S DAI format
258 static int s3c2412_i2s_set_fmt(struct snd_soc_dai *cpu_dai,
259 unsigned int fmt)
261 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
262 u32 iismod;
264 pr_debug("Entered %s\n", __func__);
266 iismod = readl(i2s->regs + S3C2412_IISMOD);
267 pr_debug("hw_params r: IISMOD: %x \n", iismod);
269 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
270 case SND_SOC_DAIFMT_CBM_CFM:
271 i2s->master = 0;
272 iismod |= S3C2412_IISMOD_SLAVE;
273 break;
274 case SND_SOC_DAIFMT_CBS_CFS:
275 i2s->master = 1;
276 iismod &= ~S3C2412_IISMOD_SLAVE;
277 break;
278 default:
279 pr_err("unknwon master/slave format\n");
280 return -EINVAL;
283 iismod &= ~S3C2412_IISMOD_SDF_MASK;
285 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
286 case SND_SOC_DAIFMT_RIGHT_J:
287 iismod |= S3C2412_IISMOD_LR_RLOW;
288 iismod |= S3C2412_IISMOD_SDF_MSB;
289 break;
290 case SND_SOC_DAIFMT_LEFT_J:
291 iismod |= S3C2412_IISMOD_LR_RLOW;
292 iismod |= S3C2412_IISMOD_SDF_LSB;
293 break;
294 case SND_SOC_DAIFMT_I2S:
295 iismod &= ~S3C2412_IISMOD_LR_RLOW;
296 iismod |= S3C2412_IISMOD_SDF_IIS;
297 break;
298 default:
299 pr_err("Unknown data format\n");
300 return -EINVAL;
303 writel(iismod, i2s->regs + S3C2412_IISMOD);
304 pr_debug("hw_params w: IISMOD: %x \n", iismod);
305 return 0;
308 static int s3c_i2sv2_hw_params(struct snd_pcm_substream *substream,
309 struct snd_pcm_hw_params *params,
310 struct snd_soc_dai *socdai)
312 struct snd_soc_pcm_runtime *rtd = substream->private_data;
313 struct snd_soc_dai_link *dai = rtd->dai;
314 struct s3c_i2sv2_info *i2s = to_info(dai->cpu_dai);
315 struct s3c_dma_params *dma_data;
316 u32 iismod;
318 pr_debug("Entered %s\n", __func__);
320 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
321 dma_data = i2s->dma_playback;
322 else
323 dma_data = i2s->dma_capture;
325 snd_soc_dai_set_dma_data(dai->cpu_dai, substream, dma_data);
327 /* Working copies of register */
328 iismod = readl(i2s->regs + S3C2412_IISMOD);
329 pr_debug("%s: r: IISMOD: %x\n", __func__, iismod);
331 iismod &= ~S3C64XX_IISMOD_BLC_MASK;
332 /* Sample size */
333 switch (params_format(params)) {
334 case SNDRV_PCM_FORMAT_S8:
335 iismod |= S3C64XX_IISMOD_BLC_8BIT;
336 break;
337 case SNDRV_PCM_FORMAT_S16_LE:
338 break;
339 case SNDRV_PCM_FORMAT_S24_LE:
340 iismod |= S3C64XX_IISMOD_BLC_24BIT;
341 break;
344 writel(iismod, i2s->regs + S3C2412_IISMOD);
345 pr_debug("%s: w: IISMOD: %x\n", __func__, iismod);
347 return 0;
350 static int s3c_i2sv2_set_sysclk(struct snd_soc_dai *cpu_dai,
351 int clk_id, unsigned int freq, int dir)
353 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
354 u32 iismod = readl(i2s->regs + S3C2412_IISMOD);
356 pr_debug("Entered %s\n", __func__);
357 pr_debug("%s r: IISMOD: %x\n", __func__, iismod);
359 switch (clk_id) {
360 case S3C_I2SV2_CLKSRC_PCLK:
361 iismod &= ~S3C2412_IISMOD_IMS_SYSMUX;
362 break;
364 case S3C_I2SV2_CLKSRC_AUDIOBUS:
365 iismod |= S3C2412_IISMOD_IMS_SYSMUX;
366 break;
368 case S3C_I2SV2_CLKSRC_CDCLK:
369 /* Error if controller doesn't have the CDCLKCON bit */
370 if (!(i2s->feature & S3C_FEATURE_CDCLKCON))
371 return -EINVAL;
373 switch (dir) {
374 case SND_SOC_CLOCK_IN:
375 iismod |= S3C64XX_IISMOD_CDCLKCON;
376 break;
377 case SND_SOC_CLOCK_OUT:
378 iismod &= ~S3C64XX_IISMOD_CDCLKCON;
379 break;
380 default:
381 return -EINVAL;
383 break;
385 default:
386 return -EINVAL;
389 writel(iismod, i2s->regs + S3C2412_IISMOD);
390 pr_debug("%s w: IISMOD: %x\n", __func__, iismod);
392 return 0;
395 static int s3c2412_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
396 struct snd_soc_dai *dai)
398 struct snd_soc_pcm_runtime *rtd = substream->private_data;
399 struct s3c_i2sv2_info *i2s = to_info(rtd->dai->cpu_dai);
400 int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
401 unsigned long irqs;
402 int ret = 0;
403 struct s3c_dma_params *dma_data =
404 snd_soc_dai_get_dma_data(rtd->dai->cpu_dai, substream);
406 pr_debug("Entered %s\n", __func__);
408 switch (cmd) {
409 case SNDRV_PCM_TRIGGER_START:
410 /* On start, ensure that the FIFOs are cleared and reset. */
412 writel(capture ? S3C2412_IISFIC_RXFLUSH : S3C2412_IISFIC_TXFLUSH,
413 i2s->regs + S3C2412_IISFIC);
415 /* clear again, just in case */
416 writel(0x0, i2s->regs + S3C2412_IISFIC);
418 case SNDRV_PCM_TRIGGER_RESUME:
419 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
420 if (!i2s->master) {
421 ret = s3c2412_snd_lrsync(i2s);
422 if (ret)
423 goto exit_err;
426 local_irq_save(irqs);
428 if (capture)
429 s3c2412_snd_rxctrl(i2s, 1);
430 else
431 s3c2412_snd_txctrl(i2s, 1);
433 local_irq_restore(irqs);
436 * Load the next buffer to DMA to meet the reqirement
437 * of the auto reload mechanism of S3C24XX.
438 * This call won't bother S3C64XX.
440 s3c2410_dma_ctrl(dma_data->channel, S3C2410_DMAOP_STARTED);
442 break;
444 case SNDRV_PCM_TRIGGER_STOP:
445 case SNDRV_PCM_TRIGGER_SUSPEND:
446 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
447 local_irq_save(irqs);
449 if (capture)
450 s3c2412_snd_rxctrl(i2s, 0);
451 else
452 s3c2412_snd_txctrl(i2s, 0);
454 local_irq_restore(irqs);
455 break;
456 default:
457 ret = -EINVAL;
458 break;
461 exit_err:
462 return ret;
466 * Set S3C2412 Clock dividers
468 static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai *cpu_dai,
469 int div_id, int div)
471 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
472 u32 reg;
474 pr_debug("%s(%p, %d, %d)\n", __func__, cpu_dai, div_id, div);
476 switch (div_id) {
477 case S3C_I2SV2_DIV_BCLK:
478 switch (div) {
479 case 16:
480 div = S3C2412_IISMOD_BCLK_16FS;
481 break;
483 case 32:
484 div = S3C2412_IISMOD_BCLK_32FS;
485 break;
487 case 24:
488 div = S3C2412_IISMOD_BCLK_24FS;
489 break;
491 case 48:
492 div = S3C2412_IISMOD_BCLK_48FS;
493 break;
495 default:
496 return -EINVAL;
499 reg = readl(i2s->regs + S3C2412_IISMOD);
500 reg &= ~S3C2412_IISMOD_BCLK_MASK;
501 writel(reg | div, i2s->regs + S3C2412_IISMOD);
503 pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD));
504 break;
506 case S3C_I2SV2_DIV_RCLK:
507 switch (div) {
508 case 256:
509 div = S3C2412_IISMOD_RCLK_256FS;
510 break;
512 case 384:
513 div = S3C2412_IISMOD_RCLK_384FS;
514 break;
516 case 512:
517 div = S3C2412_IISMOD_RCLK_512FS;
518 break;
520 case 768:
521 div = S3C2412_IISMOD_RCLK_768FS;
522 break;
524 default:
525 return -EINVAL;
528 reg = readl(i2s->regs + S3C2412_IISMOD);
529 reg &= ~S3C2412_IISMOD_RCLK_MASK;
530 writel(reg | div, i2s->regs + S3C2412_IISMOD);
531 pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD));
532 break;
534 case S3C_I2SV2_DIV_PRESCALER:
535 if (div >= 0) {
536 writel((div << 8) | S3C2412_IISPSR_PSREN,
537 i2s->regs + S3C2412_IISPSR);
538 } else {
539 writel(0x0, i2s->regs + S3C2412_IISPSR);
541 pr_debug("%s: PSR=%08x\n", __func__, readl(i2s->regs + S3C2412_IISPSR));
542 break;
544 default:
545 return -EINVAL;
548 return 0;
551 static snd_pcm_sframes_t s3c2412_i2s_delay(struct snd_pcm_substream *substream,
552 struct snd_soc_dai *dai)
554 struct s3c_i2sv2_info *i2s = to_info(dai);
555 u32 reg = readl(i2s->regs + S3C2412_IISFIC);
556 snd_pcm_sframes_t delay;
558 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
559 delay = S3C2412_IISFIC_TXCOUNT(reg);
560 else
561 delay = S3C2412_IISFIC_RXCOUNT(reg);
563 return delay;
566 struct clk *s3c_i2sv2_get_clock(struct snd_soc_dai *cpu_dai)
568 struct s3c_i2sv2_info *i2s = to_info(cpu_dai);
569 u32 iismod = readl(i2s->regs + S3C2412_IISMOD);
571 if (iismod & S3C2412_IISMOD_IMS_SYSMUX)
572 return i2s->iis_cclk;
573 else
574 return i2s->iis_pclk;
576 EXPORT_SYMBOL_GPL(s3c_i2sv2_get_clock);
578 /* default table of all avaialable root fs divisors */
579 static unsigned int iis_fs_tab[] = { 256, 512, 384, 768 };
581 int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc *info,
582 unsigned int *fstab,
583 unsigned int rate, struct clk *clk)
585 unsigned long clkrate = clk_get_rate(clk);
586 unsigned int div;
587 unsigned int fsclk;
588 unsigned int actual;
589 unsigned int fs;
590 unsigned int fsdiv;
591 signed int deviation = 0;
592 unsigned int best_fs = 0;
593 unsigned int best_div = 0;
594 unsigned int best_rate = 0;
595 unsigned int best_deviation = INT_MAX;
597 pr_debug("Input clock rate %ldHz\n", clkrate);
599 if (fstab == NULL)
600 fstab = iis_fs_tab;
602 for (fs = 0; fs < ARRAY_SIZE(iis_fs_tab); fs++) {
603 fsdiv = iis_fs_tab[fs];
605 fsclk = clkrate / fsdiv;
606 div = fsclk / rate;
608 if ((fsclk % rate) > (rate / 2))
609 div++;
611 if (div <= 1)
612 continue;
614 actual = clkrate / (fsdiv * div);
615 deviation = actual - rate;
617 printk(KERN_DEBUG "%ufs: div %u => result %u, deviation %d\n",
618 fsdiv, div, actual, deviation);
620 deviation = abs(deviation);
622 if (deviation < best_deviation) {
623 best_fs = fsdiv;
624 best_div = div;
625 best_rate = actual;
626 best_deviation = deviation;
629 if (deviation == 0)
630 break;
633 printk(KERN_DEBUG "best: fs=%u, div=%u, rate=%u\n",
634 best_fs, best_div, best_rate);
636 info->fs_div = best_fs;
637 info->clk_div = best_div;
639 return 0;
641 EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate);
643 int s3c_i2sv2_probe(struct platform_device *pdev,
644 struct snd_soc_dai *dai,
645 struct s3c_i2sv2_info *i2s,
646 unsigned long base)
648 struct device *dev = &pdev->dev;
649 unsigned int iismod;
651 i2s->dev = dev;
653 /* record our i2s structure for later use in the callbacks */
654 dai->private_data = i2s;
656 if (!base) {
657 struct resource *res = platform_get_resource(pdev,
658 IORESOURCE_MEM,
660 if (!res) {
661 dev_err(dev, "Unable to get register resource\n");
662 return -ENXIO;
665 if (!request_mem_region(res->start, resource_size(res),
666 "s3c64xx-i2s-v4")) {
667 dev_err(dev, "Unable to request register region\n");
668 return -EBUSY;
671 base = res->start;
674 i2s->regs = ioremap(base, 0x100);
675 if (i2s->regs == NULL) {
676 dev_err(dev, "cannot ioremap registers\n");
677 return -ENXIO;
680 i2s->iis_pclk = clk_get(dev, "iis");
681 if (IS_ERR(i2s->iis_pclk)) {
682 dev_err(dev, "failed to get iis_clock\n");
683 iounmap(i2s->regs);
684 return -ENOENT;
687 clk_enable(i2s->iis_pclk);
689 /* Mark ourselves as in TXRX mode so we can run through our cleanup
690 * process without warnings. */
691 iismod = readl(i2s->regs + S3C2412_IISMOD);
692 iismod |= S3C2412_IISMOD_MODE_TXRX;
693 writel(iismod, i2s->regs + S3C2412_IISMOD);
694 s3c2412_snd_txctrl(i2s, 0);
695 s3c2412_snd_rxctrl(i2s, 0);
697 return 0;
699 EXPORT_SYMBOL_GPL(s3c_i2sv2_probe);
701 #ifdef CONFIG_PM
702 static int s3c2412_i2s_suspend(struct snd_soc_dai *dai)
704 struct s3c_i2sv2_info *i2s = to_info(dai);
705 u32 iismod;
707 if (dai->active) {
708 i2s->suspend_iismod = readl(i2s->regs + S3C2412_IISMOD);
709 i2s->suspend_iiscon = readl(i2s->regs + S3C2412_IISCON);
710 i2s->suspend_iispsr = readl(i2s->regs + S3C2412_IISPSR);
712 /* some basic suspend checks */
714 iismod = readl(i2s->regs + S3C2412_IISMOD);
716 if (iismod & S3C2412_IISCON_RXDMA_ACTIVE)
717 pr_warning("%s: RXDMA active?\n", __func__);
719 if (iismod & S3C2412_IISCON_TXDMA_ACTIVE)
720 pr_warning("%s: TXDMA active?\n", __func__);
722 if (iismod & S3C2412_IISCON_IIS_ACTIVE)
723 pr_warning("%s: IIS active\n", __func__);
726 return 0;
729 static int s3c2412_i2s_resume(struct snd_soc_dai *dai)
731 struct s3c_i2sv2_info *i2s = to_info(dai);
733 pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n",
734 dai->active, i2s->suspend_iismod, i2s->suspend_iiscon);
736 if (dai->active) {
737 writel(i2s->suspend_iiscon, i2s->regs + S3C2412_IISCON);
738 writel(i2s->suspend_iismod, i2s->regs + S3C2412_IISMOD);
739 writel(i2s->suspend_iispsr, i2s->regs + S3C2412_IISPSR);
741 writel(S3C2412_IISFIC_RXFLUSH | S3C2412_IISFIC_TXFLUSH,
742 i2s->regs + S3C2412_IISFIC);
744 ndelay(250);
745 writel(0x0, i2s->regs + S3C2412_IISFIC);
748 return 0;
750 #else
751 #define s3c2412_i2s_suspend NULL
752 #define s3c2412_i2s_resume NULL
753 #endif
755 int s3c_i2sv2_register_dai(struct snd_soc_dai *dai)
757 struct snd_soc_dai_ops *ops = dai->ops;
759 ops->trigger = s3c2412_i2s_trigger;
760 if (!ops->hw_params)
761 ops->hw_params = s3c_i2sv2_hw_params;
762 ops->set_fmt = s3c2412_i2s_set_fmt;
763 ops->set_clkdiv = s3c2412_i2s_set_clkdiv;
764 ops->set_sysclk = s3c_i2sv2_set_sysclk;
766 /* Allow overriding by (for example) IISv4 */
767 if (!ops->delay)
768 ops->delay = s3c2412_i2s_delay;
770 dai->suspend = s3c2412_i2s_suspend;
771 dai->resume = s3c2412_i2s_resume;
773 return snd_soc_register_dai(dai);
775 EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai);
777 MODULE_LICENSE("GPL");