ASoC: fsl: Set sdma peripheral type directly
[deliverable/linux.git] / sound / soc / fsl / imx-ssi.c
CommitLineData
8380222e
SH
1/*
2 * imx-ssi.c -- ALSA Soc Audio Layer
3 *
4 * Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de>
5 *
6 * This code is based on code copyrighted by Freescale,
7 * Liam Girdwood, Javier Martin and probably others.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 *
15 * The i.MX SSI core has some nasty limitations in AC97 mode. While most
16 * sane processor vendors have a FIFO per AC97 slot, the i.MX has only
17 * one FIFO which combines all valid receive slots. We cannot even select
18 * which slots we want to receive. The WM9712 with which this driver
25985edc 19 * was developed with always sends GPIO status data in slot 12 which
8380222e
SH
20 * we receive in our (PCM-) data stream. The only chance we have is to
21 * manually skip this data in the FIQ handler. With sampling rates different
22 * from 48000Hz not every frame has valid receive data, so the ratio
23 * between pcm data and GPIO status data changes. Our FIQ handler is not
24 * able to handle this, hence this driver only works with 48000Hz sampling
25 * rate.
25d1fbfd 26 * Reading and writing AC97 registers is another challenge. The core
8380222e
SH
27 * provides us status bits when the read register is updated with *another*
28 * value. When we read the same register two times (and the register still
29 * contains the same value) these status bits are not set. We work
30 * around this by not polling these bits but only wait a fixed delay.
a23dc694 31 *
8380222e
SH
32 */
33
34#include <linux/clk.h>
35#include <linux/delay.h>
36#include <linux/device.h>
37#include <linux/dma-mapping.h>
38#include <linux/init.h>
39#include <linux/interrupt.h>
40#include <linux/module.h>
41#include <linux/platform_device.h>
5a0e3ad6 42#include <linux/slab.h>
8380222e
SH
43
44#include <sound/core.h>
45#include <sound/initval.h>
46#include <sound/pcm.h>
47#include <sound/pcm_params.h>
48#include <sound/soc.h>
49
82906b13 50#include <linux/platform_data/asoc-imx-ssi.h>
8380222e
SH
51
52#include "imx-ssi.h"
53
54#define SSI_SACNT_DEFAULT (SSI_SACNT_AC97EN | SSI_SACNT_FV)
55
56/*
57 * SSI Network Mode or TDM slots configuration.
58 * Should only be called when port is inactive (i.e. SSIEN = 0).
59 */
60static int imx_ssi_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai,
61 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
62{
f0fba2ad 63 struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
8380222e
SH
64 u32 sccr;
65
66 sccr = readl(ssi->base + SSI_STCCR);
67 sccr &= ~SSI_STCCR_DC_MASK;
68 sccr |= SSI_STCCR_DC(slots - 1);
69 writel(sccr, ssi->base + SSI_STCCR);
70
71 sccr = readl(ssi->base + SSI_SRCCR);
72 sccr &= ~SSI_STCCR_DC_MASK;
73 sccr |= SSI_STCCR_DC(slots - 1);
74 writel(sccr, ssi->base + SSI_SRCCR);
75
76 writel(tx_mask, ssi->base + SSI_STMSK);
77 writel(rx_mask, ssi->base + SSI_SRMSK);
78
79 return 0;
80}
81
82/*
83 * SSI DAI format configuration.
84 * Should only be called when port is inactive (i.e. SSIEN = 0).
8380222e
SH
85 */
86static int imx_ssi_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
87{
f0fba2ad 88 struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
8380222e
SH
89 u32 strcr = 0, scr;
90
91 scr = readl(ssi->base + SSI_SCR) & ~(SSI_SCR_SYN | SSI_SCR_NET);
92
93 /* DAI mode */
94 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
95 case SND_SOC_DAIFMT_I2S:
96 /* data on rising edge of bclk, frame low 1clk before data */
97 strcr |= SSI_STCR_TFSI | SSI_STCR_TEFS | SSI_STCR_TXBIT0;
98 scr |= SSI_SCR_NET;
0e796120
EB
99 if (ssi->flags & IMX_SSI_USE_I2S_SLAVE) {
100 scr &= ~SSI_I2S_MODE_MASK;
101 scr |= SSI_SCR_I2S_MODE_SLAVE;
102 }
8380222e
SH
103 break;
104 case SND_SOC_DAIFMT_LEFT_J:
105 /* data on rising edge of bclk, frame high with data */
106 strcr |= SSI_STCR_TXBIT0;
107 break;
108 case SND_SOC_DAIFMT_DSP_B:
109 /* data on rising edge of bclk, frame high with data */
0a93421b 110 strcr |= SSI_STCR_TFSL | SSI_STCR_TXBIT0;
8380222e
SH
111 break;
112 case SND_SOC_DAIFMT_DSP_A:
113 /* data on rising edge of bclk, frame high 1clk before data */
5ed80a75 114 strcr |= SSI_STCR_TFSL | SSI_STCR_TXBIT0 | SSI_STCR_TEFS;
8380222e
SH
115 break;
116 }
117
118 /* DAI clock inversion */
119 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
120 case SND_SOC_DAIFMT_IB_IF:
121 strcr |= SSI_STCR_TFSI;
122 strcr &= ~SSI_STCR_TSCKP;
123 break;
124 case SND_SOC_DAIFMT_IB_NF:
125 strcr &= ~(SSI_STCR_TSCKP | SSI_STCR_TFSI);
126 break;
127 case SND_SOC_DAIFMT_NB_IF:
128 strcr |= SSI_STCR_TFSI | SSI_STCR_TSCKP;
129 break;
130 case SND_SOC_DAIFMT_NB_NF:
131 strcr &= ~SSI_STCR_TFSI;
132 strcr |= SSI_STCR_TSCKP;
133 break;
134 }
135
136 /* DAI clock master masks */
137 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
d08a68bf 138 case SND_SOC_DAIFMT_CBM_CFM:
8380222e 139 break;
d08a68bf
MB
140 default:
141 /* Master mode not implemented, needs handling of clocks. */
142 return -EINVAL;
8380222e
SH
143 }
144
145 strcr |= SSI_STCR_TFEN0;
146
0e796120
EB
147 if (ssi->flags & IMX_SSI_NET)
148 scr |= SSI_SCR_NET;
149 if (ssi->flags & IMX_SSI_SYN)
150 scr |= SSI_SCR_SYN;
151
8380222e
SH
152 writel(strcr, ssi->base + SSI_STCR);
153 writel(strcr, ssi->base + SSI_SRCR);
154 writel(scr, ssi->base + SSI_SCR);
155
156 return 0;
157}
158
159/*
160 * SSI system clock configuration.
161 * Should only be called when port is inactive (i.e. SSIEN = 0).
162 */
163static int imx_ssi_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
164 int clk_id, unsigned int freq, int dir)
165{
f0fba2ad 166 struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
8380222e
SH
167 u32 scr;
168
169 scr = readl(ssi->base + SSI_SCR);
170
171 switch (clk_id) {
172 case IMX_SSP_SYS_CLK:
173 if (dir == SND_SOC_CLOCK_OUT)
174 scr |= SSI_SCR_SYS_CLK_EN;
175 else
176 scr &= ~SSI_SCR_SYS_CLK_EN;
177 break;
178 default:
179 return -EINVAL;
180 }
181
182 writel(scr, ssi->base + SSI_SCR);
183
184 return 0;
185}
186
187/*
188 * SSI Clock dividers
189 * Should only be called when port is inactive (i.e. SSIEN = 0).
190 */
191static int imx_ssi_set_dai_clkdiv(struct snd_soc_dai *cpu_dai,
192 int div_id, int div)
193{
f0fba2ad 194 struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
8380222e
SH
195 u32 stccr, srccr;
196
197 stccr = readl(ssi->base + SSI_STCCR);
198 srccr = readl(ssi->base + SSI_SRCCR);
199
200 switch (div_id) {
201 case IMX_SSI_TX_DIV_2:
202 stccr &= ~SSI_STCCR_DIV2;
203 stccr |= div;
204 break;
205 case IMX_SSI_TX_DIV_PSR:
206 stccr &= ~SSI_STCCR_PSR;
207 stccr |= div;
208 break;
209 case IMX_SSI_TX_DIV_PM:
210 stccr &= ~0xff;
211 stccr |= SSI_STCCR_PM(div);
212 break;
213 case IMX_SSI_RX_DIV_2:
214 stccr &= ~SSI_STCCR_DIV2;
215 stccr |= div;
216 break;
217 case IMX_SSI_RX_DIV_PSR:
218 stccr &= ~SSI_STCCR_PSR;
219 stccr |= div;
220 break;
221 case IMX_SSI_RX_DIV_PM:
222 stccr &= ~0xff;
223 stccr |= SSI_STCCR_PM(div);
224 break;
225 default:
226 return -EINVAL;
227 }
228
229 writel(stccr, ssi->base + SSI_STCCR);
230 writel(srccr, ssi->base + SSI_SRCCR);
231
232 return 0;
233}
234
235/*
236 * Should only be called when port is inactive (i.e. SSIEN = 0),
237 * although can be called multiple times by upper layers.
238 */
239static int imx_ssi_hw_params(struct snd_pcm_substream *substream,
240 struct snd_pcm_hw_params *params,
241 struct snd_soc_dai *cpu_dai)
242{
f0fba2ad 243 struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
8380222e
SH
244 u32 reg, sccr;
245
246 /* Tx/Rx config */
91a38540 247 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
8380222e 248 reg = SSI_STCCR;
91a38540 249 else
8380222e 250 reg = SSI_SRCCR;
8380222e 251
70bf043b
SH
252 if (ssi->flags & IMX_SSI_SYN)
253 reg = SSI_STCCR;
254
8380222e
SH
255 sccr = readl(ssi->base + reg) & ~SSI_STCCR_WL_MASK;
256
257 /* DAI data (word) size */
258 switch (params_format(params)) {
259 case SNDRV_PCM_FORMAT_S16_LE:
260 sccr |= SSI_SRCCR_WL(16);
261 break;
262 case SNDRV_PCM_FORMAT_S20_3LE:
263 sccr |= SSI_SRCCR_WL(20);
264 break;
265 case SNDRV_PCM_FORMAT_S24_LE:
266 sccr |= SSI_SRCCR_WL(24);
267 break;
268 }
269
270 writel(sccr, ssi->base + reg);
271
272 return 0;
273}
274
275static int imx_ssi_trigger(struct snd_pcm_substream *substream, int cmd,
276 struct snd_soc_dai *dai)
277{
f0fba2ad 278 struct imx_ssi *ssi = snd_soc_dai_get_drvdata(dai);
8380222e
SH
279 unsigned int sier_bits, sier;
280 unsigned int scr;
281
282 scr = readl(ssi->base + SSI_SCR);
283 sier = readl(ssi->base + SSI_SIER);
284
285 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
286 if (ssi->flags & IMX_SSI_DMA)
287 sier_bits = SSI_SIER_TDMAE;
288 else
289 sier_bits = SSI_SIER_TIE | SSI_SIER_TFE0_EN;
290 } else {
291 if (ssi->flags & IMX_SSI_DMA)
292 sier_bits = SSI_SIER_RDMAE;
293 else
294 sier_bits = SSI_SIER_RIE | SSI_SIER_RFF0_EN;
295 }
296
297 switch (cmd) {
298 case SNDRV_PCM_TRIGGER_START:
299 case SNDRV_PCM_TRIGGER_RESUME:
300 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
301 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
302 scr |= SSI_SCR_TE;
303 else
304 scr |= SSI_SCR_RE;
305 sier |= sier_bits;
306
307 if (++ssi->enabled == 1)
308 scr |= SSI_SCR_SSIEN;
309
310 break;
311
312 case SNDRV_PCM_TRIGGER_STOP:
313 case SNDRV_PCM_TRIGGER_SUSPEND:
314 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
315 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
316 scr &= ~SSI_SCR_TE;
317 else
318 scr &= ~SSI_SCR_RE;
319 sier &= ~sier_bits;
320
321 if (--ssi->enabled == 0)
322 scr &= ~SSI_SCR_SSIEN;
323
324 break;
325 default:
326 return -EINVAL;
327 }
328
329 if (!(ssi->flags & IMX_SSI_USE_AC97))
330 /* rx/tx are always enabled to access ac97 registers */
331 writel(scr, ssi->base + SSI_SCR);
332
333 writel(sier, ssi->base + SSI_SIER);
334
335 return 0;
336}
337
85e7652d 338static const struct snd_soc_dai_ops imx_ssi_pcm_dai_ops = {
8380222e
SH
339 .hw_params = imx_ssi_hw_params,
340 .set_fmt = imx_ssi_set_dai_fmt,
341 .set_clkdiv = imx_ssi_set_dai_clkdiv,
342 .set_sysclk = imx_ssi_set_dai_sysclk,
343 .set_tdm_slot = imx_ssi_set_dai_tdm_slot,
344 .trigger = imx_ssi_trigger,
345};
346
f562be51
SH
347static int imx_ssi_dai_probe(struct snd_soc_dai *dai)
348{
349 struct imx_ssi *ssi = dev_get_drvdata(dai->dev);
350 uint32_t val;
351
352 snd_soc_dai_set_drvdata(dai, ssi);
353
a8909c9b
LPC
354 val = SSI_SFCSR_TFWM0(ssi->dma_params_tx.maxburst) |
355 SSI_SFCSR_RFWM0(ssi->dma_params_rx.maxburst);
f562be51
SH
356 writel(val, ssi->base + SSI_SFCSR);
357
fc8ba7f9
LPC
358 /* Tx/Rx config */
359 dai->playback_dma_data = &ssi->dma_params_tx;
360 dai->capture_dma_data = &ssi->dma_params_rx;
361
f562be51
SH
362 return 0;
363}
364
f0fba2ad 365static struct snd_soc_dai_driver imx_ssi_dai = {
f562be51 366 .probe = imx_ssi_dai_probe,
f0fba2ad 367 .playback = {
104c2299 368 .channels_min = 1,
f0fba2ad
LG
369 .channels_max = 2,
370 .rates = SNDRV_PCM_RATE_8000_96000,
371 .formats = SNDRV_PCM_FMTBIT_S16_LE,
372 },
373 .capture = {
104c2299 374 .channels_min = 1,
f0fba2ad
LG
375 .channels_max = 2,
376 .rates = SNDRV_PCM_RATE_8000_96000,
377 .formats = SNDRV_PCM_FMTBIT_S16_LE,
378 },
379 .ops = &imx_ssi_pcm_dai_ops,
8380222e 380};
8380222e 381
f0fba2ad
LG
382static struct snd_soc_dai_driver imx_ac97_dai = {
383 .probe = imx_ssi_dai_probe,
8380222e
SH
384 .ac97_control = 1,
385 .playback = {
386 .stream_name = "AC97 Playback",
387 .channels_min = 2,
388 .channels_max = 2,
c1963c37 389 .rates = SNDRV_PCM_RATE_8000_48000,
8380222e
SH
390 .formats = SNDRV_PCM_FMTBIT_S16_LE,
391 },
392 .capture = {
393 .stream_name = "AC97 Capture",
394 .channels_min = 2,
395 .channels_max = 2,
396 .rates = SNDRV_PCM_RATE_48000,
397 .formats = SNDRV_PCM_FMTBIT_S16_LE,
398 },
399 .ops = &imx_ssi_pcm_dai_ops,
400};
401
c22fd5ef
KM
402static const struct snd_soc_component_driver imx_component = {
403 .name = DRV_NAME,
404};
405
8380222e
SH
406static void setup_channel_to_ac97(struct imx_ssi *imx_ssi)
407{
408 void __iomem *base = imx_ssi->base;
409
410 writel(0x0, base + SSI_SCR);
411 writel(0x0, base + SSI_STCR);
412 writel(0x0, base + SSI_SRCR);
413
414 writel(SSI_SCR_SYN | SSI_SCR_NET, base + SSI_SCR);
415
416 writel(SSI_SFCSR_RFWM0(8) |
417 SSI_SFCSR_TFWM0(8) |
418 SSI_SFCSR_RFWM1(8) |
419 SSI_SFCSR_TFWM1(8), base + SSI_SFCSR);
420
421 writel(SSI_STCCR_WL(16) | SSI_STCCR_DC(12), base + SSI_STCCR);
422 writel(SSI_STCCR_WL(16) | SSI_STCCR_DC(12), base + SSI_SRCCR);
423
424 writel(SSI_SCR_SYN | SSI_SCR_NET | SSI_SCR_SSIEN, base + SSI_SCR);
425 writel(SSI_SOR_WAIT(3), base + SSI_SOR);
426
427 writel(SSI_SCR_SYN | SSI_SCR_NET | SSI_SCR_SSIEN |
428 SSI_SCR_TE | SSI_SCR_RE,
429 base + SSI_SCR);
430
431 writel(SSI_SACNT_DEFAULT, base + SSI_SACNT);
432 writel(0xff, base + SSI_SACCDIS);
433 writel(0x300, base + SSI_SACCEN);
434}
435
436static struct imx_ssi *ac97_ssi;
437
438static void imx_ssi_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
439 unsigned short val)
440{
441 struct imx_ssi *imx_ssi = ac97_ssi;
442 void __iomem *base = imx_ssi->base;
443 unsigned int lreg;
444 unsigned int lval;
445
446 if (reg > 0x7f)
447 return;
448
449 pr_debug("%s: 0x%02x 0x%04x\n", __func__, reg, val);
450
451 lreg = reg << 12;
452 writel(lreg, base + SSI_SACADD);
453
454 lval = val << 4;
455 writel(lval , base + SSI_SACDAT);
456
457 writel(SSI_SACNT_DEFAULT | SSI_SACNT_WR, base + SSI_SACNT);
458 udelay(100);
459}
460
461static unsigned short imx_ssi_ac97_read(struct snd_ac97 *ac97,
462 unsigned short reg)
463{
464 struct imx_ssi *imx_ssi = ac97_ssi;
465 void __iomem *base = imx_ssi->base;
466
467 unsigned short val = -1;
468 unsigned int lreg;
469
470 lreg = (reg & 0x7f) << 12 ;
471 writel(lreg, base + SSI_SACADD);
472 writel(SSI_SACNT_DEFAULT | SSI_SACNT_RD, base + SSI_SACNT);
473
474 udelay(100);
475
476 val = (readl(base + SSI_SACDAT) >> 4) & 0xffff;
477
478 pr_debug("%s: 0x%02x 0x%04x\n", __func__, reg, val);
479
480 return val;
481}
482
483static void imx_ssi_ac97_reset(struct snd_ac97 *ac97)
484{
485 struct imx_ssi *imx_ssi = ac97_ssi;
486
487 if (imx_ssi->ac97_reset)
488 imx_ssi->ac97_reset(ac97);
b6e51600
SH
489 /* First read sometimes fails, do a dummy read */
490 imx_ssi_ac97_read(ac97, 0);
8380222e
SH
491}
492
493static void imx_ssi_ac97_warm_reset(struct snd_ac97 *ac97)
494{
495 struct imx_ssi *imx_ssi = ac97_ssi;
496
497 if (imx_ssi->ac97_warm_reset)
498 imx_ssi->ac97_warm_reset(ac97);
b6e51600
SH
499
500 /* First read sometimes fails, do a dummy read */
501 imx_ssi_ac97_read(ac97, 0);
8380222e
SH
502}
503
b047e1cc 504static struct snd_ac97_bus_ops imx_ssi_ac97_ops = {
8380222e
SH
505 .read = imx_ssi_ac97_read,
506 .write = imx_ssi_ac97_write,
507 .reset = imx_ssi_ac97_reset,
508 .warm_reset = imx_ssi_ac97_warm_reset
509};
8380222e 510
8380222e
SH
511static int imx_ssi_probe(struct platform_device *pdev)
512{
513 struct resource *res;
514 struct imx_ssi *ssi;
515 struct imx_ssi_platform_data *pdata = pdev->dev.platform_data;
8380222e 516 int ret = 0;
f0fba2ad 517 struct snd_soc_dai_driver *dai;
8380222e 518
ad3ab1bb 519 ssi = devm_kzalloc(&pdev->dev, sizeof(*ssi), GFP_KERNEL);
8380222e
SH
520 if (!ssi)
521 return -ENOMEM;
f0fba2ad 522 dev_set_drvdata(&pdev->dev, ssi);
8380222e
SH
523
524 if (pdata) {
525 ssi->ac97_reset = pdata->ac97_reset;
526 ssi->ac97_warm_reset = pdata->ac97_warm_reset;
527 ssi->flags = pdata->flags;
528 }
529
8380222e
SH
530 ssi->irq = platform_get_irq(pdev, 0);
531
ad3ab1bb 532 ssi->clk = devm_clk_get(&pdev->dev, NULL);
8380222e
SH
533 if (IS_ERR(ssi->clk)) {
534 ret = PTR_ERR(ssi->clk);
535 dev_err(&pdev->dev, "Cannot get the clock: %d\n",
536 ret);
537 goto failed_clk;
538 }
41c73b6e 539 clk_prepare_enable(ssi->clk);
8380222e
SH
540
541 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
b25b5aa0
TR
542 ssi->base = devm_ioremap_resource(&pdev->dev, res);
543 if (IS_ERR(ssi->base)) {
544 ret = PTR_ERR(ssi->base);
ad3ab1bb 545 goto failed_register;
8380222e
SH
546 }
547
548 if (ssi->flags & IMX_SSI_USE_AC97) {
549 if (ac97_ssi) {
a0f1e98b 550 dev_err(&pdev->dev, "AC'97 SSI already registered\n");
8380222e 551 ret = -EBUSY;
ad3ab1bb 552 goto failed_register;
8380222e
SH
553 }
554 ac97_ssi = ssi;
555 setup_channel_to_ac97(ssi);
f0fba2ad 556 dai = &imx_ac97_dai;
8380222e 557 } else
f0fba2ad 558 dai = &imx_ssi_dai;
8380222e
SH
559
560 writel(0x0, ssi->base + SSI_SIER);
561
a8909c9b
LPC
562 ssi->dma_params_rx.addr = res->start + SSI_SRX0;
563 ssi->dma_params_tx.addr = res->start + SSI_STX0;
8380222e 564
a8909c9b
LPC
565 ssi->dma_params_tx.maxburst = 6;
566 ssi->dma_params_rx.maxburst = 4;
567
568 ssi->dma_params_tx.filter_data = &ssi->filter_data_tx;
569 ssi->dma_params_rx.filter_data = &ssi->filter_data_rx;
0a93421b 570
8380222e 571 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx0");
312bb4f6 572 if (res) {
a8909c9b 573 imx_pcm_dma_params_init_data(&ssi->filter_data_tx, res->start,
32bd8cd2 574 IMX_DMATYPE_SSI);
312bb4f6 575 }
8380222e
SH
576
577 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx0");
312bb4f6 578 if (res) {
a8909c9b 579 imx_pcm_dma_params_init_data(&ssi->filter_data_rx, res->start,
32bd8cd2 580 IMX_DMATYPE_SSI);
312bb4f6 581 }
8380222e 582
f0fba2ad 583 platform_set_drvdata(pdev, ssi);
8380222e 584
b047e1cc
MB
585 ret = snd_soc_set_ac97_ops(&imx_ssi_ac97_ops);
586 if (ret != 0) {
587 dev_err(&pdev->dev, "Failed to set AC'97 ops: %d\n", ret);
588 goto failed_register;
589 }
590
c22fd5ef
KM
591 ret = snd_soc_register_component(&pdev->dev, &imx_component,
592 dai, 1);
8380222e
SH
593 if (ret) {
594 dev_err(&pdev->dev, "register DAI failed\n");
595 goto failed_register;
596 }
597
9051cba1
MP
598 ssi->fiq_params.irq = ssi->irq;
599 ssi->fiq_params.base = ssi->base;
600 ssi->fiq_params.dma_params_rx = &ssi->dma_params_rx;
601 ssi->fiq_params.dma_params_tx = &ssi->dma_params_tx;
602
603 ret = imx_pcm_fiq_init(pdev, &ssi->fiq_params);
2bf9d4bb
SG
604 if (ret)
605 goto failed_pcm_fiq;
f562be51 606
3b7d4638
SG
607 ret = imx_pcm_dma_init(pdev);
608 if (ret)
609 goto failed_pcm_dma;
8380222e
SH
610
611 return 0;
612
3b7d4638 613failed_pcm_dma:
2bf9d4bb
SG
614 imx_pcm_fiq_exit(pdev);
615failed_pcm_fiq:
c22fd5ef 616 snd_soc_unregister_component(&pdev->dev);
8380222e 617failed_register:
8380222e 618 release_mem_region(res->start, resource_size(res));
41c73b6e 619 clk_disable_unprepare(ssi->clk);
8380222e 620failed_clk:
b047e1cc 621 snd_soc_set_ac97_ops(NULL);
8380222e
SH
622
623 return ret;
624}
625
a0a3d518 626static int imx_ssi_remove(struct platform_device *pdev)
8380222e
SH
627{
628 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
629 struct imx_ssi *ssi = platform_get_drvdata(pdev);
630
3b7d4638 631 imx_pcm_dma_exit(pdev);
2bf9d4bb 632 imx_pcm_fiq_exit(pdev);
f0fba2ad 633
c22fd5ef 634 snd_soc_unregister_component(&pdev->dev);
8380222e
SH
635
636 if (ssi->flags & IMX_SSI_USE_AC97)
637 ac97_ssi = NULL;
638
8380222e 639 release_mem_region(res->start, resource_size(res));
41c73b6e 640 clk_disable_unprepare(ssi->clk);
b047e1cc 641 snd_soc_set_ac97_ops(NULL);
8380222e
SH
642
643 return 0;
644}
645
646static struct platform_driver imx_ssi_driver = {
647 .probe = imx_ssi_probe,
a0a3d518 648 .remove = imx_ssi_remove,
8380222e
SH
649
650 .driver = {
205d231b 651 .name = "imx-ssi",
8380222e
SH
652 .owner = THIS_MODULE,
653 },
654};
655
7a24b2ba 656module_platform_driver(imx_ssi_driver);
8380222e
SH
657
658/* Module information */
659MODULE_AUTHOR("Sascha Hauer, <s.hauer@pengutronix.de>");
660MODULE_DESCRIPTION("i.MX I2S/ac97 SoC Interface");
661MODULE_LICENSE("GPL");
96dcabb9 662MODULE_ALIAS("platform:imx-ssi");
This page took 0.199922 seconds and 5 git commands to generate.