2 * Copyright 2011 Freescale Semiconductor, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/clk.h>
25 #include <linux/delay.h>
26 #include <linux/time.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/soc.h>
31 #include <sound/saif.h>
33 #include <asm/mach-types.h>
34 #include <mach/hardware.h>
39 static struct mxs_saif
*mxs_saif
[2];
42 * SAIF is a little different with other normal SOC DAIs on clock using.
44 * For MXS, two SAIF modules are instantiated on-chip.
45 * Each SAIF has a set of clock pins and can be operating in master
46 * mode simultaneously if they are connected to different off-chip codecs.
47 * Also, one of the two SAIFs can master or drive the clock pins while the
48 * other SAIF, in slave mode, receives clocking from the master SAIF.
49 * This also means that both SAIFs must operate at the same sample rate.
51 * We abstract this as each saif has a master, the master could be
52 * himself or other saifs. In the generic saif driver, saif does not need
53 * to know the different clkmux. Saif only needs to know who is his master
54 * and operating his master to generate the proper clock rate for him.
55 * The master id is provided in mach-specific layer according to different
59 static int mxs_saif_set_dai_sysclk(struct snd_soc_dai
*cpu_dai
,
60 int clk_id
, unsigned int freq
, int dir
)
62 struct mxs_saif
*saif
= snd_soc_dai_get_drvdata(cpu_dai
);
75 * Since SAIF may work on EXTMASTER mode, IOW, it's working BITCLK&LRCLK
76 * is provided by other SAIF, we provide a interface here to get its master
78 * Note that the master could be himself.
80 static inline struct mxs_saif
*mxs_saif_get_master(struct mxs_saif
* saif
)
82 return mxs_saif
[saif
->master_id
];
86 * Set SAIF clock and MCLK
88 static int mxs_saif_set_clk(struct mxs_saif
*saif
,
94 struct mxs_saif
*master_saif
;
96 dev_dbg(saif
->dev
, "mclk %d rate %d\n", mclk
, rate
);
98 /* Set master saif to generate proper clock */
99 master_saif
= mxs_saif_get_master(saif
);
103 dev_dbg(saif
->dev
, "master saif%d\n", master_saif
->id
);
105 /* Checking if can playback and capture simutaneously */
106 if (master_saif
->ongoing
&& rate
!= master_saif
->cur_rate
) {
108 "can not change clock, master saif%d(rate %d) is ongoing\n",
109 master_saif
->id
, master_saif
->cur_rate
);
113 scr
= __raw_readl(master_saif
->base
+ SAIF_CTRL
);
114 scr
&= ~BM_SAIF_CTRL_BITCLK_MULT_RATE
;
115 scr
&= ~BM_SAIF_CTRL_BITCLK_BASE_RATE
;
120 * The SAIF clock should be either 384*fs or 512*fs.
121 * If MCLK is used, the SAIF clk ratio need to match mclk ratio.
122 * For 32x mclk, set saif clk as 512*fs.
123 * For 48x mclk, set saif clk as 384*fs.
125 * If MCLK is not used, we just set saif clk to 512*fs.
127 if (master_saif
->mclk_in_use
) {
128 if (mclk
% 32 == 0) {
129 scr
&= ~BM_SAIF_CTRL_BITCLK_BASE_RATE
;
130 ret
= clk_set_rate(master_saif
->clk
, 512 * rate
);
131 } else if (mclk
% 48 == 0) {
132 scr
|= BM_SAIF_CTRL_BITCLK_BASE_RATE
;
133 ret
= clk_set_rate(master_saif
->clk
, 384 * rate
);
135 /* SAIF MCLK should be either 32x or 48x */
139 ret
= clk_set_rate(master_saif
->clk
, 512 * rate
);
140 scr
&= ~BM_SAIF_CTRL_BITCLK_BASE_RATE
;
146 master_saif
->cur_rate
= rate
;
148 if (!master_saif
->mclk_in_use
) {
149 __raw_writel(scr
, master_saif
->base
+ SAIF_CTRL
);
154 * Program the over-sample rate for MCLK output
156 * The available MCLK range is 32x, 48x... 512x. The rate
157 * could be from 8kHz to 192kH.
159 switch (mclk
/ rate
) {
161 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(4);
164 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(3);
167 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(2);
170 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(1);
173 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(0);
176 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(3);
179 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(2);
182 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(1);
185 scr
|= BF_SAIF_CTRL_BITCLK_MULT_RATE(0);
191 __raw_writel(scr
, master_saif
->base
+ SAIF_CTRL
);
197 * Put and disable MCLK.
199 int mxs_saif_put_mclk(unsigned int saif_id
)
201 struct mxs_saif
*saif
= mxs_saif
[saif_id
];
207 stat
= __raw_readl(saif
->base
+ SAIF_STAT
);
208 if (stat
& BM_SAIF_STAT_BUSY
) {
209 dev_err(saif
->dev
, "error: busy\n");
213 clk_disable(saif
->clk
);
215 /* disable MCLK output */
216 __raw_writel(BM_SAIF_CTRL_CLKGATE
,
217 saif
->base
+ SAIF_CTRL
+ MXS_SET_ADDR
);
218 __raw_writel(BM_SAIF_CTRL_RUN
,
219 saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
221 saif
->mclk_in_use
= 0;
226 * Get MCLK and set clock rate, then enable it
228 * This interface is used for codecs who are using MCLK provided
231 int mxs_saif_get_mclk(unsigned int saif_id
, unsigned int mclk
,
234 struct mxs_saif
*saif
= mxs_saif
[saif_id
];
237 struct mxs_saif
*master_saif
;
243 __raw_writel(BM_SAIF_CTRL_SFTRST
,
244 saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
246 /* FIXME: need clear clk gate for register r/w */
247 __raw_writel(BM_SAIF_CTRL_CLKGATE
,
248 saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
250 master_saif
= mxs_saif_get_master(saif
);
251 if (saif
!= master_saif
) {
252 dev_err(saif
->dev
, "can not get mclk from a non-master saif\n");
256 stat
= __raw_readl(saif
->base
+ SAIF_STAT
);
257 if (stat
& BM_SAIF_STAT_BUSY
) {
258 dev_err(saif
->dev
, "error: busy\n");
262 saif
->mclk_in_use
= 1;
263 ret
= mxs_saif_set_clk(saif
, mclk
, rate
);
267 ret
= clk_enable(saif
->clk
);
271 /* enable MCLK output */
272 __raw_writel(BM_SAIF_CTRL_RUN
,
273 saif
->base
+ SAIF_CTRL
+ MXS_SET_ADDR
);
279 * SAIF DAI format configuration.
280 * Should only be called when port is inactive.
282 static int mxs_saif_set_dai_fmt(struct snd_soc_dai
*cpu_dai
, unsigned int fmt
)
286 struct mxs_saif
*saif
= snd_soc_dai_get_drvdata(cpu_dai
);
288 stat
= __raw_readl(saif
->base
+ SAIF_STAT
);
289 if (stat
& BM_SAIF_STAT_BUSY
) {
290 dev_err(cpu_dai
->dev
, "error: busy\n");
294 scr0
= __raw_readl(saif
->base
+ SAIF_CTRL
);
295 scr0
= scr0
& ~BM_SAIF_CTRL_BITCLK_EDGE
& ~BM_SAIF_CTRL_LRCLK_POLARITY \
296 & ~BM_SAIF_CTRL_JUSTIFY
& ~BM_SAIF_CTRL_DELAY
;
300 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
301 case SND_SOC_DAIFMT_I2S
:
302 /* data frame low 1clk before data */
303 scr
|= BM_SAIF_CTRL_DELAY
;
304 scr
&= ~BM_SAIF_CTRL_LRCLK_POLARITY
;
306 case SND_SOC_DAIFMT_LEFT_J
:
307 /* data frame high with data */
308 scr
&= ~BM_SAIF_CTRL_DELAY
;
309 scr
&= ~BM_SAIF_CTRL_LRCLK_POLARITY
;
310 scr
&= ~BM_SAIF_CTRL_JUSTIFY
;
316 /* DAI clock inversion */
317 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
318 case SND_SOC_DAIFMT_IB_IF
:
319 scr
|= BM_SAIF_CTRL_BITCLK_EDGE
;
320 scr
|= BM_SAIF_CTRL_LRCLK_POLARITY
;
322 case SND_SOC_DAIFMT_IB_NF
:
323 scr
|= BM_SAIF_CTRL_BITCLK_EDGE
;
324 scr
&= ~BM_SAIF_CTRL_LRCLK_POLARITY
;
326 case SND_SOC_DAIFMT_NB_IF
:
327 scr
&= ~BM_SAIF_CTRL_BITCLK_EDGE
;
328 scr
|= BM_SAIF_CTRL_LRCLK_POLARITY
;
330 case SND_SOC_DAIFMT_NB_NF
:
331 scr
&= ~BM_SAIF_CTRL_BITCLK_EDGE
;
332 scr
&= ~BM_SAIF_CTRL_LRCLK_POLARITY
;
337 * Note: We simply just support master mode since SAIF TX can only
339 * Here the master is relative to codec side.
340 * Saif internally could be slave when working on EXTMASTER mode.
341 * We just hide this to machine driver.
343 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
344 case SND_SOC_DAIFMT_CBS_CFS
:
345 if (saif
->id
== saif
->master_id
)
346 scr
&= ~BM_SAIF_CTRL_SLAVE_MODE
;
348 scr
|= BM_SAIF_CTRL_SLAVE_MODE
;
350 __raw_writel(scr
| scr0
, saif
->base
+ SAIF_CTRL
);
359 static int mxs_saif_startup(struct snd_pcm_substream
*substream
,
360 struct snd_soc_dai
*cpu_dai
)
362 struct mxs_saif
*saif
= snd_soc_dai_get_drvdata(cpu_dai
);
363 snd_soc_dai_set_dma_data(cpu_dai
, substream
, &saif
->dma_param
);
365 /* clear error status to 0 for each re-open */
366 saif
->fifo_underrun
= 0;
367 saif
->fifo_overrun
= 0;
369 /* Clear Reset for normal operations */
370 __raw_writel(BM_SAIF_CTRL_SFTRST
,
371 saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
373 /* clear clock gate */
374 __raw_writel(BM_SAIF_CTRL_CLKGATE
,
375 saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
381 * Should only be called when port is inactive.
382 * although can be called multiple times by upper layers.
384 static int mxs_saif_hw_params(struct snd_pcm_substream
*substream
,
385 struct snd_pcm_hw_params
*params
,
386 struct snd_soc_dai
*cpu_dai
)
388 struct mxs_saif
*saif
= snd_soc_dai_get_drvdata(cpu_dai
);
392 /* mclk should already be set */
393 if (!saif
->mclk
&& saif
->mclk_in_use
) {
394 dev_err(cpu_dai
->dev
, "set mclk first\n");
398 stat
= __raw_readl(saif
->base
+ SAIF_STAT
);
399 if (stat
& BM_SAIF_STAT_BUSY
) {
400 dev_err(cpu_dai
->dev
, "error: busy\n");
405 * Set saif clk based on sample rate.
406 * If mclk is used, we also set mclk, if not, saif->mclk is
407 * default 0, means not used.
409 ret
= mxs_saif_set_clk(saif
, saif
->mclk
, params_rate(params
));
411 dev_err(cpu_dai
->dev
, "unable to get proper clk\n");
415 scr
= __raw_readl(saif
->base
+ SAIF_CTRL
);
417 scr
&= ~BM_SAIF_CTRL_WORD_LENGTH
;
418 scr
&= ~BM_SAIF_CTRL_BITCLK_48XFS_ENABLE
;
419 switch (params_format(params
)) {
420 case SNDRV_PCM_FORMAT_S16_LE
:
421 scr
|= BF_SAIF_CTRL_WORD_LENGTH(0);
423 case SNDRV_PCM_FORMAT_S20_3LE
:
424 scr
|= BF_SAIF_CTRL_WORD_LENGTH(4);
425 scr
|= BM_SAIF_CTRL_BITCLK_48XFS_ENABLE
;
427 case SNDRV_PCM_FORMAT_S24_LE
:
428 scr
|= BF_SAIF_CTRL_WORD_LENGTH(8);
429 scr
|= BM_SAIF_CTRL_BITCLK_48XFS_ENABLE
;
436 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
438 scr
&= ~BM_SAIF_CTRL_READ_MODE
;
441 scr
|= BM_SAIF_CTRL_READ_MODE
;
444 __raw_writel(scr
, saif
->base
+ SAIF_CTRL
);
448 static int mxs_saif_prepare(struct snd_pcm_substream
*substream
,
449 struct snd_soc_dai
*cpu_dai
)
451 struct mxs_saif
*saif
= snd_soc_dai_get_drvdata(cpu_dai
);
453 /* enable FIFO error irqs */
454 __raw_writel(BM_SAIF_CTRL_FIFO_ERROR_IRQ_EN
,
455 saif
->base
+ SAIF_CTRL
+ MXS_SET_ADDR
);
460 static int mxs_saif_trigger(struct snd_pcm_substream
*substream
, int cmd
,
461 struct snd_soc_dai
*cpu_dai
)
463 struct mxs_saif
*saif
= snd_soc_dai_get_drvdata(cpu_dai
);
464 struct mxs_saif
*master_saif
;
467 master_saif
= mxs_saif_get_master(saif
);
472 case SNDRV_PCM_TRIGGER_START
:
473 case SNDRV_PCM_TRIGGER_RESUME
:
474 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
475 dev_dbg(cpu_dai
->dev
, "start\n");
477 clk_enable(master_saif
->clk
);
478 if (!master_saif
->mclk_in_use
)
479 __raw_writel(BM_SAIF_CTRL_RUN
,
480 master_saif
->base
+ SAIF_CTRL
+ MXS_SET_ADDR
);
483 * If the saif's master is not himself, we also need to enable
484 * itself clk for its internal basic logic to work.
486 if (saif
!= master_saif
) {
487 clk_enable(saif
->clk
);
488 __raw_writel(BM_SAIF_CTRL_RUN
,
489 saif
->base
+ SAIF_CTRL
+ MXS_SET_ADDR
);
492 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
494 * write a data to saif data register to trigger
497 __raw_writel(0, saif
->base
+ SAIF_DATA
);
500 * read a data from saif data register to trigger
503 __raw_readl(saif
->base
+ SAIF_DATA
);
506 master_saif
->ongoing
= 1;
508 dev_dbg(saif
->dev
, "CTRL 0x%x STAT 0x%x\n",
509 __raw_readl(saif
->base
+ SAIF_CTRL
),
510 __raw_readl(saif
->base
+ SAIF_STAT
));
512 dev_dbg(master_saif
->dev
, "CTRL 0x%x STAT 0x%x\n",
513 __raw_readl(master_saif
->base
+ SAIF_CTRL
),
514 __raw_readl(master_saif
->base
+ SAIF_STAT
));
516 case SNDRV_PCM_TRIGGER_SUSPEND
:
517 case SNDRV_PCM_TRIGGER_STOP
:
518 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
519 dev_dbg(cpu_dai
->dev
, "stop\n");
521 /* wait a while for the current sample to complete */
522 delay
= USEC_PER_SEC
/ master_saif
->cur_rate
;
524 if (!master_saif
->mclk_in_use
) {
525 __raw_writel(BM_SAIF_CTRL_RUN
,
526 master_saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
529 clk_disable(master_saif
->clk
);
531 if (saif
!= master_saif
) {
532 __raw_writel(BM_SAIF_CTRL_RUN
,
533 saif
->base
+ SAIF_CTRL
+ MXS_CLR_ADDR
);
535 clk_disable(saif
->clk
);
538 master_saif
->ongoing
= 0;
548 #define MXS_SAIF_RATES SNDRV_PCM_RATE_8000_192000
549 #define MXS_SAIF_FORMATS \
550 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
551 SNDRV_PCM_FMTBIT_S24_LE)
553 static struct snd_soc_dai_ops mxs_saif_dai_ops
= {
554 .startup
= mxs_saif_startup
,
555 .trigger
= mxs_saif_trigger
,
556 .prepare
= mxs_saif_prepare
,
557 .hw_params
= mxs_saif_hw_params
,
558 .set_sysclk
= mxs_saif_set_dai_sysclk
,
559 .set_fmt
= mxs_saif_set_dai_fmt
,
562 static int mxs_saif_dai_probe(struct snd_soc_dai
*dai
)
564 struct mxs_saif
*saif
= dev_get_drvdata(dai
->dev
);
566 snd_soc_dai_set_drvdata(dai
, saif
);
571 static struct snd_soc_dai_driver mxs_saif_dai
= {
573 .probe
= mxs_saif_dai_probe
,
577 .rates
= MXS_SAIF_RATES
,
578 .formats
= MXS_SAIF_FORMATS
,
583 .rates
= MXS_SAIF_RATES
,
584 .formats
= MXS_SAIF_FORMATS
,
586 .ops
= &mxs_saif_dai_ops
,
589 static irqreturn_t
mxs_saif_irq(int irq
, void *dev_id
)
591 struct mxs_saif
*saif
= dev_id
;
594 stat
= __raw_readl(saif
->base
+ SAIF_STAT
);
595 if (!(stat
& (BM_SAIF_STAT_FIFO_UNDERFLOW_IRQ
|
596 BM_SAIF_STAT_FIFO_OVERFLOW_IRQ
)))
599 if (stat
& BM_SAIF_STAT_FIFO_UNDERFLOW_IRQ
) {
600 dev_dbg(saif
->dev
, "underrun!!! %d\n", ++saif
->fifo_underrun
);
601 __raw_writel(BM_SAIF_STAT_FIFO_UNDERFLOW_IRQ
,
602 saif
->base
+ SAIF_STAT
+ MXS_CLR_ADDR
);
605 if (stat
& BM_SAIF_STAT_FIFO_OVERFLOW_IRQ
) {
606 dev_dbg(saif
->dev
, "overrun!!! %d\n", ++saif
->fifo_overrun
);
607 __raw_writel(BM_SAIF_STAT_FIFO_OVERFLOW_IRQ
,
608 saif
->base
+ SAIF_STAT
+ MXS_CLR_ADDR
);
611 dev_dbg(saif
->dev
, "SAIF_CTRL %x SAIF_STAT %x\n",
612 __raw_readl(saif
->base
+ SAIF_CTRL
),
613 __raw_readl(saif
->base
+ SAIF_STAT
));
618 static int mxs_saif_probe(struct platform_device
*pdev
)
620 struct resource
*iores
, *dmares
;
621 struct mxs_saif
*saif
;
622 struct mxs_saif_platform_data
*pdata
;
625 if (pdev
->id
>= ARRAY_SIZE(mxs_saif
))
628 pdata
= pdev
->dev
.platform_data
;
629 if (pdata
&& pdata
->init
) {
635 saif
= kzalloc(sizeof(*saif
), GFP_KERNEL
);
639 mxs_saif
[pdev
->id
] = saif
;
642 saif
->master_id
= saif
->id
;
643 if (pdata
&& pdata
->get_master_id
) {
644 saif
->master_id
= pdata
->get_master_id(saif
->id
);
645 if (saif
->master_id
< 0 ||
646 saif
->master_id
>= ARRAY_SIZE(mxs_saif
))
650 saif
->clk
= clk_get(&pdev
->dev
, NULL
);
651 if (IS_ERR(saif
->clk
)) {
652 ret
= PTR_ERR(saif
->clk
);
653 dev_err(&pdev
->dev
, "Cannot get the clock: %d\n",
658 iores
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
661 dev_err(&pdev
->dev
, "failed to get io resource: %d\n",
663 goto failed_get_resource
;
666 if (!request_mem_region(iores
->start
, resource_size(iores
),
668 dev_err(&pdev
->dev
, "request_mem_region failed\n");
670 goto failed_get_resource
;
673 saif
->base
= ioremap(iores
->start
, resource_size(iores
));
675 dev_err(&pdev
->dev
, "ioremap failed\n");
680 dmares
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
683 dev_err(&pdev
->dev
, "failed to get dma resource: %d\n",
687 saif
->dma_param
.chan_num
= dmares
->start
;
689 saif
->irq
= platform_get_irq(pdev
, 0);
692 dev_err(&pdev
->dev
, "failed to get irq resource: %d\n",
694 goto failed_get_irq1
;
697 saif
->dev
= &pdev
->dev
;
698 ret
= request_irq(saif
->irq
, mxs_saif_irq
, 0, "mxs-saif", saif
);
700 dev_err(&pdev
->dev
, "failed to request irq\n");
701 goto failed_get_irq1
;
704 saif
->dma_param
.chan_irq
= platform_get_irq(pdev
, 1);
705 if (saif
->dma_param
.chan_irq
< 0) {
706 ret
= saif
->dma_param
.chan_irq
;
707 dev_err(&pdev
->dev
, "failed to get dma irq resource: %d\n",
709 goto failed_get_irq2
;
712 platform_set_drvdata(pdev
, saif
);
714 ret
= snd_soc_register_dai(&pdev
->dev
, &mxs_saif_dai
);
716 dev_err(&pdev
->dev
, "register DAI failed\n");
717 goto failed_register
;
720 saif
->soc_platform_pdev
= platform_device_alloc(
721 "mxs-pcm-audio", pdev
->id
);
722 if (!saif
->soc_platform_pdev
) {
724 goto failed_pdev_alloc
;
727 platform_set_drvdata(saif
->soc_platform_pdev
, saif
);
728 ret
= platform_device_add(saif
->soc_platform_pdev
);
730 dev_err(&pdev
->dev
, "failed to add soc platform device\n");
731 goto failed_pdev_add
;
737 platform_device_put(saif
->soc_platform_pdev
);
739 snd_soc_unregister_dai(&pdev
->dev
);
742 free_irq(saif
->irq
, saif
);
746 release_mem_region(iores
->start
, resource_size(iores
));
755 static int __devexit
mxs_saif_remove(struct platform_device
*pdev
)
757 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
758 struct mxs_saif
*saif
= platform_get_drvdata(pdev
);
760 platform_device_unregister(saif
->soc_platform_pdev
);
762 snd_soc_unregister_dai(&pdev
->dev
);
765 release_mem_region(res
->start
, resource_size(res
));
766 free_irq(saif
->irq
, saif
);
774 static struct platform_driver mxs_saif_driver
= {
775 .probe
= mxs_saif_probe
,
776 .remove
= __devexit_p(mxs_saif_remove
),
780 .owner
= THIS_MODULE
,
784 static int __init
mxs_saif_init(void)
786 return platform_driver_register(&mxs_saif_driver
);
789 static void __exit
mxs_saif_exit(void)
791 platform_driver_unregister(&mxs_saif_driver
);
794 module_init(mxs_saif_init
);
795 module_exit(mxs_saif_exit
);
796 MODULE_AUTHOR("Freescale Semiconductor, Inc.");
797 MODULE_DESCRIPTION("MXS ASoC SAIF driver");
798 MODULE_LICENSE("GPL");