2 * linux/sound/soc/ep93xx-i2s.c
5 * Copyright (C) 2010 Ryan Mallon
7 * Based on the original driver by:
8 * Copyright (C) 2007 Chase Douglas <chasedouglas@gmail>
9 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/slab.h>
20 #include <linux/clk.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/pcm_params.h>
26 #include <sound/initval.h>
27 #include <sound/soc.h>
29 #include <mach/hardware.h>
30 #include <mach/ep93xx-regs.h>
33 #include "ep93xx-pcm.h"
35 #define EP93XX_I2S_TXCLKCFG 0x00
36 #define EP93XX_I2S_RXCLKCFG 0x04
37 #define EP93XX_I2S_GLCTRL 0x0C
39 #define EP93XX_I2S_TXLINCTRLDATA 0x28
40 #define EP93XX_I2S_TXCTRL 0x2C
41 #define EP93XX_I2S_TXWRDLEN 0x30
42 #define EP93XX_I2S_TX0EN 0x34
44 #define EP93XX_I2S_RXLINCTRLDATA 0x58
45 #define EP93XX_I2S_RXCTRL 0x5C
46 #define EP93XX_I2S_RXWRDLEN 0x60
47 #define EP93XX_I2S_RX0EN 0x64
49 #define EP93XX_I2S_WRDLEN_16 (0 << 0)
50 #define EP93XX_I2S_WRDLEN_24 (1 << 0)
51 #define EP93XX_I2S_WRDLEN_32 (2 << 0)
53 #define EP93XX_I2S_LINCTRLDATA_R_JUST (1 << 2) /* Right justify */
55 #define EP93XX_I2S_CLKCFG_LRS (1 << 0) /* lrclk polarity */
56 #define EP93XX_I2S_CLKCFG_CKP (1 << 1) /* Bit clock polarity */
57 #define EP93XX_I2S_CLKCFG_REL (1 << 2) /* First bit transition */
58 #define EP93XX_I2S_CLKCFG_MASTER (1 << 3) /* Master mode */
59 #define EP93XX_I2S_CLKCFG_NBCG (1 << 4) /* Not bit clock gating */
61 struct ep93xx_i2s_info
{
65 struct ep93xx_pcm_dma_params
*dma_params
;
69 struct ep93xx_pcm_dma_params ep93xx_i2s_dma_params
[] = {
70 [SNDRV_PCM_STREAM_PLAYBACK
] = {
71 .name
= "i2s-pcm-out",
72 .dma_port
= EP93XX_DMA_I2S1
,
74 [SNDRV_PCM_STREAM_CAPTURE
] = {
76 .dma_port
= EP93XX_DMA_I2S1
,
80 static inline void ep93xx_i2s_write_reg(struct ep93xx_i2s_info
*info
,
81 unsigned reg
, unsigned val
)
83 __raw_writel(val
, info
->regs
+ reg
);
86 static inline unsigned ep93xx_i2s_read_reg(struct ep93xx_i2s_info
*info
,
89 return __raw_readl(info
->regs
+ reg
);
92 static void ep93xx_i2s_enable(struct ep93xx_i2s_info
*info
, int stream
)
97 if ((ep93xx_i2s_read_reg(info
, EP93XX_I2S_TX0EN
) & 0x1) == 0 &&
98 (ep93xx_i2s_read_reg(info
, EP93XX_I2S_RX0EN
) & 0x1) == 0) {
100 clk_enable(info
->mclk
);
101 clk_enable(info
->sclk
);
102 clk_enable(info
->lrclk
);
105 ep93xx_i2s_write_reg(info
, EP93XX_I2S_GLCTRL
, 1);
109 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
110 base_reg
= EP93XX_I2S_TX0EN
;
112 base_reg
= EP93XX_I2S_RX0EN
;
113 for (i
= 0; i
< 3; i
++)
114 ep93xx_i2s_write_reg(info
, base_reg
+ (i
* 4), 1);
117 static void ep93xx_i2s_disable(struct ep93xx_i2s_info
*info
, int stream
)
123 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
124 base_reg
= EP93XX_I2S_TX0EN
;
126 base_reg
= EP93XX_I2S_RX0EN
;
127 for (i
= 0; i
< 3; i
++)
128 ep93xx_i2s_write_reg(info
, base_reg
+ (i
* 4), 0);
130 if ((ep93xx_i2s_read_reg(info
, EP93XX_I2S_TX0EN
) & 0x1) == 0 &&
131 (ep93xx_i2s_read_reg(info
, EP93XX_I2S_RX0EN
) & 0x1) == 0) {
133 ep93xx_i2s_write_reg(info
, EP93XX_I2S_GLCTRL
, 0);
136 clk_disable(info
->lrclk
);
137 clk_disable(info
->sclk
);
138 clk_disable(info
->mclk
);
142 static int ep93xx_i2s_startup(struct snd_pcm_substream
*substream
,
143 struct snd_soc_dai
*dai
)
145 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
146 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(dai
);
147 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
149 snd_soc_dai_set_dma_data(cpu_dai
, substream
,
150 &info
->dma_params
[substream
->stream
]);
154 static void ep93xx_i2s_shutdown(struct snd_pcm_substream
*substream
,
155 struct snd_soc_dai
*dai
)
157 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(dai
);
159 ep93xx_i2s_disable(info
, substream
->stream
);
162 static int ep93xx_i2s_set_dai_fmt(struct snd_soc_dai
*cpu_dai
,
165 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(cpu_dai
);
166 unsigned int clk_cfg
, lin_ctrl
;
168 clk_cfg
= ep93xx_i2s_read_reg(info
, EP93XX_I2S_RXCLKCFG
);
169 lin_ctrl
= ep93xx_i2s_read_reg(info
, EP93XX_I2S_RXLINCTRLDATA
);
171 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
172 case SND_SOC_DAIFMT_I2S
:
173 clk_cfg
|= EP93XX_I2S_CLKCFG_REL
;
174 lin_ctrl
&= ~EP93XX_I2S_LINCTRLDATA_R_JUST
;
177 case SND_SOC_DAIFMT_LEFT_J
:
178 clk_cfg
&= ~EP93XX_I2S_CLKCFG_REL
;
179 lin_ctrl
&= ~EP93XX_I2S_LINCTRLDATA_R_JUST
;
182 case SND_SOC_DAIFMT_RIGHT_J
:
183 clk_cfg
&= ~EP93XX_I2S_CLKCFG_REL
;
184 lin_ctrl
|= EP93XX_I2S_LINCTRLDATA_R_JUST
;
191 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
192 case SND_SOC_DAIFMT_CBS_CFS
:
194 clk_cfg
|= EP93XX_I2S_CLKCFG_MASTER
;
197 case SND_SOC_DAIFMT_CBM_CFM
:
198 /* Codec is master */
199 clk_cfg
&= ~EP93XX_I2S_CLKCFG_MASTER
;
206 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
207 case SND_SOC_DAIFMT_NB_NF
:
208 /* Negative bit clock, lrclk low on left word */
209 clk_cfg
&= ~(EP93XX_I2S_CLKCFG_CKP
| EP93XX_I2S_CLKCFG_REL
);
212 case SND_SOC_DAIFMT_NB_IF
:
213 /* Negative bit clock, lrclk low on right word */
214 clk_cfg
&= ~EP93XX_I2S_CLKCFG_CKP
;
215 clk_cfg
|= EP93XX_I2S_CLKCFG_REL
;
218 case SND_SOC_DAIFMT_IB_NF
:
219 /* Positive bit clock, lrclk low on left word */
220 clk_cfg
|= EP93XX_I2S_CLKCFG_CKP
;
221 clk_cfg
&= ~EP93XX_I2S_CLKCFG_REL
;
224 case SND_SOC_DAIFMT_IB_IF
:
225 /* Positive bit clock, lrclk low on right word */
226 clk_cfg
|= EP93XX_I2S_CLKCFG_CKP
| EP93XX_I2S_CLKCFG_REL
;
230 /* Write new register values */
231 ep93xx_i2s_write_reg(info
, EP93XX_I2S_RXCLKCFG
, clk_cfg
);
232 ep93xx_i2s_write_reg(info
, EP93XX_I2S_TXCLKCFG
, clk_cfg
);
233 ep93xx_i2s_write_reg(info
, EP93XX_I2S_RXLINCTRLDATA
, lin_ctrl
);
234 ep93xx_i2s_write_reg(info
, EP93XX_I2S_TXLINCTRLDATA
, lin_ctrl
);
238 static int ep93xx_i2s_hw_params(struct snd_pcm_substream
*substream
,
239 struct snd_pcm_hw_params
*params
,
240 struct snd_soc_dai
*dai
)
242 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(dai
);
243 unsigned word_len
, div
, sdiv
, lrdiv
;
246 switch (params_format(params
)) {
247 case SNDRV_PCM_FORMAT_S16_LE
:
248 word_len
= EP93XX_I2S_WRDLEN_16
;
251 case SNDRV_PCM_FORMAT_S24_LE
:
252 word_len
= EP93XX_I2S_WRDLEN_24
;
255 case SNDRV_PCM_FORMAT_S32_LE
:
256 word_len
= EP93XX_I2S_WRDLEN_32
;
263 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
264 ep93xx_i2s_write_reg(info
, EP93XX_I2S_TXWRDLEN
, word_len
);
266 ep93xx_i2s_write_reg(info
, EP93XX_I2S_RXWRDLEN
, word_len
);
269 * EP93xx I2S module can be setup so SCLK / LRCLK value can be
270 * 32, 64, 128. MCLK / SCLK value can be 2 and 4.
271 * We set LRCLK equal to `rate' and minimum SCLK / LRCLK
272 * value is 64, because our sample size is 32 bit * 2 channels.
273 * I2S standard permits us to transmit more bits than
276 div
= clk_get_rate(info
->mclk
) / params_rate(params
);
278 if (div
> (256 + 512) / 2) {
282 if (div
< (128 + 256) / 2)
286 err
= clk_set_rate(info
->sclk
, clk_get_rate(info
->mclk
) / sdiv
);
290 err
= clk_set_rate(info
->lrclk
, clk_get_rate(info
->sclk
) / lrdiv
);
294 ep93xx_i2s_enable(info
, substream
->stream
);
298 static int ep93xx_i2s_set_sysclk(struct snd_soc_dai
*cpu_dai
, int clk_id
,
299 unsigned int freq
, int dir
)
301 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(cpu_dai
);
303 if (dir
== SND_SOC_CLOCK_IN
|| clk_id
!= 0)
306 return clk_set_rate(info
->mclk
, freq
);
310 static int ep93xx_i2s_suspend(struct snd_soc_dai
*dai
)
312 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(dai
);
317 ep93xx_i2s_disable(info
, SNDRV_PCM_STREAM_PLAYBACK
);
318 ep93xx_i2s_disable(info
, SNDRV_PCM_STREAM_CAPTURE
);
323 static int ep93xx_i2s_resume(struct snd_soc_dai
*dai
)
325 struct ep93xx_i2s_info
*info
= snd_soc_dai_get_drvdata(dai
);
330 ep93xx_i2s_enable(info
, SNDRV_PCM_STREAM_PLAYBACK
);
331 ep93xx_i2s_enable(info
, SNDRV_PCM_STREAM_CAPTURE
);
336 #define ep93xx_i2s_suspend NULL
337 #define ep93xx_i2s_resume NULL
340 static const struct snd_soc_dai_ops ep93xx_i2s_dai_ops
= {
341 .startup
= ep93xx_i2s_startup
,
342 .shutdown
= ep93xx_i2s_shutdown
,
343 .hw_params
= ep93xx_i2s_hw_params
,
344 .set_sysclk
= ep93xx_i2s_set_sysclk
,
345 .set_fmt
= ep93xx_i2s_set_dai_fmt
,
348 #define EP93XX_I2S_FORMATS (SNDRV_PCM_FMTBIT_S32_LE)
350 static struct snd_soc_dai_driver ep93xx_i2s_dai
= {
352 .suspend
= ep93xx_i2s_suspend
,
353 .resume
= ep93xx_i2s_resume
,
357 .rates
= SNDRV_PCM_RATE_8000_192000
,
358 .formats
= EP93XX_I2S_FORMATS
,
363 .rates
= SNDRV_PCM_RATE_8000_192000
,
364 .formats
= EP93XX_I2S_FORMATS
,
366 .ops
= &ep93xx_i2s_dai_ops
,
369 static int ep93xx_i2s_probe(struct platform_device
*pdev
)
371 struct ep93xx_i2s_info
*info
;
372 struct resource
*res
;
375 info
= devm_kzalloc(&pdev
->dev
, sizeof(*info
), GFP_KERNEL
);
379 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
383 info
->regs
= devm_request_and_ioremap(&pdev
->dev
, res
);
387 info
->mclk
= clk_get(&pdev
->dev
, "mclk");
388 if (IS_ERR(info
->mclk
)) {
389 err
= PTR_ERR(info
->mclk
);
393 info
->sclk
= clk_get(&pdev
->dev
, "sclk");
394 if (IS_ERR(info
->sclk
)) {
395 err
= PTR_ERR(info
->sclk
);
399 info
->lrclk
= clk_get(&pdev
->dev
, "lrclk");
400 if (IS_ERR(info
->lrclk
)) {
401 err
= PTR_ERR(info
->lrclk
);
405 dev_set_drvdata(&pdev
->dev
, info
);
406 info
->dma_params
= ep93xx_i2s_dma_params
;
408 err
= snd_soc_register_dai(&pdev
->dev
, &ep93xx_i2s_dai
);
415 dev_set_drvdata(&pdev
->dev
, NULL
);
416 clk_put(info
->lrclk
);
425 static int __devexit
ep93xx_i2s_remove(struct platform_device
*pdev
)
427 struct ep93xx_i2s_info
*info
= dev_get_drvdata(&pdev
->dev
);
429 snd_soc_unregister_dai(&pdev
->dev
);
430 dev_set_drvdata(&pdev
->dev
, NULL
);
431 clk_put(info
->lrclk
);
437 static struct platform_driver ep93xx_i2s_driver
= {
438 .probe
= ep93xx_i2s_probe
,
439 .remove
= __devexit_p(ep93xx_i2s_remove
),
441 .name
= "ep93xx-i2s",
442 .owner
= THIS_MODULE
,
446 module_platform_driver(ep93xx_i2s_driver
);
448 MODULE_ALIAS("platform:ep93xx-i2s");
449 MODULE_AUTHOR("Ryan Mallon");
450 MODULE_DESCRIPTION("EP93XX I2S driver");
451 MODULE_LICENSE("GPL");