2 * s3c24xx-i2s.c -- ALSA Soc Audio Layer
4 * (c) 2006 Wolfson Microelectronics PLC.
5 * Graeme Gregory graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
7 * Copyright 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/init.h>
18 #include <linux/module.h>
19 #include <linux/device.h>
20 #include <linux/delay.h>
21 #include <linux/clk.h>
22 #include <linux/jiffies.h>
24 #include <linux/gpio.h>
26 #include <sound/core.h>
27 #include <sound/pcm.h>
28 #include <sound/pcm_params.h>
29 #include <sound/initval.h>
30 #include <sound/soc.h>
32 #include <mach/hardware.h>
33 #include <mach/regs-gpio.h>
34 #include <mach/regs-clock.h>
35 #include <plat/audio.h>
39 #include <plat/regs-iis.h>
41 #include "s3c24xx-pcm.h"
42 #include "s3c24xx-i2s.h"
44 static struct s3c2410_dma_client s3c24xx_dma_client_out
= {
45 .name
= "I2S PCM Stereo out"
48 static struct s3c2410_dma_client s3c24xx_dma_client_in
= {
49 .name
= "I2S PCM Stereo in"
52 static struct s3c24xx_pcm_dma_params s3c24xx_i2s_pcm_stereo_out
= {
53 .client
= &s3c24xx_dma_client_out
,
54 .channel
= DMACH_I2S_OUT
,
55 .dma_addr
= S3C2410_PA_IIS
+ S3C2410_IISFIFO
,
59 static struct s3c24xx_pcm_dma_params s3c24xx_i2s_pcm_stereo_in
= {
60 .client
= &s3c24xx_dma_client_in
,
61 .channel
= DMACH_I2S_IN
,
62 .dma_addr
= S3C2410_PA_IIS
+ S3C2410_IISFIFO
,
66 struct s3c24xx_i2s_info
{
74 static struct s3c24xx_i2s_info s3c24xx_i2s
;
76 static void s3c24xx_snd_txctrl(int on
)
82 pr_debug("Entered %s\n", __func__
);
84 iisfcon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
85 iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
86 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
88 pr_debug("r: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
91 iisfcon
|= S3C2410_IISFCON_TXDMA
| S3C2410_IISFCON_TXENABLE
;
92 iiscon
|= S3C2410_IISCON_TXDMAEN
| S3C2410_IISCON_IISEN
;
93 iiscon
&= ~S3C2410_IISCON_TXIDLE
;
94 iismod
|= S3C2410_IISMOD_TXMODE
;
96 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
97 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
98 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
100 /* note, we have to disable the FIFOs otherwise bad things
101 * seem to happen when the DMA stops. According to the
102 * Samsung supplied kernel, this should allow the DMA
103 * engine and FIFOs to reset. If this isn't allowed, the
104 * DMA engine will simply freeze randomly.
107 iisfcon
&= ~S3C2410_IISFCON_TXENABLE
;
108 iisfcon
&= ~S3C2410_IISFCON_TXDMA
;
109 iiscon
|= S3C2410_IISCON_TXIDLE
;
110 iiscon
&= ~S3C2410_IISCON_TXDMAEN
;
111 iismod
&= ~S3C2410_IISMOD_TXMODE
;
113 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
114 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
115 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
118 pr_debug("w: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
121 static void s3c24xx_snd_rxctrl(int on
)
127 pr_debug("Entered %s\n", __func__
);
129 iisfcon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
130 iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
131 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
133 pr_debug("r: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
136 iisfcon
|= S3C2410_IISFCON_RXDMA
| S3C2410_IISFCON_RXENABLE
;
137 iiscon
|= S3C2410_IISCON_RXDMAEN
| S3C2410_IISCON_IISEN
;
138 iiscon
&= ~S3C2410_IISCON_RXIDLE
;
139 iismod
|= S3C2410_IISMOD_RXMODE
;
141 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
142 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
143 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
145 /* note, we have to disable the FIFOs otherwise bad things
146 * seem to happen when the DMA stops. According to the
147 * Samsung supplied kernel, this should allow the DMA
148 * engine and FIFOs to reset. If this isn't allowed, the
149 * DMA engine will simply freeze randomly.
152 iisfcon
&= ~S3C2410_IISFCON_RXENABLE
;
153 iisfcon
&= ~S3C2410_IISFCON_RXDMA
;
154 iiscon
|= S3C2410_IISCON_RXIDLE
;
155 iiscon
&= ~S3C2410_IISCON_RXDMAEN
;
156 iismod
&= ~S3C2410_IISMOD_RXMODE
;
158 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
159 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
160 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
163 pr_debug("w: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
167 * Wait for the LR signal to allow synchronisation to the L/R clock
168 * from the codec. May only be needed for slave mode.
170 static int s3c24xx_snd_lrsync(void)
173 int timeout
= 50; /* 5ms */
175 pr_debug("Entered %s\n", __func__
);
178 iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
179 if (iiscon
& S3C2410_IISCON_LRINDEX
)
191 * Check whether CPU is the master or slave
193 static inline int s3c24xx_snd_is_clkmaster(void)
195 pr_debug("Entered %s\n", __func__
);
197 return (readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
) & S3C2410_IISMOD_SLAVE
) ? 0:1;
201 * Set S3C24xx I2S DAI format
203 static int s3c24xx_i2s_set_fmt(struct snd_soc_dai
*cpu_dai
,
208 pr_debug("Entered %s\n", __func__
);
210 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
211 pr_debug("hw_params r: IISMOD: %x \n", iismod
);
213 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
214 case SND_SOC_DAIFMT_CBM_CFM
:
215 iismod
|= S3C2410_IISMOD_SLAVE
;
217 case SND_SOC_DAIFMT_CBS_CFS
:
218 iismod
&= ~S3C2410_IISMOD_SLAVE
;
224 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
225 case SND_SOC_DAIFMT_LEFT_J
:
226 iismod
|= S3C2410_IISMOD_MSB
;
228 case SND_SOC_DAIFMT_I2S
:
229 iismod
&= ~S3C2410_IISMOD_MSB
;
235 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
236 pr_debug("hw_params w: IISMOD: %x \n", iismod
);
240 static int s3c24xx_i2s_hw_params(struct snd_pcm_substream
*substream
,
241 struct snd_pcm_hw_params
*params
,
242 struct snd_soc_dai
*dai
)
244 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
247 pr_debug("Entered %s\n", __func__
);
249 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
250 rtd
->dai
->cpu_dai
->dma_data
= &s3c24xx_i2s_pcm_stereo_out
;
252 rtd
->dai
->cpu_dai
->dma_data
= &s3c24xx_i2s_pcm_stereo_in
;
254 /* Working copies of register */
255 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
256 pr_debug("hw_params r: IISMOD: %x\n", iismod
);
258 switch (params_format(params
)) {
259 case SNDRV_PCM_FORMAT_S8
:
260 iismod
&= ~S3C2410_IISMOD_16BIT
;
261 ((struct s3c24xx_pcm_dma_params
*)
262 rtd
->dai
->cpu_dai
->dma_data
)->dma_size
= 1;
264 case SNDRV_PCM_FORMAT_S16_LE
:
265 iismod
|= S3C2410_IISMOD_16BIT
;
266 ((struct s3c24xx_pcm_dma_params
*)
267 rtd
->dai
->cpu_dai
->dma_data
)->dma_size
= 2;
273 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
274 pr_debug("hw_params w: IISMOD: %x\n", iismod
);
278 static int s3c24xx_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
279 struct snd_soc_dai
*dai
)
283 pr_debug("Entered %s\n", __func__
);
286 case SNDRV_PCM_TRIGGER_START
:
287 case SNDRV_PCM_TRIGGER_RESUME
:
288 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
289 if (!s3c24xx_snd_is_clkmaster()) {
290 ret
= s3c24xx_snd_lrsync();
295 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
296 s3c24xx_snd_rxctrl(1);
298 s3c24xx_snd_txctrl(1);
300 case SNDRV_PCM_TRIGGER_STOP
:
301 case SNDRV_PCM_TRIGGER_SUSPEND
:
302 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
303 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
304 s3c24xx_snd_rxctrl(0);
306 s3c24xx_snd_txctrl(0);
318 * Set S3C24xx Clock source
320 static int s3c24xx_i2s_set_sysclk(struct snd_soc_dai
*cpu_dai
,
321 int clk_id
, unsigned int freq
, int dir
)
323 u32 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
325 pr_debug("Entered %s\n", __func__
);
327 iismod
&= ~S3C2440_IISMOD_MPLL
;
330 case S3C24XX_CLKSRC_PCLK
:
332 case S3C24XX_CLKSRC_MPLL
:
333 iismod
|= S3C2440_IISMOD_MPLL
;
339 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
344 * Set S3C24xx Clock dividers
346 static int s3c24xx_i2s_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
351 pr_debug("Entered %s\n", __func__
);
354 case S3C24XX_DIV_BCLK
:
355 reg
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
) & ~S3C2410_IISMOD_FS_MASK
;
356 writel(reg
| div
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
358 case S3C24XX_DIV_MCLK
:
359 reg
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
) & ~(S3C2410_IISMOD_384FS
);
360 writel(reg
| div
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
362 case S3C24XX_DIV_PRESCALER
:
363 writel(div
, s3c24xx_i2s
.regs
+ S3C2410_IISPSR
);
364 reg
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
365 writel(reg
| S3C2410_IISCON_PSCEN
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
375 * To avoid duplicating clock code, allow machine driver to
376 * get the clockrate from here.
378 u32
s3c24xx_i2s_get_clockrate(void)
380 return clk_get_rate(s3c24xx_i2s
.iis_clk
);
382 EXPORT_SYMBOL_GPL(s3c24xx_i2s_get_clockrate
);
384 static int s3c24xx_i2s_probe(struct platform_device
*pdev
,
385 struct snd_soc_dai
*dai
)
387 pr_debug("Entered %s\n", __func__
);
389 s3c24xx_i2s
.regs
= ioremap(S3C2410_PA_IIS
, 0x100);
390 if (s3c24xx_i2s
.regs
== NULL
)
393 s3c24xx_i2s
.iis_clk
= clk_get(&pdev
->dev
, "iis");
394 if (s3c24xx_i2s
.iis_clk
== NULL
) {
395 pr_err("failed to get iis_clock\n");
396 iounmap(s3c24xx_i2s
.regs
);
399 clk_enable(s3c24xx_i2s
.iis_clk
);
401 /* Configure the I2S pins in correct mode */
402 s3c2410_gpio_cfgpin(S3C2410_GPE0
, S3C2410_GPE0_I2SLRCK
);
403 s3c2410_gpio_cfgpin(S3C2410_GPE1
, S3C2410_GPE1_I2SSCLK
);
404 s3c2410_gpio_cfgpin(S3C2410_GPE2
, S3C2410_GPE2_CDCLK
);
405 s3c2410_gpio_cfgpin(S3C2410_GPE3
, S3C2410_GPE3_I2SSDI
);
406 s3c2410_gpio_cfgpin(S3C2410_GPE4
, S3C2410_GPE4_I2SSDO
);
408 writel(S3C2410_IISCON_IISEN
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
410 s3c24xx_snd_txctrl(0);
411 s3c24xx_snd_rxctrl(0);
417 static int s3c24xx_i2s_suspend(struct snd_soc_dai
*cpu_dai
)
419 pr_debug("Entered %s\n", __func__
);
421 s3c24xx_i2s
.iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
422 s3c24xx_i2s
.iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
423 s3c24xx_i2s
.iisfcon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
424 s3c24xx_i2s
.iispsr
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISPSR
);
426 clk_disable(s3c24xx_i2s
.iis_clk
);
431 static int s3c24xx_i2s_resume(struct snd_soc_dai
*cpu_dai
)
433 pr_debug("Entered %s\n", __func__
);
434 clk_enable(s3c24xx_i2s
.iis_clk
);
436 writel(s3c24xx_i2s
.iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
437 writel(s3c24xx_i2s
.iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
438 writel(s3c24xx_i2s
.iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
439 writel(s3c24xx_i2s
.iispsr
, s3c24xx_i2s
.regs
+ S3C2410_IISPSR
);
444 #define s3c24xx_i2s_suspend NULL
445 #define s3c24xx_i2s_resume NULL
449 #define S3C24XX_I2S_RATES \
450 (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 | SNDRV_PCM_RATE_16000 | \
451 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
452 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
454 static struct snd_soc_dai_ops s3c24xx_i2s_dai_ops
= {
455 .trigger
= s3c24xx_i2s_trigger
,
456 .hw_params
= s3c24xx_i2s_hw_params
,
457 .set_fmt
= s3c24xx_i2s_set_fmt
,
458 .set_clkdiv
= s3c24xx_i2s_set_clkdiv
,
459 .set_sysclk
= s3c24xx_i2s_set_sysclk
,
462 struct snd_soc_dai s3c24xx_i2s_dai
= {
463 .name
= "s3c24xx-i2s",
465 .probe
= s3c24xx_i2s_probe
,
466 .suspend
= s3c24xx_i2s_suspend
,
467 .resume
= s3c24xx_i2s_resume
,
471 .rates
= S3C24XX_I2S_RATES
,
472 .formats
= SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_S16_LE
,},
476 .rates
= S3C24XX_I2S_RATES
,
477 .formats
= SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_S16_LE
,},
478 .ops
= &s3c24xx_i2s_dai_ops
,
480 EXPORT_SYMBOL_GPL(s3c24xx_i2s_dai
);
482 static int __init
s3c24xx_i2s_init(void)
484 return snd_soc_register_dai(&s3c24xx_i2s_dai
);
486 module_init(s3c24xx_i2s_init
);
488 static void __exit
s3c24xx_i2s_exit(void)
490 snd_soc_unregister_dai(&s3c24xx_i2s_dai
);
492 module_exit(s3c24xx_i2s_exit
);
494 /* Module information */
495 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
496 MODULE_DESCRIPTION("s3c24xx I2S SoC Interface");
497 MODULE_LICENSE("GPL");