• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
19  * was developed with always sends GPIO status data in slot 12 which
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.
26  * Reading and writing AC97 registers is another challenge. The core
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.
31  *
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>
42 #include <linux/slab.h>
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 
50 #include <linux/platform_data/asoc-imx-ssi.h>
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  */
imx_ssi_set_dai_tdm_slot(struct snd_soc_dai * cpu_dai,unsigned int tx_mask,unsigned int rx_mask,int slots,int slot_width)60 static 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 {
63 	struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
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).
85  */
imx_ssi_set_dai_fmt(struct snd_soc_dai * cpu_dai,unsigned int fmt)86 static int imx_ssi_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
87 {
88 	struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
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;
99 		if (ssi->flags & IMX_SSI_USE_I2S_SLAVE) {
100 			scr &= ~SSI_I2S_MODE_MASK;
101 			scr |= SSI_SCR_I2S_MODE_SLAVE;
102 		}
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 */
110 		strcr |= SSI_STCR_TFSL | SSI_STCR_TXBIT0;
111 		break;
112 	case SND_SOC_DAIFMT_DSP_A:
113 		/* data on rising edge of bclk, frame high 1clk before data */
114 		strcr |= SSI_STCR_TFSL | SSI_STCR_TXBIT0 | SSI_STCR_TEFS;
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) {
138 	case SND_SOC_DAIFMT_CBM_CFM:
139 		break;
140 	default:
141 		/* Master mode not implemented, needs handling of clocks. */
142 		return -EINVAL;
143 	}
144 
145 	strcr |= SSI_STCR_TFEN0;
146 
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 
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  */
imx_ssi_set_dai_sysclk(struct snd_soc_dai * cpu_dai,int clk_id,unsigned int freq,int dir)163 static int imx_ssi_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
164 				  int clk_id, unsigned int freq, int dir)
165 {
166 	struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
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  */
imx_ssi_set_dai_clkdiv(struct snd_soc_dai * cpu_dai,int div_id,int div)191 static int imx_ssi_set_dai_clkdiv(struct snd_soc_dai *cpu_dai,
192 				  int div_id, int div)
193 {
194 	struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
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  */
imx_ssi_hw_params(struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params,struct snd_soc_dai * cpu_dai)239 static 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 {
243 	struct imx_ssi *ssi = snd_soc_dai_get_drvdata(cpu_dai);
244 	u32 reg, sccr;
245 
246 	/* Tx/Rx config */
247 	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
248 		reg = SSI_STCCR;
249 	else
250 		reg = SSI_SRCCR;
251 
252 	if (ssi->flags & IMX_SSI_SYN)
253 		reg = SSI_STCCR;
254 
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 
imx_ssi_trigger(struct snd_pcm_substream * substream,int cmd,struct snd_soc_dai * dai)275 static int imx_ssi_trigger(struct snd_pcm_substream *substream, int cmd,
276 		struct snd_soc_dai *dai)
277 {
278 	struct imx_ssi *ssi = snd_soc_dai_get_drvdata(dai);
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 
338 static const struct snd_soc_dai_ops imx_ssi_pcm_dai_ops = {
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 
imx_ssi_dai_probe(struct snd_soc_dai * dai)347 static 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 
354 	val = SSI_SFCSR_TFWM0(ssi->dma_params_tx.maxburst) |
355 		SSI_SFCSR_RFWM0(ssi->dma_params_rx.maxburst);
356 	writel(val, ssi->base + SSI_SFCSR);
357 
358 	/* Tx/Rx config */
359 	dai->playback_dma_data = &ssi->dma_params_tx;
360 	dai->capture_dma_data = &ssi->dma_params_rx;
361 
362 	return 0;
363 }
364 
365 static struct snd_soc_dai_driver imx_ssi_dai = {
366 	.probe = imx_ssi_dai_probe,
367 	.playback = {
368 		.channels_min = 1,
369 		.channels_max = 2,
370 		.rates = SNDRV_PCM_RATE_8000_96000,
371 		.formats = SNDRV_PCM_FMTBIT_S16_LE,
372 	},
373 	.capture = {
374 		.channels_min = 1,
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,
380 };
381 
382 static struct snd_soc_dai_driver imx_ac97_dai = {
383 	.probe = imx_ssi_dai_probe,
384 	.ac97_control = 1,
385 	.playback = {
386 		.stream_name = "AC97 Playback",
387 		.channels_min = 2,
388 		.channels_max = 2,
389 		.rates = SNDRV_PCM_RATE_8000_48000,
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 
402 static const struct snd_soc_component_driver imx_component = {
403 	.name		= DRV_NAME,
404 };
405 
setup_channel_to_ac97(struct imx_ssi * imx_ssi)406 static 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 
436 static struct imx_ssi *ac97_ssi;
437 
imx_ssi_ac97_write(struct snd_ac97 * ac97,unsigned short reg,unsigned short val)438 static 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 
imx_ssi_ac97_read(struct snd_ac97 * ac97,unsigned short reg)461 static 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 
imx_ssi_ac97_reset(struct snd_ac97 * ac97)483 static 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);
489 	/* First read sometimes fails, do a dummy read */
490 	imx_ssi_ac97_read(ac97, 0);
491 }
492 
imx_ssi_ac97_warm_reset(struct snd_ac97 * ac97)493 static 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);
499 
500 	/* First read sometimes fails, do a dummy read */
501 	imx_ssi_ac97_read(ac97, 0);
502 }
503 
504 struct snd_ac97_bus_ops soc_ac97_ops = {
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 };
510 EXPORT_SYMBOL_GPL(soc_ac97_ops);
511 
imx_ssi_probe(struct platform_device * pdev)512 static int imx_ssi_probe(struct platform_device *pdev)
513 {
514 	struct resource *res;
515 	struct imx_ssi *ssi;
516 	struct imx_ssi_platform_data *pdata = pdev->dev.platform_data;
517 	int ret = 0;
518 	struct snd_soc_dai_driver *dai;
519 
520 	ssi = devm_kzalloc(&pdev->dev, sizeof(*ssi), GFP_KERNEL);
521 	if (!ssi)
522 		return -ENOMEM;
523 	dev_set_drvdata(&pdev->dev, ssi);
524 
525 	if (pdata) {
526 		ssi->ac97_reset = pdata->ac97_reset;
527 		ssi->ac97_warm_reset = pdata->ac97_warm_reset;
528 		ssi->flags = pdata->flags;
529 	}
530 
531 	ssi->irq = platform_get_irq(pdev, 0);
532 
533 	ssi->clk = devm_clk_get(&pdev->dev, NULL);
534 	if (IS_ERR(ssi->clk)) {
535 		ret = PTR_ERR(ssi->clk);
536 		dev_err(&pdev->dev, "Cannot get the clock: %d\n",
537 			ret);
538 		goto failed_clk;
539 	}
540 	clk_prepare_enable(ssi->clk);
541 
542 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
543 	ssi->base = devm_ioremap_resource(&pdev->dev, res);
544 	if (IS_ERR(ssi->base)) {
545 		ret = PTR_ERR(ssi->base);
546 		goto failed_register;
547 	}
548 
549 	if (ssi->flags & IMX_SSI_USE_AC97) {
550 		if (ac97_ssi) {
551 			dev_err(&pdev->dev, "AC'97 SSI already registered\n");
552 			ret = -EBUSY;
553 			goto failed_register;
554 		}
555 		ac97_ssi = ssi;
556 		setup_channel_to_ac97(ssi);
557 		dai = &imx_ac97_dai;
558 	} else
559 		dai = &imx_ssi_dai;
560 
561 	writel(0x0, ssi->base + SSI_SIER);
562 
563 	ssi->dma_params_rx.addr = res->start + SSI_SRX0;
564 	ssi->dma_params_tx.addr = res->start + SSI_STX0;
565 
566 	ssi->dma_params_tx.maxburst = 6;
567 	ssi->dma_params_rx.maxburst = 4;
568 
569 	ssi->dma_params_tx.filter_data = &ssi->filter_data_tx;
570 	ssi->dma_params_rx.filter_data = &ssi->filter_data_rx;
571 
572 	res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx0");
573 	if (res) {
574 		imx_pcm_dma_params_init_data(&ssi->filter_data_tx, res->start,
575 			false);
576 	}
577 
578 	res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx0");
579 	if (res) {
580 		imx_pcm_dma_params_init_data(&ssi->filter_data_rx, res->start,
581 			false);
582 	}
583 
584 	platform_set_drvdata(pdev, ssi);
585 
586 	ret = snd_soc_register_component(&pdev->dev, &imx_component,
587 					 dai, 1);
588 	if (ret) {
589 		dev_err(&pdev->dev, "register DAI failed\n");
590 		goto failed_register;
591 	}
592 
593 	ssi->soc_platform_pdev_fiq = platform_device_alloc("imx-fiq-pcm-audio", pdev->id);
594 	if (!ssi->soc_platform_pdev_fiq) {
595 		ret = -ENOMEM;
596 		goto failed_pdev_fiq_alloc;
597 	}
598 
599 	platform_set_drvdata(ssi->soc_platform_pdev_fiq, ssi);
600 	ret = platform_device_add(ssi->soc_platform_pdev_fiq);
601 	if (ret) {
602 		dev_err(&pdev->dev, "failed to add platform device\n");
603 		goto failed_pdev_fiq_add;
604 	}
605 
606 	ssi->soc_platform_pdev = platform_device_alloc("imx-pcm-audio", pdev->id);
607 	if (!ssi->soc_platform_pdev) {
608 		ret = -ENOMEM;
609 		goto failed_pdev_alloc;
610 	}
611 
612 	platform_set_drvdata(ssi->soc_platform_pdev, ssi);
613 	ret = platform_device_add(ssi->soc_platform_pdev);
614 	if (ret) {
615 		dev_err(&pdev->dev, "failed to add platform device\n");
616 		goto failed_pdev_add;
617 	}
618 
619 	return 0;
620 
621 failed_pdev_add:
622 	platform_device_put(ssi->soc_platform_pdev);
623 failed_pdev_alloc:
624 	platform_device_del(ssi->soc_platform_pdev_fiq);
625 failed_pdev_fiq_add:
626 	platform_device_put(ssi->soc_platform_pdev_fiq);
627 failed_pdev_fiq_alloc:
628 	snd_soc_unregister_component(&pdev->dev);
629 failed_register:
630 	release_mem_region(res->start, resource_size(res));
631 	clk_disable_unprepare(ssi->clk);
632 failed_clk:
633 
634 	return ret;
635 }
636 
imx_ssi_remove(struct platform_device * pdev)637 static int imx_ssi_remove(struct platform_device *pdev)
638 {
639 	struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
640 	struct imx_ssi *ssi = platform_get_drvdata(pdev);
641 
642 	platform_device_unregister(ssi->soc_platform_pdev);
643 	platform_device_unregister(ssi->soc_platform_pdev_fiq);
644 
645 	snd_soc_unregister_component(&pdev->dev);
646 
647 	if (ssi->flags & IMX_SSI_USE_AC97)
648 		ac97_ssi = NULL;
649 
650 	release_mem_region(res->start, resource_size(res));
651 	clk_disable_unprepare(ssi->clk);
652 
653 	return 0;
654 }
655 
656 static struct platform_driver imx_ssi_driver = {
657 	.probe = imx_ssi_probe,
658 	.remove = imx_ssi_remove,
659 
660 	.driver = {
661 		.name = "imx-ssi",
662 		.owner = THIS_MODULE,
663 	},
664 };
665 
666 module_platform_driver(imx_ssi_driver);
667 
668 /* Module information */
669 MODULE_AUTHOR("Sascha Hauer, <s.hauer@pengutronix.de>");
670 MODULE_DESCRIPTION("i.MX I2S/ac97 SoC Interface");
671 MODULE_LICENSE("GPL");
672 MODULE_ALIAS("platform:imx-ssi");
673