Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mpc5200_psc_i2s.c
Go to the documentation of this file.
1 /*
2  * Freescale MPC5200 PSC in I2S mode
3  * ALSA SoC Digital Audio Interface (DAI) driver
4  *
5  * Copyright (C) 2008 Secret Lab Technologies Ltd.
6  * Copyright (C) 2009 Jon Smirl, Digispeaker
7  */
8 
9 #include <linux/module.h>
10 #include <linux/of_device.h>
11 #include <linux/of_platform.h>
12 
13 #include <sound/pcm.h>
14 #include <sound/pcm_params.h>
15 #include <sound/soc.h>
16 
17 #include <asm/mpc52xx_psc.h>
18 
19 #include "mpc5200_dma.h"
20 
29 #define PSC_I2S_RATES (SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_192000 | \
30  SNDRV_PCM_RATE_CONTINUOUS)
31 
35 #define PSC_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_BE | \
36  SNDRV_PCM_FMTBIT_S24_BE | SNDRV_PCM_FMTBIT_S32_BE)
37 
38 static int psc_i2s_hw_params(struct snd_pcm_substream *substream,
39  struct snd_pcm_hw_params *params,
40  struct snd_soc_dai *dai)
41 {
42  struct snd_soc_pcm_runtime *rtd = substream->private_data;
43  struct psc_dma *psc_dma = snd_soc_dai_get_drvdata(rtd->cpu_dai);
44  u32 mode;
45 
46  dev_dbg(psc_dma->dev, "%s(substream=%p) p_size=%i p_bytes=%i"
47  " periods=%i buffer_size=%i buffer_bytes=%i\n",
48  __func__, substream, params_period_size(params),
49  params_period_bytes(params), params_periods(params),
50  params_buffer_size(params), params_buffer_bytes(params));
51 
52  switch (params_format(params)) {
55  break;
58  break;
61  break;
64  break;
65  default:
66  dev_dbg(psc_dma->dev, "invalid format\n");
67  return -EINVAL;
68  }
69  out_be32(&psc_dma->psc_regs->sicr, psc_dma->sicr | mode);
70 
71  return 0;
72 }
73 
88 static int psc_i2s_set_sysclk(struct snd_soc_dai *cpu_dai,
89  int clk_id, unsigned int freq, int dir)
90 {
91  struct psc_dma *psc_dma = snd_soc_dai_get_drvdata(cpu_dai);
92  dev_dbg(psc_dma->dev, "psc_i2s_set_sysclk(cpu_dai=%p, dir=%i)\n",
93  cpu_dai, dir);
94  return (dir == SND_SOC_CLOCK_IN) ? 0 : -EINVAL;
95 }
96 
108 static int psc_i2s_set_fmt(struct snd_soc_dai *cpu_dai, unsigned int format)
109 {
110  struct psc_dma *psc_dma = snd_soc_dai_get_drvdata(cpu_dai);
111  dev_dbg(psc_dma->dev, "psc_i2s_set_fmt(cpu_dai=%p, format=%i)\n",
112  cpu_dai, format);
113  return (format == SND_SOC_DAIFMT_I2S) ? 0 : -EINVAL;
114 }
115 
116 /* ---------------------------------------------------------------------
117  * ALSA SoC Bindings
118  *
119  * - Digital Audio Interface (DAI) template
120  * - create/destroy dai hooks
121  */
122 
126 static const struct snd_soc_dai_ops psc_i2s_dai_ops = {
127  .hw_params = psc_i2s_hw_params,
128  .set_sysclk = psc_i2s_set_sysclk,
129  .set_fmt = psc_i2s_set_fmt,
130 };
131 
132 static struct snd_soc_dai_driver psc_i2s_dai[] = {{
133  .name = "mpc5200-psc-i2s.0",
134  .playback = {
135  .stream_name = "I2S Playback",
136  .channels_min = 2,
137  .channels_max = 2,
138  .rates = PSC_I2S_RATES,
139  .formats = PSC_I2S_FORMATS,
140  },
141  .capture = {
142  .stream_name = "I2S Capture",
143  .channels_min = 2,
144  .channels_max = 2,
145  .rates = PSC_I2S_RATES,
146  .formats = PSC_I2S_FORMATS,
147  },
148  .ops = &psc_i2s_dai_ops,
149 } };
150 
151 /* ---------------------------------------------------------------------
152  * OF platform bus binding code:
153  * - Probe/remove operations
154  * - OF device match table
155  */
156 static int __devinit psc_i2s_of_probe(struct platform_device *op)
157 {
158  int rc;
159  struct psc_dma *psc_dma;
160  struct mpc52xx_psc __iomem *regs;
161 
162  rc = mpc5200_audio_dma_create(op);
163  if (rc != 0)
164  return rc;
165 
166  rc = snd_soc_register_dais(&op->dev, psc_i2s_dai, ARRAY_SIZE(psc_i2s_dai));
167  if (rc != 0) {
168  pr_err("Failed to register DAI\n");
169  return rc;
170  }
171 
172  psc_dma = dev_get_drvdata(&op->dev);
173  regs = psc_dma->psc_regs;
174 
175  /* Configure the serial interface mode; defaulting to CODEC8 mode */
178  out_be32(&psc_dma->psc_regs->sicr,
180 
181  /* Check for the codec handle. If it is not present then we
182  * are done */
183  if (!of_get_property(op->dev.of_node, "codec-handle", NULL))
184  return 0;
185 
186  /* Due to errata in the dma mode; need to line up enabling
187  * the transmitter with a transition on the frame sync
188  * line */
189 
190  /* first make sure it is low */
191  while ((in_8(&regs->ipcr_acr.ipcr) & 0x80) != 0)
192  ;
193  /* then wait for the transition to high */
194  while ((in_8(&regs->ipcr_acr.ipcr) & 0x80) == 0)
195  ;
196  /* Finally, enable the PSC.
197  * Receiver must always be enabled; even when we only want
198  * transmit. (see 15.3.2.3 of MPC5200B User's Guide) */
199 
200  /* Go */
201  out_8(&psc_dma->psc_regs->command,
203 
204  return 0;
205 
206 }
207 
208 static int __devexit psc_i2s_of_remove(struct platform_device *op)
209 {
211  snd_soc_unregister_dais(&op->dev, ARRAY_SIZE(psc_i2s_dai));
212  return 0;
213 }
214 
215 /* Match table for of_platform binding */
216 static struct of_device_id psc_i2s_match[] __devinitdata = {
217  { .compatible = "fsl,mpc5200-psc-i2s", },
218  { .compatible = "fsl,mpc5200b-psc-i2s", },
219  {}
220 };
221 MODULE_DEVICE_TABLE(of, psc_i2s_match);
222 
223 static struct platform_driver psc_i2s_driver = {
224  .probe = psc_i2s_of_probe,
225  .remove = __devexit_p(psc_i2s_of_remove),
226  .driver = {
227  .name = "mpc5200-psc-i2s",
228  .owner = THIS_MODULE,
229  .of_match_table = psc_i2s_match,
230  },
231 };
232 
233 module_platform_driver(psc_i2s_driver);
234 
235 MODULE_AUTHOR("Grant Likely <[email protected]>");
236 MODULE_DESCRIPTION("Freescale MPC5200 PSC in I2S mode ASoC Driver");
237 MODULE_LICENSE("GPL");
238