ASoC: multi-component - ASoC Multi-Component Support
[linux-flexiantxendom0-natty.git] / sound / soc / pxa / pxa-ssp.c
1 /*
2  * pxa-ssp.c  --  ALSA Soc Audio Layer
3  *
4  * Copyright 2005,2008 Wolfson Microelectronics PLC.
5  * Author: Liam Girdwood
6  *         Mark Brown <broonie@opensource.wolfsonmicro.com>
7  *
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.
12  *
13  * TODO:
14  *  o Test network mode for > 16bit sample size
15  */
16
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/platform_device.h>
21 #include <linux/clk.h>
22 #include <linux/io.h>
23
24 #include <asm/irq.h>
25
26 #include <sound/core.h>
27 #include <sound/pcm.h>
28 #include <sound/initval.h>
29 #include <sound/pcm_params.h>
30 #include <sound/soc.h>
31 #include <sound/pxa2xx-lib.h>
32
33 #include <mach/hardware.h>
34 #include <mach/dma.h>
35 #include <mach/audio.h>
36 #include <plat/ssp.h>
37
38 #include "pxa2xx-pcm.h"
39 #include "pxa-ssp.h"
40
41 /*
42  * SSP audio private data
43  */
44 struct ssp_priv {
45         struct ssp_device *ssp;
46         unsigned int sysclk;
47         int dai_fmt;
48 #ifdef CONFIG_PM
49         uint32_t        cr0;
50         uint32_t        cr1;
51         uint32_t        to;
52         uint32_t        psp;
53 #endif
54 };
55
56 static void dump_registers(struct ssp_device *ssp)
57 {
58         dev_dbg(&ssp->pdev->dev, "SSCR0 0x%08x SSCR1 0x%08x SSTO 0x%08x\n",
59                  pxa_ssp_read_reg(ssp, SSCR0), pxa_ssp_read_reg(ssp, SSCR1),
60                  pxa_ssp_read_reg(ssp, SSTO));
61
62         dev_dbg(&ssp->pdev->dev, "SSPSP 0x%08x SSSR 0x%08x SSACD 0x%08x\n",
63                  pxa_ssp_read_reg(ssp, SSPSP), pxa_ssp_read_reg(ssp, SSSR),
64                  pxa_ssp_read_reg(ssp, SSACD));
65 }
66
67 static void pxa_ssp_enable(struct ssp_device *ssp)
68 {
69         uint32_t sscr0;
70
71         sscr0 = __raw_readl(ssp->mmio_base + SSCR0) | SSCR0_SSE;
72         __raw_writel(sscr0, ssp->mmio_base + SSCR0);
73 }
74
75 static void pxa_ssp_disable(struct ssp_device *ssp)
76 {
77         uint32_t sscr0;
78
79         sscr0 = __raw_readl(ssp->mmio_base + SSCR0) & ~SSCR0_SSE;
80         __raw_writel(sscr0, ssp->mmio_base + SSCR0);
81 }
82
83 struct pxa2xx_pcm_dma_data {
84         struct pxa2xx_pcm_dma_params params;
85         char name[20];
86 };
87
88 static struct pxa2xx_pcm_dma_params *
89 pxa_ssp_get_dma_params(struct ssp_device *ssp, int width4, int out)
90 {
91         struct pxa2xx_pcm_dma_data *dma;
92
93         dma = kzalloc(sizeof(struct pxa2xx_pcm_dma_data), GFP_KERNEL);
94         if (dma == NULL)
95                 return NULL;
96
97         snprintf(dma->name, 20, "SSP%d PCM %s %s", ssp->port_id,
98                         width4 ? "32-bit" : "16-bit", out ? "out" : "in");
99
100         dma->params.name = dma->name;
101         dma->params.drcmr = &DRCMR(out ? ssp->drcmr_tx : ssp->drcmr_rx);
102         dma->params.dcmd = (out ? (DCMD_INCSRCADDR | DCMD_FLOWTRG) :
103                                   (DCMD_INCTRGADDR | DCMD_FLOWSRC)) |
104                         (width4 ? DCMD_WIDTH4 : DCMD_WIDTH2) | DCMD_BURST16;
105         dma->params.dev_addr = ssp->phys_base + SSDR;
106
107         return &dma->params;
108 }
109
110 static int pxa_ssp_startup(struct snd_pcm_substream *substream,
111                            struct snd_soc_dai *cpu_dai)
112 {
113         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
114         struct ssp_device *ssp = priv->ssp;
115         int ret = 0;
116
117         if (!cpu_dai->active) {
118                 clk_enable(ssp->clk);
119                 pxa_ssp_disable(ssp);
120         }
121
122         kfree(snd_soc_dai_get_dma_data(cpu_dai, substream));
123         snd_soc_dai_set_dma_data(cpu_dai, substream, NULL);
124
125         return ret;
126 }
127
128 static void pxa_ssp_shutdown(struct snd_pcm_substream *substream,
129                              struct snd_soc_dai *cpu_dai)
130 {
131         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
132         struct ssp_device *ssp = priv->ssp;
133
134         if (!cpu_dai->active) {
135                 pxa_ssp_disable(ssp);
136                 clk_disable(ssp->clk);
137         }
138
139         kfree(snd_soc_dai_get_dma_data(cpu_dai, substream));
140         snd_soc_dai_set_dma_data(cpu_dai, substream, NULL);
141 }
142
143 #ifdef CONFIG_PM
144
145 static int pxa_ssp_suspend(struct snd_soc_dai *cpu_dai)
146 {
147         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
148         struct ssp_device *ssp = priv->ssp;
149
150         if (!cpu_dai->active)
151                 clk_enable(ssp->clk);
152
153         priv->cr0 = __raw_readl(ssp->mmio_base + SSCR0);
154         priv->cr1 = __raw_readl(ssp->mmio_base + SSCR1);
155         priv->to  = __raw_readl(ssp->mmio_base + SSTO);
156         priv->psp = __raw_readl(ssp->mmio_base + SSPSP);
157
158         pxa_ssp_disable(ssp);
159         clk_disable(ssp->clk);
160         return 0;
161 }
162
163 static int pxa_ssp_resume(struct snd_soc_dai *cpu_dai)
164 {
165         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
166         struct ssp_device *ssp = priv->ssp;
167         uint32_t sssr = SSSR_ROR | SSSR_TUR | SSSR_BCE;
168
169         clk_enable(ssp->clk);
170
171         __raw_writel(sssr, ssp->mmio_base + SSSR);
172         __raw_writel(priv->cr0 & ~SSCR0_SSE, ssp->mmio_base + SSCR0);
173         __raw_writel(priv->cr1, ssp->mmio_base + SSCR1);
174         __raw_writel(priv->to,  ssp->mmio_base + SSTO);
175         __raw_writel(priv->psp, ssp->mmio_base + SSPSP);
176
177         if (cpu_dai->active)
178                 pxa_ssp_enable(ssp);
179         else
180                 clk_disable(ssp->clk);
181
182         return 0;
183 }
184
185 #else
186 #define pxa_ssp_suspend NULL
187 #define pxa_ssp_resume  NULL
188 #endif
189
190 /**
191  * ssp_set_clkdiv - set SSP clock divider
192  * @div: serial clock rate divider
193  */
194 static void pxa_ssp_set_scr(struct ssp_device *ssp, u32 div)
195 {
196         u32 sscr0 = pxa_ssp_read_reg(ssp, SSCR0);
197
198         if (cpu_is_pxa25x() && ssp->type == PXA25x_SSP) {
199                 sscr0 &= ~0x0000ff00;
200                 sscr0 |= ((div - 2)/2) << 8; /* 2..512 */
201         } else {
202                 sscr0 &= ~0x000fff00;
203                 sscr0 |= (div - 1) << 8;     /* 1..4096 */
204         }
205         pxa_ssp_write_reg(ssp, SSCR0, sscr0);
206 }
207
208 /**
209  * pxa_ssp_get_clkdiv - get SSP clock divider
210  */
211 static u32 pxa_ssp_get_scr(struct ssp_device *ssp)
212 {
213         u32 sscr0 = pxa_ssp_read_reg(ssp, SSCR0);
214         u32 div;
215
216         if (cpu_is_pxa25x() && ssp->type == PXA25x_SSP)
217                 div = ((sscr0 >> 8) & 0xff) * 2 + 2;
218         else
219                 div = ((sscr0 >> 8) & 0xfff) + 1;
220         return div;
221 }
222
223 /*
224  * Set the SSP ports SYSCLK.
225  */
226 static int pxa_ssp_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
227         int clk_id, unsigned int freq, int dir)
228 {
229         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
230         struct ssp_device *ssp = priv->ssp;
231         int val;
232
233         u32 sscr0 = pxa_ssp_read_reg(ssp, SSCR0) &
234                 ~(SSCR0_ECS |  SSCR0_NCS | SSCR0_MOD | SSCR0_ACS);
235
236         dev_dbg(&ssp->pdev->dev,
237                 "pxa_ssp_set_dai_sysclk id: %d, clk_id %d, freq %u\n",
238                 cpu_dai->id, clk_id, freq);
239
240         switch (clk_id) {
241         case PXA_SSP_CLK_NET_PLL:
242                 sscr0 |= SSCR0_MOD;
243                 break;
244         case PXA_SSP_CLK_PLL:
245                 /* Internal PLL is fixed */
246                 if (cpu_is_pxa25x())
247                         priv->sysclk = 1843200;
248                 else
249                         priv->sysclk = 13000000;
250                 break;
251         case PXA_SSP_CLK_EXT:
252                 priv->sysclk = freq;
253                 sscr0 |= SSCR0_ECS;
254                 break;
255         case PXA_SSP_CLK_NET:
256                 priv->sysclk = freq;
257                 sscr0 |= SSCR0_NCS | SSCR0_MOD;
258                 break;
259         case PXA_SSP_CLK_AUDIO:
260                 priv->sysclk = 0;
261                 pxa_ssp_set_scr(ssp, 1);
262                 sscr0 |= SSCR0_ACS;
263                 break;
264         default:
265                 return -ENODEV;
266         }
267
268         /* The SSP clock must be disabled when changing SSP clock mode
269          * on PXA2xx.  On PXA3xx it must be enabled when doing so. */
270         if (!cpu_is_pxa3xx())
271                 clk_disable(ssp->clk);
272         val = pxa_ssp_read_reg(ssp, SSCR0) | sscr0;
273         pxa_ssp_write_reg(ssp, SSCR0, val);
274         if (!cpu_is_pxa3xx())
275                 clk_enable(ssp->clk);
276
277         return 0;
278 }
279
280 /*
281  * Set the SSP clock dividers.
282  */
283 static int pxa_ssp_set_dai_clkdiv(struct snd_soc_dai *cpu_dai,
284         int div_id, int div)
285 {
286         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
287         struct ssp_device *ssp = priv->ssp;
288         int val;
289
290         switch (div_id) {
291         case PXA_SSP_AUDIO_DIV_ACDS:
292                 val = (pxa_ssp_read_reg(ssp, SSACD) & ~0x7) | SSACD_ACDS(div);
293                 pxa_ssp_write_reg(ssp, SSACD, val);
294                 break;
295         case PXA_SSP_AUDIO_DIV_SCDB:
296                 val = pxa_ssp_read_reg(ssp, SSACD);
297                 val &= ~SSACD_SCDB;
298 #if defined(CONFIG_PXA3xx)
299                 if (cpu_is_pxa3xx())
300                         val &= ~SSACD_SCDX8;
301 #endif
302                 switch (div) {
303                 case PXA_SSP_CLK_SCDB_1:
304                         val |= SSACD_SCDB;
305                         break;
306                 case PXA_SSP_CLK_SCDB_4:
307                         break;
308 #if defined(CONFIG_PXA3xx)
309                 case PXA_SSP_CLK_SCDB_8:
310                         if (cpu_is_pxa3xx())
311                                 val |= SSACD_SCDX8;
312                         else
313                                 return -EINVAL;
314                         break;
315 #endif
316                 default:
317                         return -EINVAL;
318                 }
319                 pxa_ssp_write_reg(ssp, SSACD, val);
320                 break;
321         case PXA_SSP_DIV_SCR:
322                 pxa_ssp_set_scr(ssp, div);
323                 break;
324         default:
325                 return -ENODEV;
326         }
327
328         return 0;
329 }
330
331 /*
332  * Configure the PLL frequency pxa27x and (afaik - pxa320 only)
333  */
334 static int pxa_ssp_set_dai_pll(struct snd_soc_dai *cpu_dai, int pll_id,
335         int source, unsigned int freq_in, unsigned int freq_out)
336 {
337         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
338         struct ssp_device *ssp = priv->ssp;
339         u32 ssacd = pxa_ssp_read_reg(ssp, SSACD) & ~0x70;
340
341 #if defined(CONFIG_PXA3xx)
342         if (cpu_is_pxa3xx())
343                 pxa_ssp_write_reg(ssp, SSACDD, 0);
344 #endif
345
346         switch (freq_out) {
347         case 5622000:
348                 break;
349         case 11345000:
350                 ssacd |= (0x1 << 4);
351                 break;
352         case 12235000:
353                 ssacd |= (0x2 << 4);
354                 break;
355         case 14857000:
356                 ssacd |= (0x3 << 4);
357                 break;
358         case 32842000:
359                 ssacd |= (0x4 << 4);
360                 break;
361         case 48000000:
362                 ssacd |= (0x5 << 4);
363                 break;
364         case 0:
365                 /* Disable */
366                 break;
367
368         default:
369 #ifdef CONFIG_PXA3xx
370                 /* PXA3xx has a clock ditherer which can be used to generate
371                  * a wider range of frequencies - calculate a value for it.
372                  */
373                 if (cpu_is_pxa3xx()) {
374                         u32 val;
375                         u64 tmp = 19968;
376                         tmp *= 1000000;
377                         do_div(tmp, freq_out);
378                         val = tmp;
379
380                         val = (val << 16) | 64;
381                         pxa_ssp_write_reg(ssp, SSACDD, val);
382
383                         ssacd |= (0x6 << 4);
384
385                         dev_dbg(&ssp->pdev->dev,
386                                 "Using SSACDD %x to supply %uHz\n",
387                                 val, freq_out);
388                         break;
389                 }
390 #endif
391
392                 return -EINVAL;
393         }
394
395         pxa_ssp_write_reg(ssp, SSACD, ssacd);
396
397         return 0;
398 }
399
400 /*
401  * Set the active slots in TDM/Network mode
402  */
403 static int pxa_ssp_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai,
404         unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
405 {
406         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
407         struct ssp_device *ssp = priv->ssp;
408         u32 sscr0;
409
410         sscr0 = pxa_ssp_read_reg(ssp, SSCR0);
411         sscr0 &= ~(SSCR0_MOD | SSCR0_SlotsPerFrm(8) | SSCR0_EDSS | SSCR0_DSS);
412
413         /* set slot width */
414         if (slot_width > 16)
415                 sscr0 |= SSCR0_EDSS | SSCR0_DataSize(slot_width - 16);
416         else
417                 sscr0 |= SSCR0_DataSize(slot_width);
418
419         if (slots > 1) {
420                 /* enable network mode */
421                 sscr0 |= SSCR0_MOD;
422
423                 /* set number of active slots */
424                 sscr0 |= SSCR0_SlotsPerFrm(slots);
425
426                 /* set active slot mask */
427                 pxa_ssp_write_reg(ssp, SSTSA, tx_mask);
428                 pxa_ssp_write_reg(ssp, SSRSA, rx_mask);
429         }
430         pxa_ssp_write_reg(ssp, SSCR0, sscr0);
431
432         return 0;
433 }
434
435 /*
436  * Tristate the SSP DAI lines
437  */
438 static int pxa_ssp_set_dai_tristate(struct snd_soc_dai *cpu_dai,
439         int tristate)
440 {
441         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
442         struct ssp_device *ssp = priv->ssp;
443         u32 sscr1;
444
445         sscr1 = pxa_ssp_read_reg(ssp, SSCR1);
446         if (tristate)
447                 sscr1 &= ~SSCR1_TTE;
448         else
449                 sscr1 |= SSCR1_TTE;
450         pxa_ssp_write_reg(ssp, SSCR1, sscr1);
451
452         return 0;
453 }
454
455 /*
456  * Set up the SSP DAI format.
457  * The SSP Port must be inactive before calling this function as the
458  * physical interface format is changed.
459  */
460 static int pxa_ssp_set_dai_fmt(struct snd_soc_dai *cpu_dai,
461                 unsigned int fmt)
462 {
463         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
464         struct ssp_device *ssp = priv->ssp;
465         u32 sscr0;
466         u32 sscr1;
467         u32 sspsp;
468
469         /* check if we need to change anything at all */
470         if (priv->dai_fmt == fmt)
471                 return 0;
472
473         /* we can only change the settings if the port is not in use */
474         if (pxa_ssp_read_reg(ssp, SSCR0) & SSCR0_SSE) {
475                 dev_err(&ssp->pdev->dev,
476                         "can't change hardware dai format: stream is in use");
477                 return -EINVAL;
478         }
479
480         /* reset port settings */
481         sscr0 = pxa_ssp_read_reg(ssp, SSCR0) &
482                 (SSCR0_ECS |  SSCR0_NCS | SSCR0_MOD | SSCR0_ACS);
483         sscr1 = SSCR1_RxTresh(8) | SSCR1_TxTresh(7);
484         sspsp = 0;
485
486         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
487         case SND_SOC_DAIFMT_CBM_CFM:
488                 sscr1 |= SSCR1_SCLKDIR | SSCR1_SFRMDIR;
489                 break;
490         case SND_SOC_DAIFMT_CBM_CFS:
491                 sscr1 |= SSCR1_SCLKDIR;
492                 break;
493         case SND_SOC_DAIFMT_CBS_CFS:
494                 break;
495         default:
496                 return -EINVAL;
497         }
498
499         switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
500         case SND_SOC_DAIFMT_NB_NF:
501                 sspsp |= SSPSP_SFRMP;
502                 break;
503         case SND_SOC_DAIFMT_NB_IF:
504                 break;
505         case SND_SOC_DAIFMT_IB_IF:
506                 sspsp |= SSPSP_SCMODE(2);
507                 break;
508         case SND_SOC_DAIFMT_IB_NF:
509                 sspsp |= SSPSP_SCMODE(2) | SSPSP_SFRMP;
510                 break;
511         default:
512                 return -EINVAL;
513         }
514
515         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
516         case SND_SOC_DAIFMT_I2S:
517                 sscr0 |= SSCR0_PSP;
518                 sscr1 |= SSCR1_RWOT | SSCR1_TRAIL;
519                 /* See hw_params() */
520                 break;
521
522         case SND_SOC_DAIFMT_DSP_A:
523                 sspsp |= SSPSP_FSRT;
524         case SND_SOC_DAIFMT_DSP_B:
525                 sscr0 |= SSCR0_MOD | SSCR0_PSP;
526                 sscr1 |= SSCR1_TRAIL | SSCR1_RWOT;
527                 break;
528
529         default:
530                 return -EINVAL;
531         }
532
533         pxa_ssp_write_reg(ssp, SSCR0, sscr0);
534         pxa_ssp_write_reg(ssp, SSCR1, sscr1);
535         pxa_ssp_write_reg(ssp, SSPSP, sspsp);
536
537         dump_registers(ssp);
538
539         /* Since we are configuring the timings for the format by hand
540          * we have to defer some things until hw_params() where we
541          * know parameters like the sample size.
542          */
543         priv->dai_fmt = fmt;
544
545         return 0;
546 }
547
548 /*
549  * Set the SSP audio DMA parameters and sample size.
550  * Can be called multiple times by oss emulation.
551  */
552 static int pxa_ssp_hw_params(struct snd_pcm_substream *substream,
553                                 struct snd_pcm_hw_params *params,
554                                 struct snd_soc_dai *cpu_dai)
555 {
556         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
557         struct ssp_device *ssp = priv->ssp;
558         int chn = params_channels(params);
559         u32 sscr0;
560         u32 sspsp;
561         int width = snd_pcm_format_physical_width(params_format(params));
562         int ttsa = pxa_ssp_read_reg(ssp, SSTSA) & 0xf;
563         struct pxa2xx_pcm_dma_params *dma_data;
564
565         dma_data = snd_soc_dai_get_dma_data(cpu_dai, substream);
566
567         /* generate correct DMA params */
568         kfree(dma_data);
569
570         /* Network mode with one active slot (ttsa == 1) can be used
571          * to force 16-bit frame width on the wire (for S16_LE), even
572          * with two channels. Use 16-bit DMA transfers for this case.
573          */
574         dma_data = pxa_ssp_get_dma_params(ssp,
575                         ((chn == 2) && (ttsa != 1)) || (width == 32),
576                         substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
577
578         snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
579
580         /* we can only change the settings if the port is not in use */
581         if (pxa_ssp_read_reg(ssp, SSCR0) & SSCR0_SSE)
582                 return 0;
583
584         /* clear selected SSP bits */
585         sscr0 = pxa_ssp_read_reg(ssp, SSCR0) & ~(SSCR0_DSS | SSCR0_EDSS);
586         pxa_ssp_write_reg(ssp, SSCR0, sscr0);
587
588         /* bit size */
589         sscr0 = pxa_ssp_read_reg(ssp, SSCR0);
590         switch (params_format(params)) {
591         case SNDRV_PCM_FORMAT_S16_LE:
592 #ifdef CONFIG_PXA3xx
593                 if (cpu_is_pxa3xx())
594                         sscr0 |= SSCR0_FPCKE;
595 #endif
596                 sscr0 |= SSCR0_DataSize(16);
597                 break;
598         case SNDRV_PCM_FORMAT_S24_LE:
599                 sscr0 |= (SSCR0_EDSS | SSCR0_DataSize(8));
600                 break;
601         case SNDRV_PCM_FORMAT_S32_LE:
602                 sscr0 |= (SSCR0_EDSS | SSCR0_DataSize(16));
603                 break;
604         }
605         pxa_ssp_write_reg(ssp, SSCR0, sscr0);
606
607         switch (priv->dai_fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
608         case SND_SOC_DAIFMT_I2S:
609                sspsp = pxa_ssp_read_reg(ssp, SSPSP);
610
611                 if ((pxa_ssp_get_scr(ssp) == 4) && (width == 16)) {
612                         /* This is a special case where the bitclk is 64fs
613                         * and we're not dealing with 2*32 bits of audio
614                         * samples.
615                         *
616                         * The SSP values used for that are all found out by
617                         * trying and failing a lot; some of the registers
618                         * needed for that mode are only available on PXA3xx.
619                         */
620
621 #ifdef CONFIG_PXA3xx
622                         if (!cpu_is_pxa3xx())
623                                 return -EINVAL;
624
625                         sspsp |= SSPSP_SFRMWDTH(width * 2);
626                         sspsp |= SSPSP_SFRMDLY(width * 4);
627                         sspsp |= SSPSP_EDMYSTOP(3);
628                         sspsp |= SSPSP_DMYSTOP(3);
629                         sspsp |= SSPSP_DMYSTRT(1);
630 #else
631                         return -EINVAL;
632 #endif
633                 } else {
634                         /* The frame width is the width the LRCLK is
635                          * asserted for; the delay is expressed in
636                          * half cycle units.  We need the extra cycle
637                          * because the data starts clocking out one BCLK
638                          * after LRCLK changes polarity.
639                          */
640                         sspsp |= SSPSP_SFRMWDTH(width + 1);
641                         sspsp |= SSPSP_SFRMDLY((width + 1) * 2);
642                         sspsp |= SSPSP_DMYSTRT(1);
643                 }
644
645                 pxa_ssp_write_reg(ssp, SSPSP, sspsp);
646                 break;
647         default:
648                 break;
649         }
650
651         /* When we use a network mode, we always require TDM slots
652          * - complain loudly and fail if they've not been set up yet.
653          */
654         if ((sscr0 & SSCR0_MOD) && !ttsa) {
655                 dev_err(&ssp->pdev->dev, "No TDM timeslot configured\n");
656                 return -EINVAL;
657         }
658
659         dump_registers(ssp);
660
661         return 0;
662 }
663
664 static int pxa_ssp_trigger(struct snd_pcm_substream *substream, int cmd,
665                            struct snd_soc_dai *cpu_dai)
666 {
667         int ret = 0;
668         struct ssp_priv *priv = snd_soc_dai_get_drvdata(cpu_dai);
669         struct ssp_device *ssp = priv->ssp;
670         int val;
671
672         switch (cmd) {
673         case SNDRV_PCM_TRIGGER_RESUME:
674                 pxa_ssp_enable(ssp);
675                 break;
676         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
677                 val = pxa_ssp_read_reg(ssp, SSCR1);
678                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
679                         val |= SSCR1_TSRE;
680                 else
681                         val |= SSCR1_RSRE;
682                 pxa_ssp_write_reg(ssp, SSCR1, val);
683                 val = pxa_ssp_read_reg(ssp, SSSR);
684                 pxa_ssp_write_reg(ssp, SSSR, val);
685                 break;
686         case SNDRV_PCM_TRIGGER_START:
687                 val = pxa_ssp_read_reg(ssp, SSCR1);
688                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
689                         val |= SSCR1_TSRE;
690                 else
691                         val |= SSCR1_RSRE;
692                 pxa_ssp_write_reg(ssp, SSCR1, val);
693                 pxa_ssp_enable(ssp);
694                 break;
695         case SNDRV_PCM_TRIGGER_STOP:
696                 val = pxa_ssp_read_reg(ssp, SSCR1);
697                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
698                         val &= ~SSCR1_TSRE;
699                 else
700                         val &= ~SSCR1_RSRE;
701                 pxa_ssp_write_reg(ssp, SSCR1, val);
702                 break;
703         case SNDRV_PCM_TRIGGER_SUSPEND:
704                 pxa_ssp_disable(ssp);
705                 break;
706         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
707                 val = pxa_ssp_read_reg(ssp, SSCR1);
708                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
709                         val &= ~SSCR1_TSRE;
710                 else
711                         val &= ~SSCR1_RSRE;
712                 pxa_ssp_write_reg(ssp, SSCR1, val);
713                 break;
714
715         default:
716                 ret = -EINVAL;
717         }
718
719         dump_registers(ssp);
720
721         return ret;
722 }
723
724 static int pxa_ssp_probe(struct snd_soc_dai *dai)
725 {
726         struct ssp_priv *priv;
727         int ret;
728
729         priv = kzalloc(sizeof(struct ssp_priv), GFP_KERNEL);
730         if (!priv)
731                 return -ENOMEM;
732
733         priv->ssp = pxa_ssp_request(dai->id + 1, "SoC audio");
734         if (priv->ssp == NULL) {
735                 ret = -ENODEV;
736                 goto err_priv;
737         }
738
739         priv->dai_fmt = (unsigned int) -1;
740         snd_soc_dai_set_drvdata(dai, priv);
741
742         return 0;
743
744 err_priv:
745         kfree(priv);
746         return ret;
747 }
748
749 static int pxa_ssp_remove(struct snd_soc_dai *dai)
750 {
751         struct ssp_priv *priv = snd_soc_dai_get_drvdata(dai);
752
753         pxa_ssp_free(priv->ssp);
754         return 0;
755 }
756
757 #define PXA_SSP_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
758                           SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | \
759                           SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 | \
760                           SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
761
762 #define PXA_SSP_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
763                             SNDRV_PCM_FMTBIT_S24_LE |   \
764                             SNDRV_PCM_FMTBIT_S32_LE)
765
766 static struct snd_soc_dai_ops pxa_ssp_dai_ops = {
767         .startup        = pxa_ssp_startup,
768         .shutdown       = pxa_ssp_shutdown,
769         .trigger        = pxa_ssp_trigger,
770         .hw_params      = pxa_ssp_hw_params,
771         .set_sysclk     = pxa_ssp_set_dai_sysclk,
772         .set_clkdiv     = pxa_ssp_set_dai_clkdiv,
773         .set_pll        = pxa_ssp_set_dai_pll,
774         .set_fmt        = pxa_ssp_set_dai_fmt,
775         .set_tdm_slot   = pxa_ssp_set_dai_tdm_slot,
776         .set_tristate   = pxa_ssp_set_dai_tristate,
777 };
778
779 static struct snd_soc_dai_driver pxa_ssp_dai = {
780                 .probe = pxa_ssp_probe,
781                 .remove = pxa_ssp_remove,
782                 .suspend = pxa_ssp_suspend,
783                 .resume = pxa_ssp_resume,
784                 .playback = {
785                         .channels_min = 1,
786                         .channels_max = 8,
787                         .rates = PXA_SSP_RATES,
788                         .formats = PXA_SSP_FORMATS,
789                 },
790                 .capture = {
791                          .channels_min = 1,
792                          .channels_max = 8,
793                         .rates = PXA_SSP_RATES,
794                         .formats = PXA_SSP_FORMATS,
795                  },
796                 .ops = &pxa_ssp_dai_ops,
797 };
798
799 static __devinit int asoc_ssp_probe(struct platform_device *pdev)
800 {
801         return snd_soc_register_dai(&pdev->dev, &pxa_ssp_dai);
802 }
803
804 static int __devexit asoc_ssp_remove(struct platform_device *pdev)
805 {
806         snd_soc_unregister_dai(&pdev->dev);
807         return 0;
808 }
809
810 static struct platform_driver asoc_ssp_driver = {
811         .driver = {
812                         .name = "pxa-ssp-dai",
813                         .owner = THIS_MODULE,
814         },
815
816         .probe = asoc_ssp_probe,
817         .remove = __devexit_p(asoc_ssp_remove),
818 };
819
820 static int __init pxa_ssp_init(void)
821 {
822         return platform_driver_register(&asoc_ssp_driver);
823 }
824 module_init(pxa_ssp_init);
825
826 static void __exit pxa_ssp_exit(void)
827 {
828         platform_driver_unregister(&asoc_ssp_driver);
829 }
830 module_exit(pxa_ssp_exit);
831
832 /* Module information */
833 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
834 MODULE_DESCRIPTION("PXA SSP/PCM SoC Interface");
835 MODULE_LICENSE("GPL");