blob: 231d7e7b07110d9e219788810acf70d62f1e00c6 [file] [log] [blame]
Dong Aisheng2a24f2c2011-07-21 12:36:56 +08001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 *
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.
8 *
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.
13 *
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.
17 */
18
19#include <linux/module.h>
20#include <linux/init.h>
Shawn Guo08641c72012-05-11 22:24:17 +080021#include <linux/of.h>
22#include <linux/of_device.h>
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080023#include <linux/platform_device.h>
24#include <linux/slab.h>
25#include <linux/dma-mapping.h>
26#include <linux/clk.h>
Shawn Guo7c9e6152013-07-01 16:16:10 +080027#include <linux/clk-provider.h>
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080028#include <linux/delay.h>
Dong Aisheng76067542011-09-07 20:51:50 +080029#include <linux/time.h>
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080030#include <sound/core.h>
31#include <sound/pcm.h>
32#include <sound/pcm_params.h>
33#include <sound/soc.h>
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080034
35#include "mxs-saif.h"
36
Shawn Guo114fe752013-03-28 23:21:16 +080037#define MXS_SET_ADDR 0x4
38#define MXS_CLR_ADDR 0x8
39
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080040static struct mxs_saif *mxs_saif[2];
41
Dong Aisheng76067542011-09-07 20:51:50 +080042/*
43 * SAIF is a little different with other normal SOC DAIs on clock using.
44 *
45 * For MXS, two SAIF modules are instantiated on-chip.
46 * Each SAIF has a set of clock pins and can be operating in master
47 * mode simultaneously if they are connected to different off-chip codecs.
48 * Also, one of the two SAIFs can master or drive the clock pins while the
49 * other SAIF, in slave mode, receives clocking from the master SAIF.
50 * This also means that both SAIFs must operate at the same sample rate.
51 *
52 * We abstract this as each saif has a master, the master could be
Matthew Garrett05004cb2013-12-18 13:50:10 +000053 * itself or other saifs. In the generic saif driver, saif does not need
54 * to know the different clkmux. Saif only needs to know who is its master
55 * and operating its master to generate the proper clock rate for it.
Dong Aisheng76067542011-09-07 20:51:50 +080056 * The master id is provided in mach-specific layer according to different
57 * clkmux setting.
58 */
59
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080060static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
61 int clk_id, unsigned int freq, int dir)
62{
63 struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
64
65 switch (clk_id) {
66 case MXS_SAIF_MCLK:
67 saif->mclk = freq;
68 break;
69 default:
70 return -EINVAL;
71 }
72 return 0;
73}
74
75/*
Dong Aisheng76067542011-09-07 20:51:50 +080076 * Since SAIF may work on EXTMASTER mode, IOW, it's working BITCLK&LRCLK
77 * is provided by other SAIF, we provide a interface here to get its master
78 * from its master_id.
Matthew Garrett05004cb2013-12-18 13:50:10 +000079 * Note that the master could be itself.
Dong Aisheng76067542011-09-07 20:51:50 +080080 */
81static inline struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif)
82{
83 return mxs_saif[saif->master_id];
84}
85
86/*
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080087 * Set SAIF clock and MCLK
88 */
89static int mxs_saif_set_clk(struct mxs_saif *saif,
90 unsigned int mclk,
91 unsigned int rate)
92{
93 u32 scr;
94 int ret;
Dong Aisheng76067542011-09-07 20:51:50 +080095 struct mxs_saif *master_saif;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +080096
Dong Aisheng76067542011-09-07 20:51:50 +080097 dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
98
99 /* Set master saif to generate proper clock */
100 master_saif = mxs_saif_get_master(saif);
101 if (!master_saif)
102 return -EINVAL;
103
104 dev_dbg(saif->dev, "master saif%d\n", master_saif->id);
105
106 /* Checking if can playback and capture simutaneously */
107 if (master_saif->ongoing && rate != master_saif->cur_rate) {
108 dev_err(saif->dev,
109 "can not change clock, master saif%d(rate %d) is ongoing\n",
110 master_saif->id, master_saif->cur_rate);
111 return -EINVAL;
112 }
113
114 scr = __raw_readl(master_saif->base + SAIF_CTRL);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800115 scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
116 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
117
118 /*
119 * Set SAIF clock
120 *
121 * The SAIF clock should be either 384*fs or 512*fs.
122 * If MCLK is used, the SAIF clk ratio need to match mclk ratio.
123 * For 32x mclk, set saif clk as 512*fs.
124 * For 48x mclk, set saif clk as 384*fs.
125 *
126 * If MCLK is not used, we just set saif clk to 512*fs.
127 */
Fabio Estevam6b35f922012-01-19 10:23:22 -0200128 clk_prepare_enable(master_saif->clk);
129
Dong Aisheng76067542011-09-07 20:51:50 +0800130 if (master_saif->mclk_in_use) {
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800131 if (mclk % 32 == 0) {
132 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
Dong Aisheng76067542011-09-07 20:51:50 +0800133 ret = clk_set_rate(master_saif->clk, 512 * rate);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800134 } else if (mclk % 48 == 0) {
135 scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
Dong Aisheng76067542011-09-07 20:51:50 +0800136 ret = clk_set_rate(master_saif->clk, 384 * rate);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800137 } else {
138 /* SAIF MCLK should be either 32x or 48x */
Fabio Estevam6b35f922012-01-19 10:23:22 -0200139 clk_disable_unprepare(master_saif->clk);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800140 return -EINVAL;
141 }
142 } else {
Dong Aisheng76067542011-09-07 20:51:50 +0800143 ret = clk_set_rate(master_saif->clk, 512 * rate);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800144 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
145 }
146
Fabio Estevam6b35f922012-01-19 10:23:22 -0200147 clk_disable_unprepare(master_saif->clk);
148
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800149 if (ret)
150 return ret;
151
Dong Aisheng76067542011-09-07 20:51:50 +0800152 master_saif->cur_rate = rate;
153
154 if (!master_saif->mclk_in_use) {
155 __raw_writel(scr, master_saif->base + SAIF_CTRL);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800156 return 0;
157 }
158
159 /*
160 * Program the over-sample rate for MCLK output
161 *
162 * The available MCLK range is 32x, 48x... 512x. The rate
163 * could be from 8kHz to 192kH.
164 */
165 switch (mclk / rate) {
166 case 32:
167 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(4);
168 break;
169 case 64:
170 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(3);
171 break;
172 case 128:
173 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(2);
174 break;
175 case 256:
176 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(1);
177 break;
178 case 512:
179 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(0);
180 break;
181 case 48:
182 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(3);
183 break;
184 case 96:
185 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(2);
186 break;
187 case 192:
188 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(1);
189 break;
190 case 384:
191 scr |= BF_SAIF_CTRL_BITCLK_MULT_RATE(0);
192 break;
193 default:
194 return -EINVAL;
195 }
196
Dong Aisheng76067542011-09-07 20:51:50 +0800197 __raw_writel(scr, master_saif->base + SAIF_CTRL);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800198
199 return 0;
200}
201
202/*
203 * Put and disable MCLK.
204 */
205int mxs_saif_put_mclk(unsigned int saif_id)
206{
207 struct mxs_saif *saif = mxs_saif[saif_id];
208 u32 stat;
209
210 if (!saif)
211 return -EINVAL;
212
213 stat = __raw_readl(saif->base + SAIF_STAT);
214 if (stat & BM_SAIF_STAT_BUSY) {
215 dev_err(saif->dev, "error: busy\n");
216 return -EBUSY;
217 }
218
Shawn Guo67939b22011-12-20 14:15:44 +0800219 clk_disable_unprepare(saif->clk);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800220
221 /* disable MCLK output */
222 __raw_writel(BM_SAIF_CTRL_CLKGATE,
223 saif->base + SAIF_CTRL + MXS_SET_ADDR);
224 __raw_writel(BM_SAIF_CTRL_RUN,
225 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
226
227 saif->mclk_in_use = 0;
228 return 0;
229}
Lothar Waßmanncf7d0f02012-11-22 13:31:09 +0100230EXPORT_SYMBOL_GPL(mxs_saif_put_mclk);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800231
232/*
233 * Get MCLK and set clock rate, then enable it
234 *
235 * This interface is used for codecs who are using MCLK provided
236 * by saif.
237 */
238int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
239 unsigned int rate)
240{
241 struct mxs_saif *saif = mxs_saif[saif_id];
242 u32 stat;
243 int ret;
Dong Aisheng76067542011-09-07 20:51:50 +0800244 struct mxs_saif *master_saif;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800245
246 if (!saif)
247 return -EINVAL;
248
Dong Aishengbbe8ff52011-08-21 23:45:40 +0800249 /* Clear Reset */
250 __raw_writel(BM_SAIF_CTRL_SFTRST,
251 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
252
253 /* FIXME: need clear clk gate for register r/w */
254 __raw_writel(BM_SAIF_CTRL_CLKGATE,
255 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
256
Dong Aisheng76067542011-09-07 20:51:50 +0800257 master_saif = mxs_saif_get_master(saif);
258 if (saif != master_saif) {
259 dev_err(saif->dev, "can not get mclk from a non-master saif\n");
260 return -EINVAL;
261 }
262
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800263 stat = __raw_readl(saif->base + SAIF_STAT);
264 if (stat & BM_SAIF_STAT_BUSY) {
265 dev_err(saif->dev, "error: busy\n");
266 return -EBUSY;
267 }
268
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800269 saif->mclk_in_use = 1;
270 ret = mxs_saif_set_clk(saif, mclk, rate);
271 if (ret)
272 return ret;
273
Shawn Guo67939b22011-12-20 14:15:44 +0800274 ret = clk_prepare_enable(saif->clk);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800275 if (ret)
276 return ret;
277
278 /* enable MCLK output */
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800279 __raw_writel(BM_SAIF_CTRL_RUN,
280 saif->base + SAIF_CTRL + MXS_SET_ADDR);
281
282 return 0;
283}
Lothar Waßmanncf7d0f02012-11-22 13:31:09 +0100284EXPORT_SYMBOL_GPL(mxs_saif_get_mclk);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800285
286/*
287 * SAIF DAI format configuration.
288 * Should only be called when port is inactive.
289 */
290static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
291{
292 u32 scr, stat;
293 u32 scr0;
294 struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
295
296 stat = __raw_readl(saif->base + SAIF_STAT);
297 if (stat & BM_SAIF_STAT_BUSY) {
298 dev_err(cpu_dai->dev, "error: busy\n");
299 return -EBUSY;
300 }
301
302 scr0 = __raw_readl(saif->base + SAIF_CTRL);
303 scr0 = scr0 & ~BM_SAIF_CTRL_BITCLK_EDGE & ~BM_SAIF_CTRL_LRCLK_POLARITY \
304 & ~BM_SAIF_CTRL_JUSTIFY & ~BM_SAIF_CTRL_DELAY;
305 scr = 0;
306
307 /* DAI mode */
308 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
309 case SND_SOC_DAIFMT_I2S:
310 /* data frame low 1clk before data */
311 scr |= BM_SAIF_CTRL_DELAY;
312 scr &= ~BM_SAIF_CTRL_LRCLK_POLARITY;
313 break;
314 case SND_SOC_DAIFMT_LEFT_J:
315 /* data frame high with data */
316 scr &= ~BM_SAIF_CTRL_DELAY;
317 scr &= ~BM_SAIF_CTRL_LRCLK_POLARITY;
318 scr &= ~BM_SAIF_CTRL_JUSTIFY;
319 break;
320 default:
321 return -EINVAL;
322 }
323
324 /* DAI clock inversion */
325 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
326 case SND_SOC_DAIFMT_IB_IF:
327 scr |= BM_SAIF_CTRL_BITCLK_EDGE;
328 scr |= BM_SAIF_CTRL_LRCLK_POLARITY;
329 break;
330 case SND_SOC_DAIFMT_IB_NF:
331 scr |= BM_SAIF_CTRL_BITCLK_EDGE;
332 scr &= ~BM_SAIF_CTRL_LRCLK_POLARITY;
333 break;
334 case SND_SOC_DAIFMT_NB_IF:
335 scr &= ~BM_SAIF_CTRL_BITCLK_EDGE;
336 scr |= BM_SAIF_CTRL_LRCLK_POLARITY;
337 break;
338 case SND_SOC_DAIFMT_NB_NF:
339 scr &= ~BM_SAIF_CTRL_BITCLK_EDGE;
340 scr &= ~BM_SAIF_CTRL_LRCLK_POLARITY;
341 break;
342 }
343
344 /*
345 * Note: We simply just support master mode since SAIF TX can only
346 * work as master.
Dong Aisheng76067542011-09-07 20:51:50 +0800347 * Here the master is relative to codec side.
348 * Saif internally could be slave when working on EXTMASTER mode.
349 * We just hide this to machine driver.
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800350 */
351 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
352 case SND_SOC_DAIFMT_CBS_CFS:
Dong Aisheng76067542011-09-07 20:51:50 +0800353 if (saif->id == saif->master_id)
354 scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
355 else
356 scr |= BM_SAIF_CTRL_SLAVE_MODE;
357
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800358 __raw_writel(scr | scr0, saif->base + SAIF_CTRL);
359 break;
360 default:
361 return -EINVAL;
362 }
363
364 return 0;
365}
366
367static int mxs_saif_startup(struct snd_pcm_substream *substream,
368 struct snd_soc_dai *cpu_dai)
369{
370 struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800371
372 /* clear error status to 0 for each re-open */
373 saif->fifo_underrun = 0;
374 saif->fifo_overrun = 0;
375
376 /* Clear Reset for normal operations */
377 __raw_writel(BM_SAIF_CTRL_SFTRST,
378 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
379
Dong Aishengbbe8ff52011-08-21 23:45:40 +0800380 /* clear clock gate */
381 __raw_writel(BM_SAIF_CTRL_CLKGATE,
382 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
383
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800384 return 0;
385}
386
387/*
388 * Should only be called when port is inactive.
389 * although can be called multiple times by upper layers.
390 */
391static int mxs_saif_hw_params(struct snd_pcm_substream *substream,
392 struct snd_pcm_hw_params *params,
393 struct snd_soc_dai *cpu_dai)
394{
395 struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
Dong Aishengc2e1d902012-07-20 17:20:24 +0800396 struct mxs_saif *master_saif;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800397 u32 scr, stat;
398 int ret;
399
Dong Aishengc2e1d902012-07-20 17:20:24 +0800400 master_saif = mxs_saif_get_master(saif);
401 if (!master_saif)
402 return -EINVAL;
403
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800404 /* mclk should already be set */
405 if (!saif->mclk && saif->mclk_in_use) {
406 dev_err(cpu_dai->dev, "set mclk first\n");
407 return -EINVAL;
408 }
409
410 stat = __raw_readl(saif->base + SAIF_STAT);
411 if (stat & BM_SAIF_STAT_BUSY) {
412 dev_err(cpu_dai->dev, "error: busy\n");
413 return -EBUSY;
414 }
415
416 /*
417 * Set saif clk based on sample rate.
418 * If mclk is used, we also set mclk, if not, saif->mclk is
419 * default 0, means not used.
420 */
421 ret = mxs_saif_set_clk(saif, saif->mclk, params_rate(params));
422 if (ret) {
423 dev_err(cpu_dai->dev, "unable to get proper clk\n");
424 return ret;
425 }
426
Dong Aishengc2e1d902012-07-20 17:20:24 +0800427 /* prepare clk in hw_param, enable in trigger */
428 clk_prepare(saif->clk);
Dong Aishengd0ba4c02012-07-20 17:20:25 +0800429 if (saif != master_saif) {
430 /*
431 * Set an initial clock rate for the saif internal logic to work
432 * properly. This is important when working in EXTMASTER mode
433 * that uses the other saif's BITCLK&LRCLK but it still needs a
434 * basic clock which should be fast enough for the internal
435 * logic.
436 */
437 clk_enable(saif->clk);
438 ret = clk_set_rate(saif->clk, 24000000);
439 clk_disable(saif->clk);
440 if (ret)
441 return ret;
442
Dong Aishengc2e1d902012-07-20 17:20:24 +0800443 clk_prepare(master_saif->clk);
Dong Aishengd0ba4c02012-07-20 17:20:25 +0800444 }
Dong Aishengc2e1d902012-07-20 17:20:24 +0800445
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800446 scr = __raw_readl(saif->base + SAIF_CTRL);
447
448 scr &= ~BM_SAIF_CTRL_WORD_LENGTH;
449 scr &= ~BM_SAIF_CTRL_BITCLK_48XFS_ENABLE;
450 switch (params_format(params)) {
451 case SNDRV_PCM_FORMAT_S16_LE:
452 scr |= BF_SAIF_CTRL_WORD_LENGTH(0);
453 break;
454 case SNDRV_PCM_FORMAT_S20_3LE:
455 scr |= BF_SAIF_CTRL_WORD_LENGTH(4);
456 scr |= BM_SAIF_CTRL_BITCLK_48XFS_ENABLE;
457 break;
458 case SNDRV_PCM_FORMAT_S24_LE:
459 scr |= BF_SAIF_CTRL_WORD_LENGTH(8);
460 scr |= BM_SAIF_CTRL_BITCLK_48XFS_ENABLE;
461 break;
462 default:
463 return -EINVAL;
464 }
465
466 /* Tx/Rx config */
467 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
468 /* enable TX mode */
469 scr &= ~BM_SAIF_CTRL_READ_MODE;
470 } else {
471 /* enable RX mode */
472 scr |= BM_SAIF_CTRL_READ_MODE;
473 }
474
475 __raw_writel(scr, saif->base + SAIF_CTRL);
476 return 0;
477}
478
479static int mxs_saif_prepare(struct snd_pcm_substream *substream,
480 struct snd_soc_dai *cpu_dai)
481{
482 struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
483
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800484 /* enable FIFO error irqs */
485 __raw_writel(BM_SAIF_CTRL_FIFO_ERROR_IRQ_EN,
486 saif->base + SAIF_CTRL + MXS_SET_ADDR);
487
488 return 0;
489}
490
491static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
492 struct snd_soc_dai *cpu_dai)
493{
494 struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
Dong Aisheng76067542011-09-07 20:51:50 +0800495 struct mxs_saif *master_saif;
496 u32 delay;
Markus Pargmann863ebdd2013-10-11 12:11:04 +0200497 int ret;
Dong Aisheng76067542011-09-07 20:51:50 +0800498
499 master_saif = mxs_saif_get_master(saif);
500 if (!master_saif)
501 return -EINVAL;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800502
503 switch (cmd) {
504 case SNDRV_PCM_TRIGGER_START:
505 case SNDRV_PCM_TRIGGER_RESUME:
506 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Markus Pargmann88cf6322013-10-11 12:11:03 +0200507 if (saif->state == MXS_SAIF_STATE_RUNNING)
508 return 0;
509
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800510 dev_dbg(cpu_dai->dev, "start\n");
511
Markus Pargmann863ebdd2013-10-11 12:11:04 +0200512 ret = clk_enable(master_saif->clk);
513 if (ret) {
514 dev_err(saif->dev, "Failed to enable master clock\n");
515 return ret;
516 }
Dong Aisheng76067542011-09-07 20:51:50 +0800517
518 /*
Matthew Garrett05004cb2013-12-18 13:50:10 +0000519 * If the saif's master is not itself, we also need to enable
Dong Aisheng76067542011-09-07 20:51:50 +0800520 * itself clk for its internal basic logic to work.
521 */
522 if (saif != master_saif) {
Markus Pargmann863ebdd2013-10-11 12:11:04 +0200523 ret = clk_enable(saif->clk);
524 if (ret) {
525 dev_err(saif->dev, "Failed to enable master clock\n");
526 clk_disable(master_saif->clk);
527 return ret;
528 }
529
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800530 __raw_writel(BM_SAIF_CTRL_RUN,
531 saif->base + SAIF_CTRL + MXS_SET_ADDR);
Dong Aisheng76067542011-09-07 20:51:50 +0800532 }
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800533
Markus Pargmann863ebdd2013-10-11 12:11:04 +0200534 if (!master_saif->mclk_in_use)
535 __raw_writel(BM_SAIF_CTRL_RUN,
536 master_saif->base + SAIF_CTRL + MXS_SET_ADDR);
537
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800538 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
539 /*
Fabio Estevamf55f1472012-11-01 15:57:11 -0200540 * write data to saif data register to trigger
541 * the transfer.
542 * For 24-bit format the 32-bit FIFO register stores
543 * only one channel, so we need to write twice.
544 * This is also safe for the other non 24-bit formats.
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800545 */
546 __raw_writel(0, saif->base + SAIF_DATA);
Fabio Estevamf55f1472012-11-01 15:57:11 -0200547 __raw_writel(0, saif->base + SAIF_DATA);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800548 } else {
549 /*
Fabio Estevamf55f1472012-11-01 15:57:11 -0200550 * read data from saif data register to trigger
551 * the receive.
552 * For 24-bit format the 32-bit FIFO register stores
553 * only one channel, so we need to read twice.
554 * This is also safe for the other non 24-bit formats.
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800555 */
556 __raw_readl(saif->base + SAIF_DATA);
Fabio Estevamf55f1472012-11-01 15:57:11 -0200557 __raw_readl(saif->base + SAIF_DATA);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800558 }
559
Dong Aisheng76067542011-09-07 20:51:50 +0800560 master_saif->ongoing = 1;
Markus Pargmann88cf6322013-10-11 12:11:03 +0200561 saif->state = MXS_SAIF_STATE_RUNNING;
Dong Aisheng76067542011-09-07 20:51:50 +0800562
563 dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800564 __raw_readl(saif->base + SAIF_CTRL),
565 __raw_readl(saif->base + SAIF_STAT));
566
Dong Aisheng76067542011-09-07 20:51:50 +0800567 dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
568 __raw_readl(master_saif->base + SAIF_CTRL),
569 __raw_readl(master_saif->base + SAIF_STAT));
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800570 break;
571 case SNDRV_PCM_TRIGGER_SUSPEND:
572 case SNDRV_PCM_TRIGGER_STOP:
573 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Markus Pargmann88cf6322013-10-11 12:11:03 +0200574 if (saif->state == MXS_SAIF_STATE_STOPPED)
575 return 0;
576
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800577 dev_dbg(cpu_dai->dev, "stop\n");
578
Dong Aisheng76067542011-09-07 20:51:50 +0800579 /* wait a while for the current sample to complete */
580 delay = USEC_PER_SEC / master_saif->cur_rate;
581
582 if (!master_saif->mclk_in_use) {
583 __raw_writel(BM_SAIF_CTRL_RUN,
584 master_saif->base + SAIF_CTRL + MXS_CLR_ADDR);
585 udelay(delay);
586 }
587 clk_disable(master_saif->clk);
588
589 if (saif != master_saif) {
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800590 __raw_writel(BM_SAIF_CTRL_RUN,
591 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
Dong Aisheng76067542011-09-07 20:51:50 +0800592 udelay(delay);
593 clk_disable(saif->clk);
594 }
595
596 master_saif->ongoing = 0;
Markus Pargmann88cf6322013-10-11 12:11:03 +0200597 saif->state = MXS_SAIF_STATE_STOPPED;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800598
599 break;
600 default:
601 return -EINVAL;
602 }
603
604 return 0;
605}
606
607#define MXS_SAIF_RATES SNDRV_PCM_RATE_8000_192000
608#define MXS_SAIF_FORMATS \
609 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
610 SNDRV_PCM_FMTBIT_S24_LE)
611
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100612static const struct snd_soc_dai_ops mxs_saif_dai_ops = {
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800613 .startup = mxs_saif_startup,
614 .trigger = mxs_saif_trigger,
615 .prepare = mxs_saif_prepare,
616 .hw_params = mxs_saif_hw_params,
617 .set_sysclk = mxs_saif_set_dai_sysclk,
618 .set_fmt = mxs_saif_set_dai_fmt,
619};
620
621static int mxs_saif_dai_probe(struct snd_soc_dai *dai)
622{
623 struct mxs_saif *saif = dev_get_drvdata(dai->dev);
624
625 snd_soc_dai_set_drvdata(dai, saif);
626
627 return 0;
628}
629
630static struct snd_soc_dai_driver mxs_saif_dai = {
631 .name = "mxs-saif",
632 .probe = mxs_saif_dai_probe,
633 .playback = {
634 .channels_min = 2,
635 .channels_max = 2,
636 .rates = MXS_SAIF_RATES,
637 .formats = MXS_SAIF_FORMATS,
638 },
639 .capture = {
640 .channels_min = 2,
641 .channels_max = 2,
642 .rates = MXS_SAIF_RATES,
643 .formats = MXS_SAIF_FORMATS,
644 },
645 .ops = &mxs_saif_dai_ops,
646};
647
Kuninori Morimoto026240b2013-03-21 03:33:02 -0700648static const struct snd_soc_component_driver mxs_saif_component = {
649 .name = "mxs-saif",
650};
651
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800652static irqreturn_t mxs_saif_irq(int irq, void *dev_id)
653{
654 struct mxs_saif *saif = dev_id;
655 unsigned int stat;
656
657 stat = __raw_readl(saif->base + SAIF_STAT);
658 if (!(stat & (BM_SAIF_STAT_FIFO_UNDERFLOW_IRQ |
659 BM_SAIF_STAT_FIFO_OVERFLOW_IRQ)))
660 return IRQ_NONE;
661
662 if (stat & BM_SAIF_STAT_FIFO_UNDERFLOW_IRQ) {
663 dev_dbg(saif->dev, "underrun!!! %d\n", ++saif->fifo_underrun);
664 __raw_writel(BM_SAIF_STAT_FIFO_UNDERFLOW_IRQ,
665 saif->base + SAIF_STAT + MXS_CLR_ADDR);
666 }
667
668 if (stat & BM_SAIF_STAT_FIFO_OVERFLOW_IRQ) {
669 dev_dbg(saif->dev, "overrun!!! %d\n", ++saif->fifo_overrun);
670 __raw_writel(BM_SAIF_STAT_FIFO_OVERFLOW_IRQ,
671 saif->base + SAIF_STAT + MXS_CLR_ADDR);
672 }
673
674 dev_dbg(saif->dev, "SAIF_CTRL %x SAIF_STAT %x\n",
675 __raw_readl(saif->base + SAIF_CTRL),
676 __raw_readl(saif->base + SAIF_STAT));
677
678 return IRQ_HANDLED;
679}
680
Shawn Guo7c9e6152013-07-01 16:16:10 +0800681static int mxs_saif_mclk_init(struct platform_device *pdev)
682{
683 struct mxs_saif *saif = platform_get_drvdata(pdev);
684 struct device_node *np = pdev->dev.of_node;
685 struct clk *clk;
686 int ret;
687
688 clk = clk_register_divider(&pdev->dev, "mxs_saif_mclk",
689 __clk_get_name(saif->clk), 0,
690 saif->base + SAIF_CTRL,
691 BP_SAIF_CTRL_BITCLK_MULT_RATE, 3,
692 0, NULL);
693 if (IS_ERR(clk)) {
694 ret = PTR_ERR(clk);
695 if (ret == -EEXIST)
696 return 0;
697 dev_err(&pdev->dev, "failed to register mclk: %d\n", ret);
698 return PTR_ERR(clk);
699 }
700
701 ret = of_clk_add_provider(np, of_clk_src_simple_get, clk);
702 if (ret)
703 return ret;
704
705 return 0;
706}
707
Bill Pembertonfd582732012-12-07 09:26:27 -0500708static int mxs_saif_probe(struct platform_device *pdev)
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800709{
Shawn Guo08641c72012-05-11 22:24:17 +0800710 struct device_node *np = pdev->dev.of_node;
Shawn Guo62477ad2013-05-13 13:30:56 +0800711 struct resource *iores;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800712 struct mxs_saif *saif;
713 int ret = 0;
Fabio Estevam4498a3c2012-11-14 18:28:58 -0200714 struct device_node *master;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800715
Fabio Estevam4498a3c2012-11-14 18:28:58 -0200716 if (!np)
Julia Lawall0bb98ba2011-08-21 13:18:45 +0200717 return -EINVAL;
718
Julia Lawall830eb872012-02-10 09:17:01 +0100719 saif = devm_kzalloc(&pdev->dev, sizeof(*saif), GFP_KERNEL);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800720 if (!saif)
721 return -ENOMEM;
722
Fabio Estevam324a7fb2013-01-08 10:45:04 -0200723 ret = of_alias_get_id(np, "saif");
724 if (ret < 0)
725 return ret;
726 else
727 saif->id = ret;
728
Fabio Estevam4498a3c2012-11-14 18:28:58 -0200729 /*
730 * If there is no "fsl,saif-master" phandle, it's a saif
731 * master. Otherwise, it's a slave and its phandle points
732 * to the master.
733 */
734 master = of_parse_phandle(np, "fsl,saif-master", 0);
735 if (!master) {
736 saif->master_id = saif->id;
Dong Aisheng77882582011-11-22 23:52:21 +0800737 } else {
Fabio Estevam324a7fb2013-01-08 10:45:04 -0200738 ret = of_alias_get_id(master, "saif");
739 if (ret < 0)
740 return ret;
741 else
742 saif->master_id = ret;
Dong Aisheng76067542011-09-07 20:51:50 +0800743 }
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800744
Fabio Estevam324a7fb2013-01-08 10:45:04 -0200745 if (saif->master_id >= ARRAY_SIZE(mxs_saif)) {
Shawn Guo08641c72012-05-11 22:24:17 +0800746 dev_err(&pdev->dev, "get wrong master id\n");
747 return -EINVAL;
748 }
749
750 mxs_saif[saif->id] = saif;
751
Fabio Estevam730963f2012-08-07 01:29:43 -0300752 saif->clk = devm_clk_get(&pdev->dev, NULL);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800753 if (IS_ERR(saif->clk)) {
754 ret = PTR_ERR(saif->clk);
755 dev_err(&pdev->dev, "Cannot get the clock: %d\n",
756 ret);
Julia Lawall830eb872012-02-10 09:17:01 +0100757 return ret;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800758 }
759
Julia Lawall226d0f22011-10-18 17:06:39 +0200760 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800761
Thierry Redingb25b5aa2013-01-21 11:09:26 +0100762 saif->base = devm_ioremap_resource(&pdev->dev, iores);
763 if (IS_ERR(saif->base))
764 return PTR_ERR(saif->base);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800765
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800766 saif->irq = platform_get_irq(pdev, 0);
767 if (saif->irq < 0) {
768 ret = saif->irq;
769 dev_err(&pdev->dev, "failed to get irq resource: %d\n",
770 ret);
Fabio Estevam730963f2012-08-07 01:29:43 -0300771 return ret;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800772 }
773
774 saif->dev = &pdev->dev;
Julia Lawall830eb872012-02-10 09:17:01 +0100775 ret = devm_request_irq(&pdev->dev, saif->irq, mxs_saif_irq, 0,
776 "mxs-saif", saif);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800777 if (ret) {
778 dev_err(&pdev->dev, "failed to request irq\n");
Fabio Estevam730963f2012-08-07 01:29:43 -0300779 return ret;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800780 }
781
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800782 platform_set_drvdata(pdev, saif);
783
Shawn Guo7c9e6152013-07-01 16:16:10 +0800784 /* We only support saif0 being tx and clock master */
785 if (saif->id == 0) {
786 ret = mxs_saif_mclk_init(pdev);
787 if (ret)
788 dev_warn(&pdev->dev, "failed to init clocks\n");
789 }
790
Sachin Kamatfcd70eb2013-09-17 10:20:09 +0530791 ret = devm_snd_soc_register_component(&pdev->dev, &mxs_saif_component,
792 &mxs_saif_dai, 1);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800793 if (ret) {
794 dev_err(&pdev->dev, "register DAI failed\n");
Fabio Estevam730963f2012-08-07 01:29:43 -0300795 return ret;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800796 }
797
Shawn Guo4da3fe72012-05-11 22:24:16 +0800798 ret = mxs_pcm_platform_register(&pdev->dev);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800799 if (ret) {
Shawn Guo4da3fe72012-05-11 22:24:16 +0800800 dev_err(&pdev->dev, "register PCM failed: %d\n", ret);
Sachin Kamatfcd70eb2013-09-17 10:20:09 +0530801 return ret;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800802 }
803
804 return 0;
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800805}
806
Shawn Guo08641c72012-05-11 22:24:17 +0800807static const struct of_device_id mxs_saif_dt_ids[] = {
808 { .compatible = "fsl,imx28-saif", },
809 { /* sentinel */ }
810};
811MODULE_DEVICE_TABLE(of, mxs_saif_dt_ids);
812
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800813static struct platform_driver mxs_saif_driver = {
814 .probe = mxs_saif_probe,
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800815
816 .driver = {
817 .name = "mxs-saif",
818 .owner = THIS_MODULE,
Shawn Guo08641c72012-05-11 22:24:17 +0800819 .of_match_table = mxs_saif_dt_ids,
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800820 },
821};
822
Axel Lin85aa0962011-11-24 14:21:29 +0800823module_platform_driver(mxs_saif_driver);
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800824
Dong Aisheng2a24f2c2011-07-21 12:36:56 +0800825MODULE_AUTHOR("Freescale Semiconductor, Inc.");
826MODULE_DESCRIPTION("MXS ASoC SAIF driver");
827MODULE_LICENSE("GPL");
Fabio Estevam9f4c3f12012-10-31 01:20:05 -0200828MODULE_ALIAS("platform:mxs-saif");