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/delay.h>
18 #include <linux/clk.h>
20 #include <linux/gpio.h>
21 #include <linux/module.h>
23 #include <sound/soc.h>
24 #include <sound/pcm_params.h>
27 #include <mach/gpio-samsung.h>
28 #include <plat/gpio-cfg.h>
32 #include "s3c24xx-i2s.h"
34 static struct s3c_dma_client s3c24xx_dma_client_out
= {
35 .name
= "I2S PCM Stereo out"
38 static struct s3c_dma_client s3c24xx_dma_client_in
= {
39 .name
= "I2S PCM Stereo in"
42 static struct s3c_dma_params s3c24xx_i2s_pcm_stereo_out
= {
43 .client
= &s3c24xx_dma_client_out
,
44 .channel
= DMACH_I2S_OUT
,
45 .dma_addr
= S3C2410_PA_IIS
+ S3C2410_IISFIFO
,
49 static struct s3c_dma_params s3c24xx_i2s_pcm_stereo_in
= {
50 .client
= &s3c24xx_dma_client_in
,
51 .channel
= DMACH_I2S_IN
,
52 .dma_addr
= S3C2410_PA_IIS
+ S3C2410_IISFIFO
,
56 struct s3c24xx_i2s_info
{
64 static struct s3c24xx_i2s_info s3c24xx_i2s
;
66 static void s3c24xx_snd_txctrl(int on
)
72 pr_debug("Entered %s\n", __func__
);
74 iisfcon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
75 iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
76 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
78 pr_debug("r: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
81 iisfcon
|= S3C2410_IISFCON_TXDMA
| S3C2410_IISFCON_TXENABLE
;
82 iiscon
|= S3C2410_IISCON_TXDMAEN
| S3C2410_IISCON_IISEN
;
83 iiscon
&= ~S3C2410_IISCON_TXIDLE
;
84 iismod
|= S3C2410_IISMOD_TXMODE
;
86 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
87 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
88 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
90 /* note, we have to disable the FIFOs otherwise bad things
91 * seem to happen when the DMA stops. According to the
92 * Samsung supplied kernel, this should allow the DMA
93 * engine and FIFOs to reset. If this isn't allowed, the
94 * DMA engine will simply freeze randomly.
97 iisfcon
&= ~S3C2410_IISFCON_TXENABLE
;
98 iisfcon
&= ~S3C2410_IISFCON_TXDMA
;
99 iiscon
|= S3C2410_IISCON_TXIDLE
;
100 iiscon
&= ~S3C2410_IISCON_TXDMAEN
;
101 iismod
&= ~S3C2410_IISMOD_TXMODE
;
103 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
104 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
105 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
108 pr_debug("w: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
111 static void s3c24xx_snd_rxctrl(int on
)
117 pr_debug("Entered %s\n", __func__
);
119 iisfcon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
120 iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
121 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
123 pr_debug("r: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
126 iisfcon
|= S3C2410_IISFCON_RXDMA
| S3C2410_IISFCON_RXENABLE
;
127 iiscon
|= S3C2410_IISCON_RXDMAEN
| S3C2410_IISCON_IISEN
;
128 iiscon
&= ~S3C2410_IISCON_RXIDLE
;
129 iismod
|= S3C2410_IISMOD_RXMODE
;
131 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
132 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
133 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
135 /* note, we have to disable the FIFOs otherwise bad things
136 * seem to happen when the DMA stops. According to the
137 * Samsung supplied kernel, this should allow the DMA
138 * engine and FIFOs to reset. If this isn't allowed, the
139 * DMA engine will simply freeze randomly.
142 iisfcon
&= ~S3C2410_IISFCON_RXENABLE
;
143 iisfcon
&= ~S3C2410_IISFCON_RXDMA
;
144 iiscon
|= S3C2410_IISCON_RXIDLE
;
145 iiscon
&= ~S3C2410_IISCON_RXDMAEN
;
146 iismod
&= ~S3C2410_IISMOD_RXMODE
;
148 writel(iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
149 writel(iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
150 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
153 pr_debug("w: IISCON: %x IISMOD: %x IISFCON: %x\n", iiscon
, iismod
, iisfcon
);
157 * Wait for the LR signal to allow synchronisation to the L/R clock
158 * from the codec. May only be needed for slave mode.
160 static int s3c24xx_snd_lrsync(void)
163 int timeout
= 50; /* 5ms */
165 pr_debug("Entered %s\n", __func__
);
168 iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
169 if (iiscon
& S3C2410_IISCON_LRINDEX
)
181 * Check whether CPU is the master or slave
183 static inline int s3c24xx_snd_is_clkmaster(void)
185 pr_debug("Entered %s\n", __func__
);
187 return (readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
) & S3C2410_IISMOD_SLAVE
) ? 0:1;
191 * Set S3C24xx I2S DAI format
193 static int s3c24xx_i2s_set_fmt(struct snd_soc_dai
*cpu_dai
,
198 pr_debug("Entered %s\n", __func__
);
200 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
201 pr_debug("hw_params r: IISMOD: %x \n", iismod
);
203 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
204 case SND_SOC_DAIFMT_CBM_CFM
:
205 iismod
|= S3C2410_IISMOD_SLAVE
;
207 case SND_SOC_DAIFMT_CBS_CFS
:
208 iismod
&= ~S3C2410_IISMOD_SLAVE
;
214 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
215 case SND_SOC_DAIFMT_LEFT_J
:
216 iismod
|= S3C2410_IISMOD_MSB
;
218 case SND_SOC_DAIFMT_I2S
:
219 iismod
&= ~S3C2410_IISMOD_MSB
;
225 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
226 pr_debug("hw_params w: IISMOD: %x \n", iismod
);
230 static int s3c24xx_i2s_hw_params(struct snd_pcm_substream
*substream
,
231 struct snd_pcm_hw_params
*params
,
232 struct snd_soc_dai
*dai
)
234 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
235 struct s3c_dma_params
*dma_data
;
238 pr_debug("Entered %s\n", __func__
);
240 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
241 dma_data
= &s3c24xx_i2s_pcm_stereo_out
;
243 dma_data
= &s3c24xx_i2s_pcm_stereo_in
;
245 snd_soc_dai_set_dma_data(rtd
->cpu_dai
, substream
, dma_data
);
247 /* Working copies of register */
248 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
249 pr_debug("hw_params r: IISMOD: %x\n", iismod
);
251 switch (params_width(params
)) {
253 iismod
&= ~S3C2410_IISMOD_16BIT
;
254 dma_data
->dma_size
= 1;
257 iismod
|= S3C2410_IISMOD_16BIT
;
258 dma_data
->dma_size
= 2;
264 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
265 pr_debug("hw_params w: IISMOD: %x\n", iismod
);
269 static int s3c24xx_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
270 struct snd_soc_dai
*dai
)
273 struct s3c_dma_params
*dma_data
=
274 snd_soc_dai_get_dma_data(dai
, substream
);
276 pr_debug("Entered %s\n", __func__
);
279 case SNDRV_PCM_TRIGGER_START
:
280 case SNDRV_PCM_TRIGGER_RESUME
:
281 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
282 if (!s3c24xx_snd_is_clkmaster()) {
283 ret
= s3c24xx_snd_lrsync();
288 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
289 s3c24xx_snd_rxctrl(1);
291 s3c24xx_snd_txctrl(1);
293 s3c2410_dma_ctrl(dma_data
->channel
, S3C2410_DMAOP_STARTED
);
295 case SNDRV_PCM_TRIGGER_STOP
:
296 case SNDRV_PCM_TRIGGER_SUSPEND
:
297 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
298 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
299 s3c24xx_snd_rxctrl(0);
301 s3c24xx_snd_txctrl(0);
313 * Set S3C24xx Clock source
315 static int s3c24xx_i2s_set_sysclk(struct snd_soc_dai
*cpu_dai
,
316 int clk_id
, unsigned int freq
, int dir
)
318 u32 iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
320 pr_debug("Entered %s\n", __func__
);
322 iismod
&= ~S3C2440_IISMOD_MPLL
;
325 case S3C24XX_CLKSRC_PCLK
:
327 case S3C24XX_CLKSRC_MPLL
:
328 iismod
|= S3C2440_IISMOD_MPLL
;
334 writel(iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
339 * Set S3C24xx Clock dividers
341 static int s3c24xx_i2s_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
346 pr_debug("Entered %s\n", __func__
);
349 case S3C24XX_DIV_BCLK
:
350 reg
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
) & ~S3C2410_IISMOD_FS_MASK
;
351 writel(reg
| div
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
353 case S3C24XX_DIV_MCLK
:
354 reg
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
) & ~(S3C2410_IISMOD_384FS
);
355 writel(reg
| div
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
357 case S3C24XX_DIV_PRESCALER
:
358 writel(div
, s3c24xx_i2s
.regs
+ S3C2410_IISPSR
);
359 reg
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
360 writel(reg
| S3C2410_IISCON_PSCEN
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
370 * To avoid duplicating clock code, allow machine driver to
371 * get the clockrate from here.
373 u32
s3c24xx_i2s_get_clockrate(void)
375 return clk_get_rate(s3c24xx_i2s
.iis_clk
);
377 EXPORT_SYMBOL_GPL(s3c24xx_i2s_get_clockrate
);
379 static int s3c24xx_i2s_probe(struct snd_soc_dai
*dai
)
381 pr_debug("Entered %s\n", __func__
);
383 s3c24xx_i2s
.regs
= ioremap(S3C2410_PA_IIS
, 0x100);
384 if (s3c24xx_i2s
.regs
== NULL
)
387 s3c24xx_i2s
.iis_clk
= clk_get(dai
->dev
, "iis");
388 if (IS_ERR(s3c24xx_i2s
.iis_clk
)) {
389 pr_err("failed to get iis_clock\n");
390 iounmap(s3c24xx_i2s
.regs
);
391 return PTR_ERR(s3c24xx_i2s
.iis_clk
);
393 clk_enable(s3c24xx_i2s
.iis_clk
);
395 /* Configure the I2S pins (GPE0...GPE4) in correct mode */
396 s3c_gpio_cfgall_range(S3C2410_GPE(0), 5, S3C_GPIO_SFN(2),
399 writel(S3C2410_IISCON_IISEN
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
401 s3c24xx_snd_txctrl(0);
402 s3c24xx_snd_rxctrl(0);
408 static int s3c24xx_i2s_suspend(struct snd_soc_dai
*cpu_dai
)
410 pr_debug("Entered %s\n", __func__
);
412 s3c24xx_i2s
.iiscon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
413 s3c24xx_i2s
.iismod
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
414 s3c24xx_i2s
.iisfcon
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
415 s3c24xx_i2s
.iispsr
= readl(s3c24xx_i2s
.regs
+ S3C2410_IISPSR
);
417 clk_disable(s3c24xx_i2s
.iis_clk
);
422 static int s3c24xx_i2s_resume(struct snd_soc_dai
*cpu_dai
)
424 pr_debug("Entered %s\n", __func__
);
425 clk_enable(s3c24xx_i2s
.iis_clk
);
427 writel(s3c24xx_i2s
.iiscon
, s3c24xx_i2s
.regs
+ S3C2410_IISCON
);
428 writel(s3c24xx_i2s
.iismod
, s3c24xx_i2s
.regs
+ S3C2410_IISMOD
);
429 writel(s3c24xx_i2s
.iisfcon
, s3c24xx_i2s
.regs
+ S3C2410_IISFCON
);
430 writel(s3c24xx_i2s
.iispsr
, s3c24xx_i2s
.regs
+ S3C2410_IISPSR
);
435 #define s3c24xx_i2s_suspend NULL
436 #define s3c24xx_i2s_resume NULL
440 #define S3C24XX_I2S_RATES \
441 (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 | SNDRV_PCM_RATE_16000 | \
442 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
443 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
445 static const struct snd_soc_dai_ops s3c24xx_i2s_dai_ops
= {
446 .trigger
= s3c24xx_i2s_trigger
,
447 .hw_params
= s3c24xx_i2s_hw_params
,
448 .set_fmt
= s3c24xx_i2s_set_fmt
,
449 .set_clkdiv
= s3c24xx_i2s_set_clkdiv
,
450 .set_sysclk
= s3c24xx_i2s_set_sysclk
,
453 static struct snd_soc_dai_driver s3c24xx_i2s_dai
= {
454 .probe
= s3c24xx_i2s_probe
,
455 .suspend
= s3c24xx_i2s_suspend
,
456 .resume
= s3c24xx_i2s_resume
,
460 .rates
= S3C24XX_I2S_RATES
,
461 .formats
= SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_S16_LE
,},
465 .rates
= S3C24XX_I2S_RATES
,
466 .formats
= SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_S16_LE
,},
467 .ops
= &s3c24xx_i2s_dai_ops
,
470 static const struct snd_soc_component_driver s3c24xx_i2s_component
= {
471 .name
= "s3c24xx-i2s",
474 static int s3c24xx_iis_dev_probe(struct platform_device
*pdev
)
478 ret
= devm_snd_soc_register_component(&pdev
->dev
,
479 &s3c24xx_i2s_component
, &s3c24xx_i2s_dai
, 1);
481 pr_err("failed to register the dai\n");
485 ret
= samsung_asoc_dma_platform_register(&pdev
->dev
);
487 pr_err("failed to register the dma: %d\n", ret
);
492 static struct platform_driver s3c24xx_iis_driver
= {
493 .probe
= s3c24xx_iis_dev_probe
,
495 .name
= "s3c24xx-iis",
496 .owner
= THIS_MODULE
,
500 module_platform_driver(s3c24xx_iis_driver
);
502 /* Module information */
503 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
504 MODULE_DESCRIPTION("s3c24xx I2S SoC Interface");
505 MODULE_LICENSE("GPL");
506 MODULE_ALIAS("platform:s3c24xx-iis");