blob: 0dc3852c46219f1aca029a08b7a46681d0b0a389 [file] [log] [blame]
Ryan Mallondb5bf412010-06-04 17:11:24 +12001/*
2 * linux/sound/soc/ep93xx-i2s.c
3 * EP93xx I2S driver
4 *
Ryan Mallon1c5454e2011-06-15 14:45:36 +10005 * Copyright (C) 2010 Ryan Mallon
Ryan Mallondb5bf412010-06-04 17:11:24 +12006 *
7 * Based on the original driver by:
8 * Copyright (C) 2007 Chase Douglas <chasedouglas@gmail>
9 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 */
16
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/slab.h>
20#include <linux/clk.h>
21#include <linux/io.h>
22
23#include <sound/core.h>
Stephen Warrena8983d42013-12-10 12:34:46 -070024#include <sound/dmaengine_pcm.h>
Ryan Mallondb5bf412010-06-04 17:11:24 +120025#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27#include <sound/initval.h>
28#include <sound/soc.h>
29
30#include <mach/hardware.h>
31#include <mach/ep93xx-regs.h>
Arnd Bergmanna3b29242012-08-24 15:12:11 +020032#include <linux/platform_data/dma-ep93xx.h>
Ryan Mallondb5bf412010-06-04 17:11:24 +120033
Stephen Warren6f2032a2013-12-10 12:34:45 -070034#include "ep93xx-pcm.h"
35
Ryan Mallondb5bf412010-06-04 17:11:24 +120036#define EP93XX_I2S_TXCLKCFG 0x00
37#define EP93XX_I2S_RXCLKCFG 0x04
38#define EP93XX_I2S_GLCTRL 0x0C
39
40#define EP93XX_I2S_TXLINCTRLDATA 0x28
41#define EP93XX_I2S_TXCTRL 0x2C
42#define EP93XX_I2S_TXWRDLEN 0x30
43#define EP93XX_I2S_TX0EN 0x34
44
45#define EP93XX_I2S_RXLINCTRLDATA 0x58
46#define EP93XX_I2S_RXCTRL 0x5C
47#define EP93XX_I2S_RXWRDLEN 0x60
48#define EP93XX_I2S_RX0EN 0x64
49
50#define EP93XX_I2S_WRDLEN_16 (0 << 0)
51#define EP93XX_I2S_WRDLEN_24 (1 << 0)
52#define EP93XX_I2S_WRDLEN_32 (2 << 0)
53
Alexander Sverdlina879f6c2018-04-28 22:51:39 +020054#define EP93XX_I2S_RXLINCTRLDATA_R_JUST BIT(1) /* Right justify */
55
56#define EP93XX_I2S_TXLINCTRLDATA_R_JUST BIT(2) /* Right justify */
Ryan Mallondb5bf412010-06-04 17:11:24 +120057
58#define EP93XX_I2S_CLKCFG_LRS (1 << 0) /* lrclk polarity */
59#define EP93XX_I2S_CLKCFG_CKP (1 << 1) /* Bit clock polarity */
60#define EP93XX_I2S_CLKCFG_REL (1 << 2) /* First bit transition */
61#define EP93XX_I2S_CLKCFG_MASTER (1 << 3) /* Master mode */
62#define EP93XX_I2S_CLKCFG_NBCG (1 << 4) /* Not bit clock gating */
63
64struct ep93xx_i2s_info {
65 struct clk *mclk;
66 struct clk *sclk;
67 struct clk *lrclk;
Ryan Mallondb5bf412010-06-04 17:11:24 +120068 void __iomem *regs;
Stephen Warrena8983d42013-12-10 12:34:46 -070069 struct snd_dmaengine_dai_dma_data dma_params_rx;
70 struct snd_dmaengine_dai_dma_data dma_params_tx;
Ryan Mallondb5bf412010-06-04 17:11:24 +120071};
72
Lars-Peter Clausenbe87f752013-05-14 22:19:47 +020073static struct ep93xx_dma_data ep93xx_i2s_dma_data[] = {
Ryan Mallondb5bf412010-06-04 17:11:24 +120074 [SNDRV_PCM_STREAM_PLAYBACK] = {
75 .name = "i2s-pcm-out",
Lars-Peter Clausene6451c32013-04-03 11:00:00 +020076 .port = EP93XX_DMA_I2S1,
Lars-Peter Clausen453807f2013-03-22 14:12:10 +010077 .direction = DMA_MEM_TO_DEV,
Ryan Mallondb5bf412010-06-04 17:11:24 +120078 },
79 [SNDRV_PCM_STREAM_CAPTURE] = {
80 .name = "i2s-pcm-in",
Lars-Peter Clausene6451c32013-04-03 11:00:00 +020081 .port = EP93XX_DMA_I2S1,
Lars-Peter Clausen453807f2013-03-22 14:12:10 +010082 .direction = DMA_DEV_TO_MEM,
Ryan Mallondb5bf412010-06-04 17:11:24 +120083 },
84};
85
86static inline void ep93xx_i2s_write_reg(struct ep93xx_i2s_info *info,
87 unsigned reg, unsigned val)
88{
89 __raw_writel(val, info->regs + reg);
90}
91
92static inline unsigned ep93xx_i2s_read_reg(struct ep93xx_i2s_info *info,
93 unsigned reg)
94{
95 return __raw_readl(info->regs + reg);
96}
97
98static void ep93xx_i2s_enable(struct ep93xx_i2s_info *info, int stream)
99{
100 unsigned base_reg;
101 int i;
102
103 if ((ep93xx_i2s_read_reg(info, EP93XX_I2S_TX0EN) & 0x1) == 0 &&
104 (ep93xx_i2s_read_reg(info, EP93XX_I2S_RX0EN) & 0x1) == 0) {
105 /* Enable clocks */
106 clk_enable(info->mclk);
107 clk_enable(info->sclk);
108 clk_enable(info->lrclk);
109
110 /* Enable i2s */
111 ep93xx_i2s_write_reg(info, EP93XX_I2S_GLCTRL, 1);
112 }
113
114 /* Enable fifos */
115 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
116 base_reg = EP93XX_I2S_TX0EN;
117 else
118 base_reg = EP93XX_I2S_RX0EN;
119 for (i = 0; i < 3; i++)
120 ep93xx_i2s_write_reg(info, base_reg + (i * 4), 1);
121}
122
123static void ep93xx_i2s_disable(struct ep93xx_i2s_info *info, int stream)
124{
125 unsigned base_reg;
126 int i;
127
128 /* Disable fifos */
129 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
130 base_reg = EP93XX_I2S_TX0EN;
131 else
132 base_reg = EP93XX_I2S_RX0EN;
133 for (i = 0; i < 3; i++)
134 ep93xx_i2s_write_reg(info, base_reg + (i * 4), 0);
135
136 if ((ep93xx_i2s_read_reg(info, EP93XX_I2S_TX0EN) & 0x1) == 0 &&
137 (ep93xx_i2s_read_reg(info, EP93XX_I2S_RX0EN) & 0x1) == 0) {
138 /* Disable i2s */
139 ep93xx_i2s_write_reg(info, EP93XX_I2S_GLCTRL, 0);
140
141 /* Disable clocks */
142 clk_disable(info->lrclk);
143 clk_disable(info->sclk);
144 clk_disable(info->mclk);
145 }
146}
147
Lars-Peter Clausen785d81e2013-04-20 19:29:04 +0200148static int ep93xx_i2s_dai_probe(struct snd_soc_dai *dai)
Ryan Mallondb5bf412010-06-04 17:11:24 +1200149{
Stephen Warrena8983d42013-12-10 12:34:46 -0700150 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(dai);
151
152 info->dma_params_tx.filter_data =
153 &ep93xx_i2s_dma_data[SNDRV_PCM_STREAM_PLAYBACK];
154 info->dma_params_rx.filter_data =
155 &ep93xx_i2s_dma_data[SNDRV_PCM_STREAM_CAPTURE];
156
157 dai->playback_dma_data = &info->dma_params_tx;
158 dai->capture_dma_data = &info->dma_params_rx;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200159
Ryan Mallondb5bf412010-06-04 17:11:24 +1200160 return 0;
161}
162
163static void ep93xx_i2s_shutdown(struct snd_pcm_substream *substream,
164 struct snd_soc_dai *dai)
165{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000166 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(dai);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200167
168 ep93xx_i2s_disable(info, substream->stream);
169}
170
171static int ep93xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
172 unsigned int fmt)
173{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000174 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(cpu_dai);
Alexander Sverdlina879f6c2018-04-28 22:51:39 +0200175 unsigned int clk_cfg;
176 unsigned int txlin_ctrl = 0;
177 unsigned int rxlin_ctrl = 0;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200178
179 clk_cfg = ep93xx_i2s_read_reg(info, EP93XX_I2S_RXCLKCFG);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200180
181 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
182 case SND_SOC_DAIFMT_I2S:
183 clk_cfg |= EP93XX_I2S_CLKCFG_REL;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200184 break;
185
186 case SND_SOC_DAIFMT_LEFT_J:
187 clk_cfg &= ~EP93XX_I2S_CLKCFG_REL;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200188 break;
189
190 case SND_SOC_DAIFMT_RIGHT_J:
191 clk_cfg &= ~EP93XX_I2S_CLKCFG_REL;
Alexander Sverdlina879f6c2018-04-28 22:51:39 +0200192 rxlin_ctrl |= EP93XX_I2S_RXLINCTRLDATA_R_JUST;
193 txlin_ctrl |= EP93XX_I2S_TXLINCTRLDATA_R_JUST;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200194 break;
195
196 default:
197 return -EINVAL;
198 }
199
200 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
201 case SND_SOC_DAIFMT_CBS_CFS:
202 /* CPU is master */
203 clk_cfg |= EP93XX_I2S_CLKCFG_MASTER;
204 break;
205
206 case SND_SOC_DAIFMT_CBM_CFM:
207 /* Codec is master */
208 clk_cfg &= ~EP93XX_I2S_CLKCFG_MASTER;
209 break;
210
211 default:
212 return -EINVAL;
213 }
214
215 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
216 case SND_SOC_DAIFMT_NB_NF:
217 /* Negative bit clock, lrclk low on left word */
Alexander Sverdlind6aa7322018-04-28 22:51:38 +0200218 clk_cfg &= ~(EP93XX_I2S_CLKCFG_CKP | EP93XX_I2S_CLKCFG_LRS);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200219 break;
220
221 case SND_SOC_DAIFMT_NB_IF:
222 /* Negative bit clock, lrclk low on right word */
223 clk_cfg &= ~EP93XX_I2S_CLKCFG_CKP;
Alexander Sverdlind6aa7322018-04-28 22:51:38 +0200224 clk_cfg |= EP93XX_I2S_CLKCFG_LRS;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200225 break;
226
227 case SND_SOC_DAIFMT_IB_NF:
228 /* Positive bit clock, lrclk low on left word */
229 clk_cfg |= EP93XX_I2S_CLKCFG_CKP;
Alexander Sverdlind6aa7322018-04-28 22:51:38 +0200230 clk_cfg &= ~EP93XX_I2S_CLKCFG_LRS;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200231 break;
232
233 case SND_SOC_DAIFMT_IB_IF:
234 /* Positive bit clock, lrclk low on right word */
Alexander Sverdlind6aa7322018-04-28 22:51:38 +0200235 clk_cfg |= EP93XX_I2S_CLKCFG_CKP | EP93XX_I2S_CLKCFG_LRS;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200236 break;
237 }
238
239 /* Write new register values */
240 ep93xx_i2s_write_reg(info, EP93XX_I2S_RXCLKCFG, clk_cfg);
241 ep93xx_i2s_write_reg(info, EP93XX_I2S_TXCLKCFG, clk_cfg);
Alexander Sverdlina879f6c2018-04-28 22:51:39 +0200242 ep93xx_i2s_write_reg(info, EP93XX_I2S_RXLINCTRLDATA, rxlin_ctrl);
243 ep93xx_i2s_write_reg(info, EP93XX_I2S_TXLINCTRLDATA, txlin_ctrl);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200244 return 0;
245}
246
247static int ep93xx_i2s_hw_params(struct snd_pcm_substream *substream,
248 struct snd_pcm_hw_params *params,
249 struct snd_soc_dai *dai)
250{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000251 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(dai);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200252 unsigned word_len, div, sdiv, lrdiv;
Alexander Sverdlin5cbf7e42011-03-07 20:30:36 +0300253 int err;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200254
255 switch (params_format(params)) {
256 case SNDRV_PCM_FORMAT_S16_LE:
257 word_len = EP93XX_I2S_WRDLEN_16;
258 break;
259
260 case SNDRV_PCM_FORMAT_S24_LE:
261 word_len = EP93XX_I2S_WRDLEN_24;
262 break;
263
264 case SNDRV_PCM_FORMAT_S32_LE:
265 word_len = EP93XX_I2S_WRDLEN_32;
266 break;
267
268 default:
269 return -EINVAL;
270 }
271
272 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
273 ep93xx_i2s_write_reg(info, EP93XX_I2S_TXWRDLEN, word_len);
274 else
275 ep93xx_i2s_write_reg(info, EP93XX_I2S_RXWRDLEN, word_len);
276
277 /*
Alexander Sverdlin7322ce22011-01-16 15:48:05 +0300278 * EP93xx I2S module can be setup so SCLK / LRCLK value can be
279 * 32, 64, 128. MCLK / SCLK value can be 2 and 4.
280 * We set LRCLK equal to `rate' and minimum SCLK / LRCLK
281 * value is 64, because our sample size is 32 bit * 2 channels.
282 * I2S standard permits us to transmit more bits than
283 * the codec uses.
Ryan Mallondb5bf412010-06-04 17:11:24 +1200284 */
Alexander Sverdlin7322ce22011-01-16 15:48:05 +0300285 div = clk_get_rate(info->mclk) / params_rate(params);
Alexander Sverdlin5cbf7e42011-03-07 20:30:36 +0300286 sdiv = 4;
287 if (div > (256 + 512) / 2) {
288 lrdiv = 128;
289 } else {
290 lrdiv = 64;
291 if (div < (128 + 256) / 2)
292 sdiv = 2;
293 }
Ryan Mallondb5bf412010-06-04 17:11:24 +1200294
295 err = clk_set_rate(info->sclk, clk_get_rate(info->mclk) / sdiv);
296 if (err)
297 return err;
298
299 err = clk_set_rate(info->lrclk, clk_get_rate(info->sclk) / lrdiv);
300 if (err)
301 return err;
302
303 ep93xx_i2s_enable(info, substream->stream);
304 return 0;
305}
306
307static int ep93xx_i2s_set_sysclk(struct snd_soc_dai *cpu_dai, int clk_id,
308 unsigned int freq, int dir)
309{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000310 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(cpu_dai);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200311
312 if (dir == SND_SOC_CLOCK_IN || clk_id != 0)
313 return -EINVAL;
314
315 return clk_set_rate(info->mclk, freq);
316}
317
318#ifdef CONFIG_PM
319static int ep93xx_i2s_suspend(struct snd_soc_dai *dai)
320{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000321 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(dai);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200322
323 if (!dai->active)
Alexander Sverdlinf9c54042011-03-07 20:29:58 +0300324 return 0;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200325
326 ep93xx_i2s_disable(info, SNDRV_PCM_STREAM_PLAYBACK);
327 ep93xx_i2s_disable(info, SNDRV_PCM_STREAM_CAPTURE);
Alexander Sverdlinf9c54042011-03-07 20:29:58 +0300328
329 return 0;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200330}
331
332static int ep93xx_i2s_resume(struct snd_soc_dai *dai)
333{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000334 struct ep93xx_i2s_info *info = snd_soc_dai_get_drvdata(dai);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200335
336 if (!dai->active)
Alexander Sverdlinf9c54042011-03-07 20:29:58 +0300337 return 0;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200338
339 ep93xx_i2s_enable(info, SNDRV_PCM_STREAM_PLAYBACK);
340 ep93xx_i2s_enable(info, SNDRV_PCM_STREAM_CAPTURE);
Alexander Sverdlinf9c54042011-03-07 20:29:58 +0300341
342 return 0;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200343}
344#else
345#define ep93xx_i2s_suspend NULL
346#define ep93xx_i2s_resume NULL
347#endif
348
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100349static const struct snd_soc_dai_ops ep93xx_i2s_dai_ops = {
Ryan Mallondb5bf412010-06-04 17:11:24 +1200350 .shutdown = ep93xx_i2s_shutdown,
351 .hw_params = ep93xx_i2s_hw_params,
352 .set_sysclk = ep93xx_i2s_set_sysclk,
353 .set_fmt = ep93xx_i2s_set_dai_fmt,
354};
355
Alexander Sverdlin7322ce22011-01-16 15:48:05 +0300356#define EP93XX_I2S_FORMATS (SNDRV_PCM_FMTBIT_S32_LE)
Ryan Mallondb5bf412010-06-04 17:11:24 +1200357
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000358static struct snd_soc_dai_driver ep93xx_i2s_dai = {
Ryan Mallondb5bf412010-06-04 17:11:24 +1200359 .symmetric_rates= 1,
Lars-Peter Clausen785d81e2013-04-20 19:29:04 +0200360 .probe = ep93xx_i2s_dai_probe,
Ryan Mallondb5bf412010-06-04 17:11:24 +1200361 .suspend = ep93xx_i2s_suspend,
362 .resume = ep93xx_i2s_resume,
363 .playback = {
364 .channels_min = 2,
365 .channels_max = 2,
Alexander Sverdlin4cfeb692011-03-07 20:30:12 +0300366 .rates = SNDRV_PCM_RATE_8000_192000,
Ryan Mallondb5bf412010-06-04 17:11:24 +1200367 .formats = EP93XX_I2S_FORMATS,
368 },
369 .capture = {
370 .channels_min = 2,
371 .channels_max = 2,
Alexander Sverdlin4cfeb692011-03-07 20:30:12 +0300372 .rates = SNDRV_PCM_RATE_8000_192000,
Ryan Mallondb5bf412010-06-04 17:11:24 +1200373 .formats = EP93XX_I2S_FORMATS,
374 },
375 .ops = &ep93xx_i2s_dai_ops,
376};
Ryan Mallondb5bf412010-06-04 17:11:24 +1200377
Kuninori Morimotoec050852013-03-21 03:30:43 -0700378static const struct snd_soc_component_driver ep93xx_i2s_component = {
379 .name = "ep93xx-i2s",
380};
381
Ryan Mallondb5bf412010-06-04 17:11:24 +1200382static int ep93xx_i2s_probe(struct platform_device *pdev)
383{
384 struct ep93xx_i2s_info *info;
385 struct resource *res;
386 int err;
387
H Hartley Sweeten01651ba2012-03-26 16:00:17 -0700388 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
389 if (!info)
390 return -ENOMEM;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200391
392 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingb25b5aa2013-01-21 11:09:26 +0100393 info->regs = devm_ioremap_resource(&pdev->dev, res);
394 if (IS_ERR(info->regs))
395 return PTR_ERR(info->regs);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200396
397 info->mclk = clk_get(&pdev->dev, "mclk");
398 if (IS_ERR(info->mclk)) {
399 err = PTR_ERR(info->mclk);
H Hartley Sweeten01651ba2012-03-26 16:00:17 -0700400 goto fail;
Ryan Mallondb5bf412010-06-04 17:11:24 +1200401 }
402
403 info->sclk = clk_get(&pdev->dev, "sclk");
404 if (IS_ERR(info->sclk)) {
405 err = PTR_ERR(info->sclk);
406 goto fail_put_mclk;
407 }
408
409 info->lrclk = clk_get(&pdev->dev, "lrclk");
410 if (IS_ERR(info->lrclk)) {
411 err = PTR_ERR(info->lrclk);
412 goto fail_put_sclk;
413 }
414
H Hartley Sweeten01651ba2012-03-26 16:00:17 -0700415 dev_set_drvdata(&pdev->dev, info);
H Hartley Sweeten01651ba2012-03-26 16:00:17 -0700416
Kuninori Morimotoec050852013-03-21 03:30:43 -0700417 err = snd_soc_register_component(&pdev->dev, &ep93xx_i2s_component,
418 &ep93xx_i2s_dai, 1);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200419 if (err)
420 goto fail_put_lrclk;
421
Stephen Warren6f2032a2013-12-10 12:34:45 -0700422 err = devm_ep93xx_pcm_platform_register(&pdev->dev);
423 if (err)
424 goto fail_unregister;
425
Ryan Mallondb5bf412010-06-04 17:11:24 +1200426 return 0;
427
Stephen Warren6f2032a2013-12-10 12:34:45 -0700428fail_unregister:
429 snd_soc_unregister_component(&pdev->dev);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200430fail_put_lrclk:
431 clk_put(info->lrclk);
432fail_put_sclk:
433 clk_put(info->sclk);
434fail_put_mclk:
435 clk_put(info->mclk);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200436fail:
437 return err;
438}
439
Bill Pemberton145e2872012-12-07 09:26:23 -0500440static int ep93xx_i2s_remove(struct platform_device *pdev)
Ryan Mallondb5bf412010-06-04 17:11:24 +1200441{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000442 struct ep93xx_i2s_info *info = dev_get_drvdata(&pdev->dev);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200443
Kuninori Morimotoec050852013-03-21 03:30:43 -0700444 snd_soc_unregister_component(&pdev->dev);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200445 clk_put(info->lrclk);
446 clk_put(info->sclk);
447 clk_put(info->mclk);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200448 return 0;
449}
450
451static struct platform_driver ep93xx_i2s_driver = {
452 .probe = ep93xx_i2s_probe,
Bill Pemberton145e2872012-12-07 09:26:23 -0500453 .remove = ep93xx_i2s_remove,
Ryan Mallondb5bf412010-06-04 17:11:24 +1200454 .driver = {
455 .name = "ep93xx-i2s",
Ryan Mallondb5bf412010-06-04 17:11:24 +1200456 },
457};
458
Axel Linee18f632011-11-24 12:07:55 +0800459module_platform_driver(ep93xx_i2s_driver);
Ryan Mallondb5bf412010-06-04 17:11:24 +1200460
461MODULE_ALIAS("platform:ep93xx-i2s");
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000462MODULE_AUTHOR("Ryan Mallon");
Ryan Mallondb5bf412010-06-04 17:11:24 +1200463MODULE_DESCRIPTION("EP93XX I2S driver");
464MODULE_LICENSE("GPL");