blob: 807040bb39215a714626da890339966791c7ab38 [file] [log] [blame]
Vladimir Barinov310355c2008-02-18 11:40:22 +01001/*
2 * ALSA SoC I2S (McBSP) Audio Layer for TI DAVINCI processor
3 *
Vladimir Barinovd6b52032008-09-29 23:14:11 +04004 * Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
Vladimir Barinov310355c2008-02-18 11:40:22 +01005 * Copyright: (C) 2007 MontaVista Software, Inc., <source@mvista.com>
6 *
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +02007 * DT support (c) 2016 Petr Kulhavy, Barix AG <petr@barix.com>
8 * based on davinci-mcasp.c DT support
9 *
Vladimir Barinov310355c2008-02-18 11:40:22 +010010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +020013 *
14 * TODO:
15 * on DA850 implement HW FIFOs instead of DMA into DXR and DRR registers
Vladimir Barinov310355c2008-02-18 11:40:22 +010016 */
17
18#include <linux/init.h>
19#include <linux/module.h>
20#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Vladimir Barinov310355c2008-02-18 11:40:22 +010022#include <linux/delay.h>
23#include <linux/io.h>
24#include <linux/clk.h>
Hebbar, Gururaja896f66b2012-08-27 18:56:41 +053025#include <linux/platform_data/davinci_asp.h>
Vladimir Barinov310355c2008-02-18 11:40:22 +010026
27#include <sound/core.h>
28#include <sound/pcm.h>
29#include <sound/pcm_params.h>
30#include <sound/initval.h>
31#include <sound/soc.h>
Peter Ujfalusi257ade72015-03-03 16:45:18 +020032#include <sound/dmaengine_pcm.h>
Vladimir Barinov310355c2008-02-18 11:40:22 +010033
Peter Ujfalusi257ade72015-03-03 16:45:18 +020034#include "edma-pcm.h"
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +020035#include "davinci-i2s.h"
Vladimir Barinov310355c2008-02-18 11:40:22 +010036
Kuninori Morimotoa49cb312018-01-29 02:46:04 +000037#define DRV_NAME "davinci-i2s"
David Brownella62114c2009-05-14 12:47:42 -070038
39/*
40 * NOTE: terminology here is confusing.
41 *
42 * - This driver supports the "Audio Serial Port" (ASP),
43 * found on dm6446, dm355, and other DaVinci chips.
44 *
45 * - But it labels it a "Multi-channel Buffered Serial Port"
46 * (McBSP) as on older chips like the dm642 ... which was
47 * backward-compatible, possibly explaining that confusion.
48 *
49 * - OMAP chips have a controller called McBSP, which is
50 * incompatible with the DaVinci flavor of McBSP.
51 *
52 * - Newer DaVinci chips have a controller called McASP,
53 * incompatible with ASP and with either McBSP.
54 *
55 * In short: this uses ASP to implement I2S, not McBSP.
56 * And it won't be the only DaVinci implemention of I2S.
57 */
Vladimir Barinov310355c2008-02-18 11:40:22 +010058#define DAVINCI_MCBSP_DRR_REG 0x00
59#define DAVINCI_MCBSP_DXR_REG 0x04
60#define DAVINCI_MCBSP_SPCR_REG 0x08
61#define DAVINCI_MCBSP_RCR_REG 0x0c
62#define DAVINCI_MCBSP_XCR_REG 0x10
63#define DAVINCI_MCBSP_SRGR_REG 0x14
64#define DAVINCI_MCBSP_PCR_REG 0x24
65
66#define DAVINCI_MCBSP_SPCR_RRST (1 << 0)
67#define DAVINCI_MCBSP_SPCR_RINTM(v) ((v) << 4)
68#define DAVINCI_MCBSP_SPCR_XRST (1 << 16)
69#define DAVINCI_MCBSP_SPCR_XINTM(v) ((v) << 20)
70#define DAVINCI_MCBSP_SPCR_GRST (1 << 22)
71#define DAVINCI_MCBSP_SPCR_FRST (1 << 23)
72#define DAVINCI_MCBSP_SPCR_FREE (1 << 25)
73
74#define DAVINCI_MCBSP_RCR_RWDLEN1(v) ((v) << 5)
75#define DAVINCI_MCBSP_RCR_RFRLEN1(v) ((v) << 8)
76#define DAVINCI_MCBSP_RCR_RDATDLY(v) ((v) << 16)
Troy Kiskyf5cfa952009-07-04 19:29:57 -070077#define DAVINCI_MCBSP_RCR_RFIG (1 << 18)
Vladimir Barinov310355c2008-02-18 11:40:22 +010078#define DAVINCI_MCBSP_RCR_RWDLEN2(v) ((v) << 21)
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +020079#define DAVINCI_MCBSP_RCR_RFRLEN2(v) ((v) << 24)
80#define DAVINCI_MCBSP_RCR_RPHASE BIT(31)
Vladimir Barinov310355c2008-02-18 11:40:22 +010081
82#define DAVINCI_MCBSP_XCR_XWDLEN1(v) ((v) << 5)
83#define DAVINCI_MCBSP_XCR_XFRLEN1(v) ((v) << 8)
84#define DAVINCI_MCBSP_XCR_XDATDLY(v) ((v) << 16)
85#define DAVINCI_MCBSP_XCR_XFIG (1 << 18)
86#define DAVINCI_MCBSP_XCR_XWDLEN2(v) ((v) << 21)
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +020087#define DAVINCI_MCBSP_XCR_XFRLEN2(v) ((v) << 24)
88#define DAVINCI_MCBSP_XCR_XPHASE BIT(31)
Vladimir Barinov310355c2008-02-18 11:40:22 +010089
90#define DAVINCI_MCBSP_SRGR_FWID(v) ((v) << 8)
91#define DAVINCI_MCBSP_SRGR_FPER(v) ((v) << 16)
92#define DAVINCI_MCBSP_SRGR_FSGM (1 << 28)
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +020093#define DAVINCI_MCBSP_SRGR_CLKSM BIT(29)
Vladimir Barinov310355c2008-02-18 11:40:22 +010094
95#define DAVINCI_MCBSP_PCR_CLKRP (1 << 0)
96#define DAVINCI_MCBSP_PCR_CLKXP (1 << 1)
97#define DAVINCI_MCBSP_PCR_FSRP (1 << 2)
98#define DAVINCI_MCBSP_PCR_FSXP (1 << 3)
Hugo Villeneuveb402dff2008-11-08 13:26:09 -050099#define DAVINCI_MCBSP_PCR_SCLKME (1 << 7)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100100#define DAVINCI_MCBSP_PCR_CLKRM (1 << 8)
101#define DAVINCI_MCBSP_PCR_CLKXM (1 << 9)
102#define DAVINCI_MCBSP_PCR_FSRM (1 << 10)
103#define DAVINCI_MCBSP_PCR_FSXM (1 << 11)
104
Vladimir Barinov310355c2008-02-18 11:40:22 +0100105enum {
106 DAVINCI_MCBSP_WORD_8 = 0,
107 DAVINCI_MCBSP_WORD_12,
108 DAVINCI_MCBSP_WORD_16,
109 DAVINCI_MCBSP_WORD_20,
110 DAVINCI_MCBSP_WORD_24,
111 DAVINCI_MCBSP_WORD_32,
112};
113
Troy Kisky0d6c9772009-11-18 17:49:51 -0700114static const unsigned char data_type[SNDRV_PCM_FORMAT_S32_LE + 1] = {
115 [SNDRV_PCM_FORMAT_S8] = 1,
116 [SNDRV_PCM_FORMAT_S16_LE] = 2,
117 [SNDRV_PCM_FORMAT_S32_LE] = 4,
118};
119
120static const unsigned char asp_word_length[SNDRV_PCM_FORMAT_S32_LE + 1] = {
121 [SNDRV_PCM_FORMAT_S8] = DAVINCI_MCBSP_WORD_8,
122 [SNDRV_PCM_FORMAT_S16_LE] = DAVINCI_MCBSP_WORD_16,
123 [SNDRV_PCM_FORMAT_S32_LE] = DAVINCI_MCBSP_WORD_32,
124};
125
126static const unsigned char double_fmt[SNDRV_PCM_FORMAT_S32_LE + 1] = {
127 [SNDRV_PCM_FORMAT_S8] = SNDRV_PCM_FORMAT_S16_LE,
128 [SNDRV_PCM_FORMAT_S16_LE] = SNDRV_PCM_FORMAT_S32_LE,
129};
130
Vladimir Barinov310355c2008-02-18 11:40:22 +0100131struct davinci_mcbsp_dev {
Raffaele Recalcatiec637552010-07-06 10:39:03 +0200132 struct device *dev;
Peter Ujfalusi257ade72015-03-03 16:45:18 +0200133 struct snd_dmaengine_dai_dma_data dma_data[2];
134 int dma_request[2];
Vladimir Barinov310355c2008-02-18 11:40:22 +0100135 void __iomem *base;
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700136#define MOD_DSP_A 0
137#define MOD_DSP_B 1
138 int mode;
Troy Kiskyc392bec2009-07-04 19:29:52 -0700139 u32 pcr;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100140 struct clk *clk;
Troy Kisky0d6c9772009-11-18 17:49:51 -0700141 /*
142 * Combining both channels into 1 element will at least double the
143 * amount of time between servicing the dma channel, increase
144 * effiency, and reduce the chance of overrun/underrun. But,
145 * it will result in the left & right channels being swapped.
146 *
147 * If relabeling the left and right channels is not possible,
148 * you may want to let the codec know to swap them back.
149 *
150 * It may allow x10 the amount of time to service dma requests,
151 * if the codec is master and is using an unnecessarily fast bit clock
152 * (ie. tlvaic23b), independent of the sample rate. So, having an
153 * entire frame at once means it can be serviced at the sample rate
154 * instead of the bit clock rate.
155 *
156 * In the now unlikely case that an underrun still
157 * occurs, both the left and right samples will be repeated
158 * so that no pops are heard, and the left and right channels
159 * won't end up being swapped because of the underrun.
160 */
161 unsigned enable_channel_combine:1;
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200162
163 unsigned int fmt;
164 int clk_div;
Raffaele Recalcatiec637552010-07-06 10:39:03 +0200165 int clk_input_pin;
Raffaele Recalcatid9823ed92010-07-06 10:39:04 +0200166 bool i2s_accurate_sck;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100167};
168
169static inline void davinci_mcbsp_write_reg(struct davinci_mcbsp_dev *dev,
170 int reg, u32 val)
171{
172 __raw_writel(val, dev->base + reg);
173}
174
175static inline u32 davinci_mcbsp_read_reg(struct davinci_mcbsp_dev *dev, int reg)
176{
177 return __raw_readl(dev->base + reg);
178}
179
Troy Kiskyc392bec2009-07-04 19:29:52 -0700180static void toggle_clock(struct davinci_mcbsp_dev *dev, int playback)
181{
182 u32 m = playback ? DAVINCI_MCBSP_PCR_CLKXP : DAVINCI_MCBSP_PCR_CLKRP;
183 /* The clock needs to toggle to complete reset.
184 * So, fake it by toggling the clk polarity.
185 */
186 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_PCR_REG, dev->pcr ^ m);
187 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_PCR_REG, dev->pcr);
188}
189
Troy Kiskyf9af37c2009-07-04 19:29:53 -0700190static void davinci_mcbsp_start(struct davinci_mcbsp_dev *dev,
191 struct snd_pcm_substream *substream)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100192{
193 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimotoa49cb312018-01-29 02:46:04 +0000194 struct snd_soc_component *component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
Troy Kiskyc392bec2009-07-04 19:29:52 -0700195 int playback = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
Troy Kisky35cf6352009-07-04 19:29:51 -0700196 u32 spcr;
Troy Kiskyc392bec2009-07-04 19:29:52 -0700197 u32 mask = playback ? DAVINCI_MCBSP_SPCR_XRST : DAVINCI_MCBSP_SPCR_RRST;
Troy Kisky35cf6352009-07-04 19:29:51 -0700198 spcr = davinci_mcbsp_read_reg(dev, DAVINCI_MCBSP_SPCR_REG);
Troy Kiskyc392bec2009-07-04 19:29:52 -0700199 if (spcr & mask) {
200 /* start off disabled */
201 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG,
202 spcr & ~mask);
203 toggle_clock(dev, playback);
204 }
Troy Kisky1bef4492009-07-04 19:29:55 -0700205 if (dev->pcr & (DAVINCI_MCBSP_PCR_FSXM | DAVINCI_MCBSP_PCR_FSRM |
206 DAVINCI_MCBSP_PCR_CLKXM | DAVINCI_MCBSP_PCR_CLKRM)) {
207 /* Start the sample generator */
208 spcr |= DAVINCI_MCBSP_SPCR_GRST;
209 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
210 }
Vladimir Barinov310355c2008-02-18 11:40:22 +0100211
Troy Kisky1bef4492009-07-04 19:29:55 -0700212 if (playback) {
Naresh Medisettyfb0ef642008-11-12 10:26:31 +0530213 /* Stop the DMA to avoid data loss */
214 /* while the transmitter is out of reset to handle XSYNCERR */
Kuninori Morimotoa49cb312018-01-29 02:46:04 +0000215 if (component->driver->ops->trigger) {
216 int ret = component->driver->ops->trigger(substream,
Naresh Medisettyfb0ef642008-11-12 10:26:31 +0530217 SNDRV_PCM_TRIGGER_STOP);
218 if (ret < 0)
219 printk(KERN_DEBUG "Playback DMA stop failed\n");
220 }
221
222 /* Enable the transmitter */
Troy Kisky35cf6352009-07-04 19:29:51 -0700223 spcr = davinci_mcbsp_read_reg(dev, DAVINCI_MCBSP_SPCR_REG);
224 spcr |= DAVINCI_MCBSP_SPCR_XRST;
225 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
Naresh Medisettyfb0ef642008-11-12 10:26:31 +0530226
227 /* wait for any unexpected frame sync error to occur */
228 udelay(100);
229
230 /* Disable the transmitter to clear any outstanding XSYNCERR */
Troy Kisky35cf6352009-07-04 19:29:51 -0700231 spcr = davinci_mcbsp_read_reg(dev, DAVINCI_MCBSP_SPCR_REG);
232 spcr &= ~DAVINCI_MCBSP_SPCR_XRST;
233 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
Troy Kiskyc392bec2009-07-04 19:29:52 -0700234 toggle_clock(dev, playback);
Naresh Medisettyfb0ef642008-11-12 10:26:31 +0530235
236 /* Restart the DMA */
Kuninori Morimotoa49cb312018-01-29 02:46:04 +0000237 if (component->driver->ops->trigger) {
238 int ret = component->driver->ops->trigger(substream,
Naresh Medisettyfb0ef642008-11-12 10:26:31 +0530239 SNDRV_PCM_TRIGGER_START);
240 if (ret < 0)
241 printk(KERN_DEBUG "Playback DMA start failed\n");
242 }
Naresh Medisettyfb0ef642008-11-12 10:26:31 +0530243 }
244
Troy Kisky1bef4492009-07-04 19:29:55 -0700245 /* Enable transmitter or receiver */
Troy Kisky35cf6352009-07-04 19:29:51 -0700246 spcr = davinci_mcbsp_read_reg(dev, DAVINCI_MCBSP_SPCR_REG);
Troy Kisky1bef4492009-07-04 19:29:55 -0700247 spcr |= mask;
248
249 if (dev->pcr & (DAVINCI_MCBSP_PCR_FSXM | DAVINCI_MCBSP_PCR_FSRM)) {
250 /* Start frame sync */
251 spcr |= DAVINCI_MCBSP_SPCR_FRST;
252 }
Troy Kisky35cf6352009-07-04 19:29:51 -0700253 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100254}
255
Troy Kiskyf9af37c2009-07-04 19:29:53 -0700256static void davinci_mcbsp_stop(struct davinci_mcbsp_dev *dev, int playback)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100257{
Troy Kisky35cf6352009-07-04 19:29:51 -0700258 u32 spcr;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100259
260 /* Reset transmitter/receiver and sample rate/frame sync generators */
Troy Kisky35cf6352009-07-04 19:29:51 -0700261 spcr = davinci_mcbsp_read_reg(dev, DAVINCI_MCBSP_SPCR_REG);
262 spcr &= ~(DAVINCI_MCBSP_SPCR_GRST | DAVINCI_MCBSP_SPCR_FRST);
Troy Kiskyc392bec2009-07-04 19:29:52 -0700263 spcr &= playback ? ~DAVINCI_MCBSP_SPCR_XRST : ~DAVINCI_MCBSP_SPCR_RRST;
Troy Kisky35cf6352009-07-04 19:29:51 -0700264 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
Troy Kiskyc392bec2009-07-04 19:29:52 -0700265 toggle_clock(dev, playback);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100266}
267
Troy Kisky21903c12008-12-18 12:36:43 -0700268#define DEFAULT_BITPERSAMPLE 16
269
Liam Girdwood9cb132d2008-07-07 16:07:42 +0100270static int davinci_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
Vladimir Barinov310355c2008-02-18 11:40:22 +0100271 unsigned int fmt)
272{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000273 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(cpu_dai);
Troy Kisky21903c12008-12-18 12:36:43 -0700274 unsigned int pcr;
275 unsigned int srgr;
Jarkko Nikulaad51f762011-09-30 10:55:33 +0300276 bool inv_fs = false;
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200277 /* Attention srgr is updated by hw_params! */
Troy Kisky21903c12008-12-18 12:36:43 -0700278 srgr = DAVINCI_MCBSP_SRGR_FSGM |
279 DAVINCI_MCBSP_SRGR_FPER(DEFAULT_BITPERSAMPLE * 2 - 1) |
280 DAVINCI_MCBSP_SRGR_FWID(DEFAULT_BITPERSAMPLE - 1);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100281
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200282 dev->fmt = fmt;
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700283 /* set master/slave audio interface */
Vladimir Barinov310355c2008-02-18 11:40:22 +0100284 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
285 case SND_SOC_DAIFMT_CBS_CFS:
Troy Kisky21903c12008-12-18 12:36:43 -0700286 /* cpu is master */
287 pcr = DAVINCI_MCBSP_PCR_FSXM |
288 DAVINCI_MCBSP_PCR_FSRM |
289 DAVINCI_MCBSP_PCR_CLKXM |
290 DAVINCI_MCBSP_PCR_CLKRM;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100291 break;
Hugo Villeneuveb402dff2008-11-08 13:26:09 -0500292 case SND_SOC_DAIFMT_CBM_CFS:
Raffaele Recalcatiec637552010-07-06 10:39:03 +0200293 pcr = DAVINCI_MCBSP_PCR_FSRM | DAVINCI_MCBSP_PCR_FSXM;
294 /*
295 * Selection of the clock input pin that is the
296 * input for the Sample Rate Generator.
297 * McBSP FSR and FSX are driven by the Sample Rate
298 * Generator.
299 */
300 switch (dev->clk_input_pin) {
301 case MCBSP_CLKS:
302 pcr |= DAVINCI_MCBSP_PCR_CLKXM |
303 DAVINCI_MCBSP_PCR_CLKRM;
304 break;
305 case MCBSP_CLKR:
306 pcr |= DAVINCI_MCBSP_PCR_SCLKME;
307 break;
308 default:
309 dev_err(dev->dev, "bad clk_input_pin\n");
310 return -EINVAL;
311 }
312
Hugo Villeneuveb402dff2008-11-08 13:26:09 -0500313 break;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100314 case SND_SOC_DAIFMT_CBM_CFM:
Troy Kisky21903c12008-12-18 12:36:43 -0700315 /* codec is master */
316 pcr = 0;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100317 break;
318 default:
Troy Kisky21903c12008-12-18 12:36:43 -0700319 printk(KERN_ERR "%s:bad master\n", __func__);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100320 return -EINVAL;
321 }
322
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700323 /* interface format */
Troy Kisky69ab8202008-12-18 12:36:44 -0700324 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
Troy Kisky69ab8202008-12-18 12:36:44 -0700325 case SND_SOC_DAIFMT_I2S:
Troy Kisky07d8d9d2008-12-19 13:05:24 -0700326 /* Davinci doesn't support TRUE I2S, but some codecs will have
327 * the left and right channels contiguous. This allows
328 * dsp_a mode to be used with an inverted normal frame clk.
329 * If your codec is master and does not have contiguous
330 * channels, then you will have sound on only one channel.
331 * Try using a different mode, or codec as slave.
332 *
333 * The TLV320AIC33 is an example of a codec where this works.
334 * It has a variable bit clock frequency allowing it to have
335 * valid data on every bit clock.
336 *
337 * The TLV320AIC23 is an example of a codec where this does not
338 * work. It has a fixed bit clock frequency with progressively
339 * more empty bit clock slots between channels as the sample
340 * rate is lowered.
341 */
Jarkko Nikulaad51f762011-09-30 10:55:33 +0300342 inv_fs = true;
Troy Kisky07d8d9d2008-12-19 13:05:24 -0700343 case SND_SOC_DAIFMT_DSP_A:
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700344 dev->mode = MOD_DSP_A;
345 break;
346 case SND_SOC_DAIFMT_DSP_B:
347 dev->mode = MOD_DSP_B;
Troy Kisky69ab8202008-12-18 12:36:44 -0700348 break;
349 default:
350 printk(KERN_ERR "%s:bad format\n", __func__);
351 return -EINVAL;
352 }
353
Vladimir Barinov310355c2008-02-18 11:40:22 +0100354 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
Troy Kisky9e031622008-12-19 13:05:23 -0700355 case SND_SOC_DAIFMT_NB_NF:
Troy Kisky664b4af2008-12-18 12:36:41 -0700356 /* CLKRP Receive clock polarity,
357 * 1 - sampled on rising edge of CLKR
358 * valid on rising edge
359 * CLKXP Transmit clock polarity,
360 * 1 - clocked on falling edge of CLKX
361 * valid on rising edge
362 * FSRP Receive frame sync pol, 0 - active high
363 * FSXP Transmit frame sync pol, 0 - active high
364 */
Troy Kisky21903c12008-12-18 12:36:43 -0700365 pcr |= (DAVINCI_MCBSP_PCR_CLKXP | DAVINCI_MCBSP_PCR_CLKRP);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100366 break;
Troy Kisky9e031622008-12-19 13:05:23 -0700367 case SND_SOC_DAIFMT_IB_IF:
Troy Kisky664b4af2008-12-18 12:36:41 -0700368 /* CLKRP Receive clock polarity,
369 * 0 - sampled on falling edge of CLKR
370 * valid on falling edge
371 * CLKXP Transmit clock polarity,
372 * 0 - clocked on rising edge of CLKX
373 * valid on falling edge
374 * FSRP Receive frame sync pol, 1 - active low
375 * FSXP Transmit frame sync pol, 1 - active low
376 */
Troy Kisky21903c12008-12-18 12:36:43 -0700377 pcr |= (DAVINCI_MCBSP_PCR_FSXP | DAVINCI_MCBSP_PCR_FSRP);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100378 break;
Troy Kisky9e031622008-12-19 13:05:23 -0700379 case SND_SOC_DAIFMT_NB_IF:
Troy Kisky664b4af2008-12-18 12:36:41 -0700380 /* CLKRP Receive clock polarity,
381 * 1 - sampled on rising edge of CLKR
382 * valid on rising edge
383 * CLKXP Transmit clock polarity,
384 * 1 - clocked on falling edge of CLKX
385 * valid on rising edge
386 * FSRP Receive frame sync pol, 1 - active low
387 * FSXP Transmit frame sync pol, 1 - active low
388 */
Troy Kisky21903c12008-12-18 12:36:43 -0700389 pcr |= (DAVINCI_MCBSP_PCR_CLKXP | DAVINCI_MCBSP_PCR_CLKRP |
390 DAVINCI_MCBSP_PCR_FSXP | DAVINCI_MCBSP_PCR_FSRP);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100391 break;
Troy Kisky9e031622008-12-19 13:05:23 -0700392 case SND_SOC_DAIFMT_IB_NF:
Troy Kisky664b4af2008-12-18 12:36:41 -0700393 /* CLKRP Receive clock polarity,
394 * 0 - sampled on falling edge of CLKR
395 * valid on falling edge
396 * CLKXP Transmit clock polarity,
397 * 0 - clocked on rising edge of CLKX
398 * valid on falling edge
399 * FSRP Receive frame sync pol, 0 - active high
400 * FSXP Transmit frame sync pol, 0 - active high
401 */
Vladimir Barinov310355c2008-02-18 11:40:22 +0100402 break;
403 default:
404 return -EINVAL;
405 }
Jarkko Nikulaad51f762011-09-30 10:55:33 +0300406 if (inv_fs == true)
407 pcr ^= (DAVINCI_MCBSP_PCR_FSXP | DAVINCI_MCBSP_PCR_FSRP);
Troy Kisky21903c12008-12-18 12:36:43 -0700408 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SRGR_REG, srgr);
Troy Kiskyc392bec2009-07-04 19:29:52 -0700409 dev->pcr = pcr;
Troy Kisky21903c12008-12-18 12:36:43 -0700410 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_PCR_REG, pcr);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100411 return 0;
412}
413
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200414static int davinci_i2s_dai_set_clkdiv(struct snd_soc_dai *cpu_dai,
415 int div_id, int div)
416{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000417 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(cpu_dai);
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200418
419 if (div_id != DAVINCI_MCBSP_CLKGDV)
420 return -ENODEV;
421
422 dev->clk_div = div;
423 return 0;
424}
425
Vladimir Barinov310355c2008-02-18 11:40:22 +0100426static int davinci_i2s_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000427 struct snd_pcm_hw_params *params,
428 struct snd_soc_dai *dai)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100429{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000430 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(dai);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100431 struct snd_interval *i = NULL;
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200432 int mcbsp_word_length, master;
433 unsigned int rcr, xcr, srgr, clk_div, freq, framesize;
Troy Kisky35cf6352009-07-04 19:29:51 -0700434 u32 spcr;
Troy Kisky0d6c9772009-11-18 17:49:51 -0700435 snd_pcm_format_t fmt;
436 unsigned element_cnt = 1;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100437
438 /* general line settings */
Troy Kisky35cf6352009-07-04 19:29:51 -0700439 spcr = davinci_mcbsp_read_reg(dev, DAVINCI_MCBSP_SPCR_REG);
Naresh Medisettycb6e2062008-11-18 11:01:03 +0530440 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
Troy Kisky35cf6352009-07-04 19:29:51 -0700441 spcr |= DAVINCI_MCBSP_SPCR_RINTM(3) | DAVINCI_MCBSP_SPCR_FREE;
442 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
Naresh Medisettycb6e2062008-11-18 11:01:03 +0530443 } else {
Troy Kisky35cf6352009-07-04 19:29:51 -0700444 spcr |= DAVINCI_MCBSP_SPCR_XINTM(3) | DAVINCI_MCBSP_SPCR_FREE;
445 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SPCR_REG, spcr);
Naresh Medisettycb6e2062008-11-18 11:01:03 +0530446 }
Vladimir Barinov310355c2008-02-18 11:40:22 +0100447
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200448 master = dev->fmt & SND_SOC_DAIFMT_MASTER_MASK;
449 fmt = params_format(params);
450 mcbsp_word_length = asp_word_length[fmt];
Vladimir Barinov310355c2008-02-18 11:40:22 +0100451
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200452 switch (master) {
453 case SND_SOC_DAIFMT_CBS_CFS:
454 freq = clk_get_rate(dev->clk);
455 srgr = DAVINCI_MCBSP_SRGR_FSGM |
456 DAVINCI_MCBSP_SRGR_CLKSM;
457 srgr |= DAVINCI_MCBSP_SRGR_FWID(mcbsp_word_length *
458 8 - 1);
Raffaele Recalcatid9823ed92010-07-06 10:39:04 +0200459 if (dev->i2s_accurate_sck) {
460 clk_div = 256;
461 do {
462 framesize = (freq / (--clk_div)) /
463 params->rate_num *
464 params->rate_den;
465 } while (((framesize < 33) || (framesize > 4095)) &&
466 (clk_div));
467 clk_div--;
468 srgr |= DAVINCI_MCBSP_SRGR_FPER(framesize - 1);
469 } else {
470 /* symmetric waveforms */
471 clk_div = freq / (mcbsp_word_length * 16) /
472 params->rate_num * params->rate_den;
473 srgr |= DAVINCI_MCBSP_SRGR_FPER(mcbsp_word_length *
474 16 - 1);
475 }
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200476 clk_div &= 0xFF;
477 srgr |= clk_div;
478 break;
479 case SND_SOC_DAIFMT_CBM_CFS:
480 srgr = DAVINCI_MCBSP_SRGR_FSGM;
481 clk_div = dev->clk_div - 1;
482 srgr |= DAVINCI_MCBSP_SRGR_FWID(mcbsp_word_length * 8 - 1);
483 srgr |= DAVINCI_MCBSP_SRGR_FPER(mcbsp_word_length * 16 - 1);
484 clk_div &= 0xFF;
485 srgr |= clk_div;
486 break;
487 case SND_SOC_DAIFMT_CBM_CFM:
488 /* Clock and frame sync given from external sources */
489 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
490 srgr = DAVINCI_MCBSP_SRGR_FSGM;
491 srgr |= DAVINCI_MCBSP_SRGR_FWID(snd_interval_value(i) - 1);
492 pr_debug("%s - %d FWID set: re-read srgr = %X\n",
493 __func__, __LINE__, snd_interval_value(i) - 1);
494
495 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_FRAME_BITS);
496 srgr |= DAVINCI_MCBSP_SRGR_FPER(snd_interval_value(i) - 1);
497 break;
498 default:
499 return -EINVAL;
500 }
Troy Kisky35cf6352009-07-04 19:29:51 -0700501 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_SRGR_REG, srgr);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100502
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700503 rcr = DAVINCI_MCBSP_RCR_RFIG;
504 xcr = DAVINCI_MCBSP_XCR_XFIG;
505 if (dev->mode == MOD_DSP_B) {
506 rcr |= DAVINCI_MCBSP_RCR_RDATDLY(0);
507 xcr |= DAVINCI_MCBSP_XCR_XDATDLY(0);
508 } else {
509 rcr |= DAVINCI_MCBSP_RCR_RDATDLY(1);
510 xcr |= DAVINCI_MCBSP_XCR_XDATDLY(1);
511 }
Vladimir Barinov310355c2008-02-18 11:40:22 +0100512 /* Determine xfer data type */
Troy Kisky0d6c9772009-11-18 17:49:51 -0700513 fmt = params_format(params);
514 if ((fmt > SNDRV_PCM_FORMAT_S32_LE) || !data_type[fmt]) {
Jean Delvare9b6e12e2008-08-26 15:47:55 +0200515 printk(KERN_WARNING "davinci-i2s: unsupported PCM format\n");
Vladimir Barinov310355c2008-02-18 11:40:22 +0100516 return -EINVAL;
517 }
518
Troy Kisky0d6c9772009-11-18 17:49:51 -0700519 if (params_channels(params) == 2) {
520 element_cnt = 2;
521 if (double_fmt[fmt] && dev->enable_channel_combine) {
522 element_cnt = 1;
523 fmt = double_fmt[fmt];
524 }
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200525 switch (master) {
526 case SND_SOC_DAIFMT_CBS_CFS:
527 case SND_SOC_DAIFMT_CBS_CFM:
528 rcr |= DAVINCI_MCBSP_RCR_RFRLEN2(0);
529 xcr |= DAVINCI_MCBSP_XCR_XFRLEN2(0);
530 rcr |= DAVINCI_MCBSP_RCR_RPHASE;
531 xcr |= DAVINCI_MCBSP_XCR_XPHASE;
532 break;
533 case SND_SOC_DAIFMT_CBM_CFM:
534 case SND_SOC_DAIFMT_CBM_CFS:
535 rcr |= DAVINCI_MCBSP_RCR_RFRLEN2(element_cnt - 1);
536 xcr |= DAVINCI_MCBSP_XCR_XFRLEN2(element_cnt - 1);
537 break;
538 default:
539 return -EINVAL;
540 }
Troy Kisky0d6c9772009-11-18 17:49:51 -0700541 }
Troy Kisky0d6c9772009-11-18 17:49:51 -0700542 mcbsp_word_length = asp_word_length[fmt];
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200543
544 switch (master) {
545 case SND_SOC_DAIFMT_CBS_CFS:
546 case SND_SOC_DAIFMT_CBS_CFM:
547 rcr |= DAVINCI_MCBSP_RCR_RFRLEN1(0);
548 xcr |= DAVINCI_MCBSP_XCR_XFRLEN1(0);
549 break;
550 case SND_SOC_DAIFMT_CBM_CFM:
551 case SND_SOC_DAIFMT_CBM_CFS:
552 rcr |= DAVINCI_MCBSP_RCR_RFRLEN1(element_cnt - 1);
553 xcr |= DAVINCI_MCBSP_XCR_XFRLEN1(element_cnt - 1);
554 break;
555 default:
556 return -EINVAL;
557 }
Vladimir Barinov310355c2008-02-18 11:40:22 +0100558
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700559 rcr |= DAVINCI_MCBSP_RCR_RWDLEN1(mcbsp_word_length) |
560 DAVINCI_MCBSP_RCR_RWDLEN2(mcbsp_word_length);
561 xcr |= DAVINCI_MCBSP_XCR_XWDLEN1(mcbsp_word_length) |
562 DAVINCI_MCBSP_XCR_XWDLEN2(mcbsp_word_length);
563
564 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Troy Kisky35cf6352009-07-04 19:29:51 -0700565 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_XCR_REG, xcr);
Troy Kiskyf5cfa952009-07-04 19:29:57 -0700566 else
567 davinci_mcbsp_write_reg(dev, DAVINCI_MCBSP_RCR_REG, rcr);
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200568
569 pr_debug("%s - %d srgr=%X\n", __func__, __LINE__, srgr);
570 pr_debug("%s - %d xcr=%X\n", __func__, __LINE__, xcr);
571 pr_debug("%s - %d rcr=%X\n", __func__, __LINE__, rcr);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100572 return 0;
573}
574
Troy Kiskyaf0adf32009-07-04 19:29:59 -0700575static int davinci_i2s_prepare(struct snd_pcm_substream *substream,
576 struct snd_soc_dai *dai)
577{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000578 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(dai);
Troy Kiskyaf0adf32009-07-04 19:29:59 -0700579 int playback = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
580 davinci_mcbsp_stop(dev, playback);
Troy Kiskyaf0adf32009-07-04 19:29:59 -0700581 return 0;
582}
583
Mark Browndee89c42008-11-18 22:11:38 +0000584static int davinci_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
585 struct snd_soc_dai *dai)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100586{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000587 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(dai);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100588 int ret = 0;
Troy Kiskyf9af37c2009-07-04 19:29:53 -0700589 int playback = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100590
591 switch (cmd) {
592 case SNDRV_PCM_TRIGGER_START:
593 case SNDRV_PCM_TRIGGER_RESUME:
594 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Troy Kiskyf9af37c2009-07-04 19:29:53 -0700595 davinci_mcbsp_start(dev, substream);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100596 break;
597 case SNDRV_PCM_TRIGGER_STOP:
598 case SNDRV_PCM_TRIGGER_SUSPEND:
599 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Troy Kiskyf9af37c2009-07-04 19:29:53 -0700600 davinci_mcbsp_stop(dev, playback);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100601 break;
602 default:
603 ret = -EINVAL;
604 }
Vladimir Barinov310355c2008-02-18 11:40:22 +0100605 return ret;
606}
607
Troy Kiskyaf0adf32009-07-04 19:29:59 -0700608static void davinci_i2s_shutdown(struct snd_pcm_substream *substream,
609 struct snd_soc_dai *dai)
610{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000611 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(dai);
Troy Kiskyaf0adf32009-07-04 19:29:59 -0700612 int playback = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
613 davinci_mcbsp_stop(dev, playback);
614}
615
Chaithrika U S5204d492009-06-05 06:28:23 -0400616#define DAVINCI_I2S_RATES SNDRV_PCM_RATE_8000_96000
617
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100618static const struct snd_soc_dai_ops davinci_i2s_dai_ops = {
Mark Brown3f405b42009-07-07 19:18:46 +0100619 .shutdown = davinci_i2s_shutdown,
620 .prepare = davinci_i2s_prepare,
Chaithrika U S5204d492009-06-05 06:28:23 -0400621 .trigger = davinci_i2s_trigger,
622 .hw_params = davinci_i2s_hw_params,
623 .set_fmt = davinci_i2s_set_dai_fmt,
Raffaele Recalcatia4c8ea22010-07-06 10:39:02 +0200624 .set_clkdiv = davinci_i2s_dai_set_clkdiv,
Chaithrika U S5204d492009-06-05 06:28:23 -0400625
626};
627
Peter Ujfalusi257ade72015-03-03 16:45:18 +0200628static int davinci_i2s_dai_probe(struct snd_soc_dai *dai)
629{
630 struct davinci_mcbsp_dev *dev = snd_soc_dai_get_drvdata(dai);
631
632 dai->playback_dma_data = &dev->dma_data[SNDRV_PCM_STREAM_PLAYBACK];
633 dai->capture_dma_data = &dev->dma_data[SNDRV_PCM_STREAM_CAPTURE];
634
635 return 0;
636}
637
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000638static struct snd_soc_dai_driver davinci_i2s_dai = {
Peter Ujfalusi257ade72015-03-03 16:45:18 +0200639 .probe = davinci_i2s_dai_probe,
Chaithrika U S5204d492009-06-05 06:28:23 -0400640 .playback = {
641 .channels_min = 2,
642 .channels_max = 2,
643 .rates = DAVINCI_I2S_RATES,
644 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
645 .capture = {
646 .channels_min = 2,
647 .channels_max = 2,
648 .rates = DAVINCI_I2S_RATES,
649 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
650 .ops = &davinci_i2s_dai_ops,
651
652};
Chaithrika U S5204d492009-06-05 06:28:23 -0400653
Kuninori Morimotobfcb9212013-03-21 03:30:54 -0700654static const struct snd_soc_component_driver davinci_i2s_component = {
Kuninori Morimotoa49cb312018-01-29 02:46:04 +0000655 .name = DRV_NAME,
Kuninori Morimotobfcb9212013-03-21 03:30:54 -0700656};
657
Chaithrika U S5204d492009-06-05 06:28:23 -0400658static int davinci_i2s_probe(struct platform_device *pdev)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100659{
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +0200660 struct snd_dmaengine_dai_dma_data *dma_data;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100661 struct davinci_mcbsp_dev *dev;
Axel Lin508a43f2015-08-24 16:47:36 +0800662 struct resource *mem, *res;
663 void __iomem *io_base;
Peter Ujfalusi257ade72015-03-03 16:45:18 +0200664 int *dma;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100665 int ret;
666
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +0200667 mem = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
668 if (!mem) {
669 dev_warn(&pdev->dev,
670 "\"mpu\" mem resource not found, using index 0\n");
671 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
672 if (!mem) {
673 dev_err(&pdev->dev, "no mem resource?\n");
674 return -ENODEV;
675 }
676 }
677
Axel Lin508a43f2015-08-24 16:47:36 +0800678 io_base = devm_ioremap_resource(&pdev->dev, mem);
679 if (IS_ERR(io_base))
680 return PTR_ERR(io_base);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100681
Julia Lawallcd0ff7e2011-12-29 17:51:22 +0100682 dev = devm_kzalloc(&pdev->dev, sizeof(struct davinci_mcbsp_dev),
683 GFP_KERNEL);
684 if (!dev)
685 return -ENOMEM;
Sekhar Nori48519f02010-07-19 12:31:16 +0530686
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +0200687 dev->base = io_base;
688
689 /* setup DMA, first TX, then RX */
690 dma_data = &dev->dma_data[SNDRV_PCM_STREAM_PLAYBACK];
691 dma_data->addr = (dma_addr_t)(mem->start + DAVINCI_MCBSP_DXR_REG);
692
693 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
694 if (res) {
695 dma = &dev->dma_request[SNDRV_PCM_STREAM_PLAYBACK];
696 *dma = res->start;
697 dma_data->filter_data = dma;
698 } else if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
699 dma_data->filter_data = "tx";
700 } else {
701 dev_err(&pdev->dev, "Missing DMA tx resource\n");
702 return -ENODEV;
703 }
704
705 dma_data = &dev->dma_data[SNDRV_PCM_STREAM_CAPTURE];
706 dma_data->addr = (dma_addr_t)(mem->start + DAVINCI_MCBSP_DRR_REG);
707
708 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
709 if (res) {
710 dma = &dev->dma_request[SNDRV_PCM_STREAM_CAPTURE];
711 *dma = res->start;
712 dma_data->filter_data = dma;
713 } else if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
714 dma_data->filter_data = "rx";
715 } else {
716 dev_err(&pdev->dev, "Missing DMA rx resource\n");
717 return -ENODEV;
718 }
719
Kevin Hilman3e46a442009-07-15 10:42:09 -0700720 dev->clk = clk_get(&pdev->dev, NULL);
Julia Lawallcd0ff7e2011-12-29 17:51:22 +0100721 if (IS_ERR(dev->clk))
722 return -ENODEV;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100723 clk_enable(dev->clk);
724
Peter Ujfalusi257ade72015-03-03 16:45:18 +0200725 dev->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000726 dev_set_drvdata(&pdev->dev, dev);
727
Kuninori Morimotobfcb9212013-03-21 03:30:54 -0700728 ret = snd_soc_register_component(&pdev->dev, &davinci_i2s_component,
729 &davinci_i2s_dai, 1);
Chaithrika U S5204d492009-06-05 06:28:23 -0400730 if (ret != 0)
Julia Lawallcd0ff7e2011-12-29 17:51:22 +0100731 goto err_release_clk;
Chaithrika U S5204d492009-06-05 06:28:23 -0400732
Peter Ujfalusi257ade72015-03-03 16:45:18 +0200733 ret = edma_pcm_platform_register(&pdev->dev);
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530734 if (ret) {
735 dev_err(&pdev->dev, "register PCM failed: %d\n", ret);
Kuninori Morimotobfcb9212013-03-21 03:30:54 -0700736 goto err_unregister_component;
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530737 }
738
Vladimir Barinov310355c2008-02-18 11:40:22 +0100739 return 0;
740
Kuninori Morimotobfcb9212013-03-21 03:30:54 -0700741err_unregister_component:
742 snd_soc_unregister_component(&pdev->dev);
Vaibhav Bediaeef6d7b2011-02-09 18:39:53 +0530743err_release_clk:
744 clk_disable(dev->clk);
745 clk_put(dev->clk);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100746 return ret;
747}
748
Chaithrika U S5204d492009-06-05 06:28:23 -0400749static int davinci_i2s_remove(struct platform_device *pdev)
Vladimir Barinov310355c2008-02-18 11:40:22 +0100750{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000751 struct davinci_mcbsp_dev *dev = dev_get_drvdata(&pdev->dev);
Vladimir Barinov310355c2008-02-18 11:40:22 +0100752
Kuninori Morimotobfcb9212013-03-21 03:30:54 -0700753 snd_soc_unregister_component(&pdev->dev);
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +0530754
Vladimir Barinov310355c2008-02-18 11:40:22 +0100755 clk_disable(dev->clk);
756 clk_put(dev->clk);
757 dev->clk = NULL;
Chaithrika U S5204d492009-06-05 06:28:23 -0400758
759 return 0;
Vladimir Barinov310355c2008-02-18 11:40:22 +0100760}
761
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +0200762static const struct of_device_id davinci_i2s_match[] = {
763 { .compatible = "ti,da850-mcbsp" },
764 {},
765};
766MODULE_DEVICE_TABLE(of, davinci_i2s_match);
767
Chaithrika U S5204d492009-06-05 06:28:23 -0400768static struct platform_driver davinci_mcbsp_driver = {
769 .probe = davinci_i2s_probe,
770 .remove = davinci_i2s_remove,
771 .driver = {
Chris Paulson-Ellisbedad0c2010-11-16 12:27:09 +0000772 .name = "davinci-mcbsp",
Petr Kulhavy5f9a50c2016-04-18 14:32:41 +0200773 .of_match_table = of_match_ptr(davinci_i2s_match),
Chaithrika U S5204d492009-06-05 06:28:23 -0400774 },
Eric Miao6335d052009-03-03 09:41:00 +0800775};
776
Axel Linf9b8a512011-11-25 10:09:27 +0800777module_platform_driver(davinci_mcbsp_driver);
Mark Brown3f4b7832008-12-03 19:26:35 +0000778
Vladimir Barinov310355c2008-02-18 11:40:22 +0100779MODULE_AUTHOR("Vladimir Barinov");
780MODULE_DESCRIPTION("TI DAVINCI I2S (McBSP) SoC Interface");
781MODULE_LICENSE("GPL");