2 * pxa2xx-i2s.c -- ALSA Soc Audio Layer
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood
6 * liam.girdwood@wolfsonmicro.com or linux@wolfsonmicro.com
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/device.h>
17 #include <linux/delay.h>
18 #include <linux/clk.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/initval.h>
22 #include <sound/soc.h>
24 #include <asm/hardware.h>
25 #include <asm/arch/pxa-regs.h>
26 #include <asm/arch/pxa2xx-gpio.h>
27 #include <asm/arch/audio.h>
29 #include "pxa2xx-pcm.h"
30 #include "pxa2xx-i2s.h"
40 static struct pxa_i2s_port pxa_i2s;
41 static struct clk *clk_i2s;
43 static struct pxa2xx_pcm_dma_params pxa2xx_i2s_pcm_stereo_out = {
44 .name = "I2S PCM Stereo out",
45 .dev_addr = __PREG(SADR),
46 .drcmr = &DRCMRTXSADR,
47 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
48 DCMD_BURST32 | DCMD_WIDTH4,
51 static struct pxa2xx_pcm_dma_params pxa2xx_i2s_pcm_stereo_in = {
52 .name = "I2S PCM Stereo in",
53 .dev_addr = __PREG(SADR),
54 .drcmr = &DRCMRRXSADR,
55 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
56 DCMD_BURST32 | DCMD_WIDTH4,
59 static struct pxa2xx_gpio gpio_bus[] = {
61 .rx = GPIO29_SDATA_IN_I2S_MD,
62 .tx = GPIO30_SDATA_OUT_I2S_MD,
63 .clk = GPIO28_BITCLK_IN_I2S_MD,
64 .frm = GPIO31_SYNC_I2S_MD,
66 { /* I2S SoC Master */
68 .sys = GPIO113_I2S_SYSCLK_MD,
70 .sys = GPIO32_SYSCLK_I2S_MD,
72 .rx = GPIO29_SDATA_IN_I2S_MD,
73 .tx = GPIO30_SDATA_OUT_I2S_MD,
74 .clk = GPIO28_BITCLK_OUT_I2S_MD,
75 .frm = GPIO31_SYNC_I2S_MD,
79 static int pxa2xx_i2s_startup(struct snd_pcm_substream *substream)
81 struct snd_soc_pcm_runtime *rtd = substream->private_data;
82 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
84 clk_i2s = clk_get(NULL, "I2SCLK");
86 return PTR_ERR(clk_i2s);
88 if (!cpu_dai->active) {
96 /* wait for I2S controller to be ready */
97 static int pxa_i2s_wait(void)
101 /* flush the Rx FIFO */
102 for(i = 0; i < 16; i++)
107 static int pxa2xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
110 /* interface format */
111 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
112 case SND_SOC_DAIFMT_I2S:
115 case SND_SOC_DAIFMT_LEFT_J:
116 pxa_i2s.fmt = SACR1_AMSL;
120 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
121 case SND_SOC_DAIFMT_CBS_CFS:
124 case SND_SOC_DAIFMT_CBM_CFS:
133 static int pxa2xx_i2s_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
134 int clk_id, unsigned int freq, int dir)
136 if (clk_id != PXA2XX_I2S_SYSCLK)
139 if (pxa_i2s.master && dir == SND_SOC_CLOCK_OUT)
140 pxa_gpio_mode(gpio_bus[pxa_i2s.master].sys);
145 static int pxa2xx_i2s_hw_params(struct snd_pcm_substream *substream,
146 struct snd_pcm_hw_params *params)
148 struct snd_soc_pcm_runtime *rtd = substream->private_data;
149 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
151 pxa_gpio_mode(gpio_bus[pxa_i2s.master].rx);
152 pxa_gpio_mode(gpio_bus[pxa_i2s.master].tx);
153 pxa_gpio_mode(gpio_bus[pxa_i2s.master].frm);
154 pxa_gpio_mode(gpio_bus[pxa_i2s.master].clk);
158 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
159 cpu_dai->dma_data = &pxa2xx_i2s_pcm_stereo_out;
161 cpu_dai->dma_data = &pxa2xx_i2s_pcm_stereo_in;
163 /* is port used by another stream */
164 if (!(SACR0 & SACR0_ENB)) {
171 SACR0 |= SACR0_RFTH(14) | SACR0_TFTH(1);
172 SACR1 |= pxa_i2s.fmt;
174 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
179 switch (params_rate(params)) {
198 case 96000: /* not in manual and possibly slightly inaccurate */
206 static int pxa2xx_i2s_trigger(struct snd_pcm_substream *substream, int cmd)
211 case SNDRV_PCM_TRIGGER_START:
214 case SNDRV_PCM_TRIGGER_RESUME:
215 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
216 case SNDRV_PCM_TRIGGER_STOP:
217 case SNDRV_PCM_TRIGGER_SUSPEND:
218 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
227 static void pxa2xx_i2s_shutdown(struct snd_pcm_substream *substream)
229 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
237 if (SACR1 & (SACR1_DREC | SACR1_DRPL)) {
240 clk_disable(clk_i2s);
247 static int pxa2xx_i2s_suspend(struct platform_device *dev,
248 struct snd_soc_dai *dai)
253 /* store registers */
254 pxa_i2s.sacr0 = SACR0;
255 pxa_i2s.sacr1 = SACR1;
256 pxa_i2s.saimr = SAIMR;
257 pxa_i2s.sadiv = SADIV;
259 /* deactivate link */
265 static int pxa2xx_i2s_resume(struct platform_device *pdev,
266 struct snd_soc_dai *dai)
273 SACR0 = pxa_i2s.sacr0 &= ~SACR0_ENB;
274 SACR1 = pxa_i2s.sacr1;
275 SAIMR = pxa_i2s.saimr;
276 SADIV = pxa_i2s.sadiv;
283 #define pxa2xx_i2s_suspend NULL
284 #define pxa2xx_i2s_resume NULL
287 #define PXA2XX_I2S_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
288 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
289 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000)
291 struct snd_soc_dai pxa_i2s_dai = {
292 .name = "pxa2xx-i2s",
294 .type = SND_SOC_DAI_I2S,
295 .suspend = pxa2xx_i2s_suspend,
296 .resume = pxa2xx_i2s_resume,
300 .rates = PXA2XX_I2S_RATES,
301 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
305 .rates = PXA2XX_I2S_RATES,
306 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
308 .startup = pxa2xx_i2s_startup,
309 .shutdown = pxa2xx_i2s_shutdown,
310 .trigger = pxa2xx_i2s_trigger,
311 .hw_params = pxa2xx_i2s_hw_params,},
313 .set_fmt = pxa2xx_i2s_set_dai_fmt,
314 .set_sysclk = pxa2xx_i2s_set_dai_sysclk,
318 EXPORT_SYMBOL_GPL(pxa_i2s_dai);
320 /* Module information */
321 MODULE_AUTHOR("Liam Girdwood, liam.girdwood@wolfsonmicro.com, www.wolfsonmicro.com");
322 MODULE_DESCRIPTION("pxa2xx I2S SoC Interface");
323 MODULE_LICENSE("GPL");