ASoC: fsl_ssi: Add suspend/resume support
[linux-2.6-block.git] / sound / soc / fsl / fsl_ssi.c
CommitLineData
17467f23
TT
1/*
2 * Freescale SSI ALSA SoC Digital Audio Interface (DAI) driver
3 *
4 * Author: Timur Tabi <timur@freescale.com>
5 *
f0fba2ad
LG
6 * Copyright 2007-2010 Freescale Semiconductor, Inc.
7 *
8 * This file is licensed under the terms of the GNU General Public License
9 * version 2. This program is licensed "as is" without any warranty of any
10 * kind, whether express or implied.
de623ece
MP
11 *
12 *
13 * Some notes why imx-pcm-fiq is used instead of DMA on some boards:
14 *
15 * The i.MX SSI core has some nasty limitations in AC97 mode. While most
16 * sane processor vendors have a FIFO per AC97 slot, the i.MX has only
17 * one FIFO which combines all valid receive slots. We cannot even select
18 * which slots we want to receive. The WM9712 with which this driver
19 * was developed with always sends GPIO status data in slot 12 which
20 * we receive in our (PCM-) data stream. The only chance we have is to
21 * manually skip this data in the FIQ handler. With sampling rates different
22 * from 48000Hz not every frame has valid receive data, so the ratio
23 * between pcm data and GPIO status data changes. Our FIQ handler is not
24 * able to handle this, hence this driver only works with 48000Hz sampling
25 * rate.
26 * Reading and writing AC97 registers is another challenge. The core
27 * provides us status bits when the read register is updated with *another*
28 * value. When we read the same register two times (and the register still
29 * contains the same value) these status bits are not set. We work
30 * around this by not polling these bits but only wait a fixed delay.
17467f23
TT
31 */
32
33#include <linux/init.h>
dfa1a107 34#include <linux/io.h>
17467f23
TT
35#include <linux/module.h>
36#include <linux/interrupt.h>
95cd98f9 37#include <linux/clk.h>
17467f23
TT
38#include <linux/device.h>
39#include <linux/delay.h>
5a0e3ad6 40#include <linux/slab.h>
aafa85e7 41#include <linux/spinlock.h>
dfa1a107
SG
42#include <linux/of_address.h>
43#include <linux/of_irq.h>
f0fba2ad 44#include <linux/of_platform.h>
17467f23 45
17467f23
TT
46#include <sound/core.h>
47#include <sound/pcm.h>
48#include <sound/pcm_params.h>
49#include <sound/initval.h>
50#include <sound/soc.h>
a8909c9b 51#include <sound/dmaengine_pcm.h>
17467f23 52
17467f23 53#include "fsl_ssi.h"
09ce1111 54#include "imx-pcm.h"
17467f23 55
dfa1a107
SG
56#ifdef PPC
57#define read_ssi(addr) in_be32(addr)
58#define write_ssi(val, addr) out_be32(addr, val)
59#define write_ssi_mask(addr, clear, set) clrsetbits_be32(addr, clear, set)
0a9eaa39 60#else
dfa1a107
SG
61#define read_ssi(addr) readl(addr)
62#define write_ssi(val, addr) writel(val, addr)
63/*
64 * FIXME: Proper locking should be added at write_ssi_mask caller level
65 * to ensure this register read/modify/write sequence is race free.
66 */
67static inline void write_ssi_mask(u32 __iomem *addr, u32 clear, u32 set)
68{
69 u32 val = readl(addr);
70 val = (val & ~clear) | set;
71 writel(val, addr);
72}
73#endif
74
17467f23
TT
75/**
76 * FSLSSI_I2S_RATES: sample rates supported by the I2S
77 *
78 * This driver currently only supports the SSI running in I2S slave mode,
79 * which means the codec determines the sample rate. Therefore, we tell
80 * ALSA that we support all rates and let the codec driver decide what rates
81 * are really supported.
82 */
24710c97 83#define FSLSSI_I2S_RATES SNDRV_PCM_RATE_CONTINUOUS
17467f23
TT
84
85/**
86 * FSLSSI_I2S_FORMATS: audio formats supported by the SSI
87 *
88 * This driver currently only supports the SSI running in I2S slave mode.
89 *
90 * The SSI has a limitation in that the samples must be in the same byte
91 * order as the host CPU. This is because when multiple bytes are written
92 * to the STX register, the bytes and bits must be written in the same
93 * order. The STX is a shift register, so all the bits need to be aligned
94 * (bit-endianness must match byte-endianness). Processors typically write
95 * the bits within a byte in the same order that the bytes of a word are
96 * written in. So if the host CPU is big-endian, then only big-endian
97 * samples will be written to STX properly.
98 */
99#ifdef __BIG_ENDIAN
100#define FSLSSI_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_BE | \
101 SNDRV_PCM_FMTBIT_S18_3BE | SNDRV_PCM_FMTBIT_S20_3BE | \
102 SNDRV_PCM_FMTBIT_S24_3BE | SNDRV_PCM_FMTBIT_S24_BE)
103#else
104#define FSLSSI_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \
105 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S20_3LE | \
106 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_LE)
107#endif
108
9368acc4
MP
109#define FSLSSI_SIER_DBG_RX_FLAGS (CCSR_SSI_SIER_RFF0_EN | \
110 CCSR_SSI_SIER_RLS_EN | CCSR_SSI_SIER_RFS_EN | \
111 CCSR_SSI_SIER_ROE0_EN | CCSR_SSI_SIER_RFRC_EN)
112#define FSLSSI_SIER_DBG_TX_FLAGS (CCSR_SSI_SIER_TFE0_EN | \
113 CCSR_SSI_SIER_TLS_EN | CCSR_SSI_SIER_TFS_EN | \
114 CCSR_SSI_SIER_TUE0_EN | CCSR_SSI_SIER_TFRC_EN)
c1953bfe
MP
115
116enum fsl_ssi_type {
117 FSL_SSI_MCP8610,
118 FSL_SSI_MX21,
0888efd1 119 FSL_SSI_MX35,
c1953bfe
MP
120 FSL_SSI_MX51,
121};
122
4e6ec0d9
MP
123struct fsl_ssi_reg_val {
124 u32 sier;
125 u32 srcr;
126 u32 stcr;
127 u32 scr;
128};
129
130struct fsl_ssi_rxtx_reg_val {
131 struct fsl_ssi_reg_val rx;
132 struct fsl_ssi_reg_val tx;
133};
d5a908b2 134
17467f23
TT
135/**
136 * fsl_ssi_private: per-SSI private data
137 *
17467f23
TT
138 * @ssi: pointer to the SSI's registers
139 * @ssi_phys: physical address of the SSI registers
140 * @irq: IRQ of this SSI
17467f23
TT
141 * @playback: the number of playback streams opened
142 * @capture: the number of capture streams opened
143 * @cpu_dai: the CPU DAI for this device
144 * @dev_attr: the sysfs device attribute structure
145 * @stats: SSI statistics
146 */
147struct fsl_ssi_private {
17467f23
TT
148 struct ccsr_ssi __iomem *ssi;
149 dma_addr_t ssi_phys;
150 unsigned int irq;
8e9d8690 151 unsigned int fifo_depth;
f0fba2ad 152 struct snd_soc_dai_driver cpu_dai_drv;
f0fba2ad 153 struct platform_device *pdev;
171d683d 154 unsigned int dai_fmt;
17467f23 155
0888efd1 156 enum fsl_ssi_type hw_type;
de623ece 157 bool use_dma;
aafa85e7 158 bool baudclk_locked;
0da9e55e 159 bool use_dual_fifo;
2924a998 160 u8 i2s_mode;
aafa85e7
NC
161 spinlock_t baudclk_lock;
162 struct clk *baudclk;
95cd98f9 163 struct clk *clk;
a8909c9b
LPC
164 struct snd_dmaengine_dai_dma_data dma_params_tx;
165 struct snd_dmaengine_dai_dma_data dma_params_rx;
de623ece 166 struct imx_pcm_fiq_params fiq_params;
4e6ec0d9
MP
167 /* Register values for rx/tx configuration */
168 struct fsl_ssi_rxtx_reg_val rxtx_reg_val;
09ce1111 169
f138e621 170 struct fsl_ssi_dbg dbg_stats;
17467f23
TT
171};
172
c1953bfe
MP
173static const struct of_device_id fsl_ssi_ids[] = {
174 { .compatible = "fsl,mpc8610-ssi", .data = (void *) FSL_SSI_MCP8610},
175 { .compatible = "fsl,imx51-ssi", .data = (void *) FSL_SSI_MX51},
0888efd1 176 { .compatible = "fsl,imx35-ssi", .data = (void *) FSL_SSI_MX35},
c1953bfe
MP
177 { .compatible = "fsl,imx21-ssi", .data = (void *) FSL_SSI_MX21},
178 {}
179};
180MODULE_DEVICE_TABLE(of, fsl_ssi_ids);
181
171d683d
MP
182static bool fsl_ssi_is_ac97(struct fsl_ssi_private *ssi_private)
183{
184 return !!(ssi_private->dai_fmt & SND_SOC_DAIFMT_AC97);
185}
186
187static bool fsl_ssi_on_imx(struct fsl_ssi_private *ssi_private)
188{
189 switch (ssi_private->hw_type) {
190 case FSL_SSI_MX21:
191 case FSL_SSI_MX35:
192 case FSL_SSI_MX51:
193 return true;
194 case FSL_SSI_MCP8610:
195 return false;
196 }
197
198 return false;
199}
200
201/*
202 * imx51 and later SoCs have a slightly different IP that allows the
203 * SSI configuration while the SSI unit is running.
204 *
205 * More important, it is necessary on those SoCs to configure the
206 * sperate TX/RX DMA bits just before starting the stream
207 * (fsl_ssi_trigger). The SDMA unit has to be configured before fsl_ssi
208 * sends any DMA requests to the SDMA unit, otherwise it is not defined
209 * how the SDMA unit handles the DMA request.
210 *
211 * SDMA units are present on devices starting at imx35 but the imx35
212 * reference manual states that the DMA bits should not be changed
213 * while the SSI unit is running (SSIEN). So we support the necessary
214 * online configuration of fsl-ssi starting at imx51.
215 */
216static bool fsl_ssi_offline_config(struct fsl_ssi_private *ssi_private)
217{
218 switch (ssi_private->hw_type) {
219 case FSL_SSI_MCP8610:
220 case FSL_SSI_MX21:
221 case FSL_SSI_MX35:
222 return true;
223 case FSL_SSI_MX51:
224 return false;
225 }
226
227 return true;
228}
229
17467f23
TT
230/**
231 * fsl_ssi_isr: SSI interrupt handler
232 *
233 * Although it's possible to use the interrupt handler to send and receive
234 * data to/from the SSI, we use the DMA instead. Programming is more
235 * complicated, but the performance is much better.
236 *
237 * This interrupt handler is used only to gather statistics.
238 *
239 * @irq: IRQ of the SSI device
240 * @dev_id: pointer to the ssi_private structure for this SSI device
241 */
242static irqreturn_t fsl_ssi_isr(int irq, void *dev_id)
243{
244 struct fsl_ssi_private *ssi_private = dev_id;
245 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
17467f23 246 __be32 sisr;
0888efd1
MP
247 __be32 sisr2;
248 __be32 sisr_write_mask = 0;
249
250 switch (ssi_private->hw_type) {
251 case FSL_SSI_MX21:
252 sisr_write_mask = 0;
253 break;
254
255 case FSL_SSI_MCP8610:
256 case FSL_SSI_MX35:
257 sisr_write_mask = CCSR_SSI_SISR_RFRC | CCSR_SSI_SISR_TFRC |
258 CCSR_SSI_SISR_ROE0 | CCSR_SSI_SISR_ROE1 |
259 CCSR_SSI_SISR_TUE0 | CCSR_SSI_SISR_TUE1;
260 break;
261
262 case FSL_SSI_MX51:
263 sisr_write_mask = CCSR_SSI_SISR_ROE0 | CCSR_SSI_SISR_ROE1 |
264 CCSR_SSI_SISR_TUE0 | CCSR_SSI_SISR_TUE1;
265 break;
266 }
17467f23
TT
267
268 /* We got an interrupt, so read the status register to see what we
269 were interrupted for. We mask it with the Interrupt Enable register
270 so that we only check for events that we're interested in.
271 */
f138e621 272 sisr = read_ssi(&ssi->sisr);
17467f23 273
0888efd1 274 sisr2 = sisr & sisr_write_mask;
17467f23
TT
275 /* Clear the bits that we set */
276 if (sisr2)
dfa1a107 277 write_ssi(sisr2, &ssi->sisr);
17467f23 278
f138e621 279 fsl_ssi_dbg_isr(&ssi_private->dbg_stats, sisr);
9368acc4 280
f138e621 281 return IRQ_HANDLED;
9368acc4
MP
282}
283
4e6ec0d9
MP
284/*
285 * Enable/Disable all rx/tx config flags at once.
286 */
287static void fsl_ssi_rxtx_config(struct fsl_ssi_private *ssi_private,
288 bool enable)
289{
290 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
291 struct fsl_ssi_rxtx_reg_val *vals = &ssi_private->rxtx_reg_val;
292
293 if (enable) {
294 write_ssi_mask(&ssi->sier, 0, vals->rx.sier | vals->tx.sier);
295 write_ssi_mask(&ssi->srcr, 0, vals->rx.srcr | vals->tx.srcr);
296 write_ssi_mask(&ssi->stcr, 0, vals->rx.stcr | vals->tx.stcr);
297 } else {
298 write_ssi_mask(&ssi->srcr, vals->rx.srcr | vals->tx.srcr, 0);
299 write_ssi_mask(&ssi->stcr, vals->rx.stcr | vals->tx.stcr, 0);
300 write_ssi_mask(&ssi->sier, vals->rx.sier | vals->tx.sier, 0);
301 }
302}
303
65c961cc
MP
304/*
305 * Calculate the bits that have to be disabled for the current stream that is
306 * getting disabled. This keeps the bits enabled that are necessary for the
307 * second stream to work if 'stream_active' is true.
308 *
309 * Detailed calculation:
310 * These are the values that need to be active after disabling. For non-active
311 * second stream, this is 0:
312 * vals_stream * !!stream_active
313 *
314 * The following computes the overall differences between the setup for the
315 * to-disable stream and the active stream, a simple XOR:
316 * vals_disable ^ (vals_stream * !!(stream_active))
317 *
318 * The full expression adds a mask on all values we care about
319 */
320#define fsl_ssi_disable_val(vals_disable, vals_stream, stream_active) \
321 ((vals_disable) & \
322 ((vals_disable) ^ ((vals_stream) * (u32)!!(stream_active))))
323
4e6ec0d9
MP
324/*
325 * Enable/Disable a ssi configuration. You have to pass either
326 * ssi_private->rxtx_reg_val.rx or tx as vals parameter.
327 */
328static void fsl_ssi_config(struct fsl_ssi_private *ssi_private, bool enable,
329 struct fsl_ssi_reg_val *vals)
330{
331 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
332 struct fsl_ssi_reg_val *avals;
333 u32 scr_val = read_ssi(&ssi->scr);
334 int nr_active_streams = !!(scr_val & CCSR_SSI_SCR_TE) +
335 !!(scr_val & CCSR_SSI_SCR_RE);
65c961cc
MP
336 int keep_active;
337
338 if (nr_active_streams - 1 > 0)
339 keep_active = 1;
340 else
341 keep_active = 0;
4e6ec0d9
MP
342
343 /* Find the other direction values rx or tx which we do not want to
344 * modify */
345 if (&ssi_private->rxtx_reg_val.rx == vals)
346 avals = &ssi_private->rxtx_reg_val.tx;
347 else
348 avals = &ssi_private->rxtx_reg_val.rx;
349
350 /* If vals should be disabled, start with disabling the unit */
351 if (!enable) {
65c961cc
MP
352 u32 scr = fsl_ssi_disable_val(vals->scr, avals->scr,
353 keep_active);
4e6ec0d9
MP
354 write_ssi_mask(&ssi->scr, scr, 0);
355 }
356
357 /*
358 * We are running on a SoC which does not support online SSI
359 * reconfiguration, so we have to enable all necessary flags at once
360 * even if we do not use them later (capture and playback configuration)
361 */
171d683d 362 if (fsl_ssi_offline_config(ssi_private)) {
4e6ec0d9 363 if ((enable && !nr_active_streams) ||
65c961cc 364 (!enable && !keep_active))
4e6ec0d9
MP
365 fsl_ssi_rxtx_config(ssi_private, enable);
366
367 goto config_done;
368 }
369
370 /*
371 * Configure single direction units while the SSI unit is running
372 * (online configuration)
373 */
374 if (enable) {
375 write_ssi_mask(&ssi->sier, 0, vals->sier);
376 write_ssi_mask(&ssi->srcr, 0, vals->srcr);
377 write_ssi_mask(&ssi->stcr, 0, vals->stcr);
378 } else {
379 u32 sier;
380 u32 srcr;
381 u32 stcr;
382
383 /*
384 * Disabling the necessary flags for one of rx/tx while the
385 * other stream is active is a little bit more difficult. We
386 * have to disable only those flags that differ between both
387 * streams (rx XOR tx) and that are set in the stream that is
388 * disabled now. Otherwise we could alter flags of the other
389 * stream
390 */
391
392 /* These assignments are simply vals without bits set in avals*/
65c961cc
MP
393 sier = fsl_ssi_disable_val(vals->sier, avals->sier,
394 keep_active);
395 srcr = fsl_ssi_disable_val(vals->srcr, avals->srcr,
396 keep_active);
397 stcr = fsl_ssi_disable_val(vals->stcr, avals->stcr,
398 keep_active);
4e6ec0d9
MP
399
400 write_ssi_mask(&ssi->srcr, srcr, 0);
401 write_ssi_mask(&ssi->stcr, stcr, 0);
402 write_ssi_mask(&ssi->sier, sier, 0);
403 }
404
405config_done:
406 /* Enabling of subunits is done after configuration */
407 if (enable)
408 write_ssi_mask(&ssi->scr, 0, vals->scr);
409}
410
411
412static void fsl_ssi_rx_config(struct fsl_ssi_private *ssi_private, bool enable)
413{
414 fsl_ssi_config(ssi_private, enable, &ssi_private->rxtx_reg_val.rx);
415}
416
417static void fsl_ssi_tx_config(struct fsl_ssi_private *ssi_private, bool enable)
418{
419 fsl_ssi_config(ssi_private, enable, &ssi_private->rxtx_reg_val.tx);
420}
421
6de83879
MP
422/*
423 * Setup rx/tx register values used to enable/disable the streams. These will
424 * be used later in fsl_ssi_config to setup the streams without the need to
425 * check for all different SSI modes.
426 */
427static void fsl_ssi_setup_reg_vals(struct fsl_ssi_private *ssi_private)
428{
429 struct fsl_ssi_rxtx_reg_val *reg = &ssi_private->rxtx_reg_val;
430
431 reg->rx.sier = CCSR_SSI_SIER_RFF0_EN;
432 reg->rx.srcr = CCSR_SSI_SRCR_RFEN0;
433 reg->rx.scr = 0;
434 reg->tx.sier = CCSR_SSI_SIER_TFE0_EN;
435 reg->tx.stcr = CCSR_SSI_STCR_TFEN0;
436 reg->tx.scr = 0;
437
171d683d 438 if (!fsl_ssi_is_ac97(ssi_private)) {
6de83879
MP
439 reg->rx.scr = CCSR_SSI_SCR_SSIEN | CCSR_SSI_SCR_RE;
440 reg->rx.sier |= CCSR_SSI_SIER_RFF0_EN;
441 reg->tx.scr = CCSR_SSI_SCR_SSIEN | CCSR_SSI_SCR_TE;
442 reg->tx.sier |= CCSR_SSI_SIER_TFE0_EN;
443 }
444
445 if (ssi_private->use_dma) {
446 reg->rx.sier |= CCSR_SSI_SIER_RDMAE;
447 reg->tx.sier |= CCSR_SSI_SIER_TDMAE;
448 } else {
449 reg->rx.sier |= CCSR_SSI_SIER_RIE;
450 reg->tx.sier |= CCSR_SSI_SIER_TIE;
451 }
452
453 reg->rx.sier |= FSLSSI_SIER_DBG_RX_FLAGS;
454 reg->tx.sier |= FSLSSI_SIER_DBG_TX_FLAGS;
455}
456
d8764646
MP
457static void fsl_ssi_setup_ac97(struct fsl_ssi_private *ssi_private)
458{
459 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
460
461 /*
462 * Setup the clock control register
463 */
464 write_ssi(CCSR_SSI_SxCCR_WL(17) | CCSR_SSI_SxCCR_DC(13),
465 &ssi->stccr);
466 write_ssi(CCSR_SSI_SxCCR_WL(17) | CCSR_SSI_SxCCR_DC(13),
467 &ssi->srccr);
468
469 /*
470 * Enable AC97 mode and startup the SSI
471 */
472 write_ssi(CCSR_SSI_SACNT_AC97EN | CCSR_SSI_SACNT_FV,
473 &ssi->sacnt);
474 write_ssi(0xff, &ssi->saccdis);
475 write_ssi(0x300, &ssi->saccen);
476
477 /*
478 * Enable SSI, Transmit and Receive. AC97 has to communicate with the
479 * codec before a stream is started.
480 */
481 write_ssi_mask(&ssi->scr, 0, CCSR_SSI_SCR_SSIEN |
482 CCSR_SSI_SCR_TE | CCSR_SSI_SCR_RE);
483
484 write_ssi(CCSR_SSI_SOR_WAIT(3), &ssi->sor);
485}
486
17467f23
TT
487/**
488 * fsl_ssi_startup: create a new substream
489 *
490 * This is the first function called when a stream is opened.
491 *
492 * If this is the first stream open, then grab the IRQ and program most of
493 * the SSI registers.
494 */
dee89c4d
MB
495static int fsl_ssi_startup(struct snd_pcm_substream *substream,
496 struct snd_soc_dai *dai)
17467f23
TT
497{
498 struct snd_soc_pcm_runtime *rtd = substream->private_data;
5e538eca
TT
499 struct fsl_ssi_private *ssi_private =
500 snd_soc_dai_get_drvdata(rtd->cpu_dai);
aafa85e7 501 unsigned long flags;
17467f23 502
171d683d 503 if (!dai->active && !fsl_ssi_is_ac97(ssi_private)) {
aafa85e7
NC
504 spin_lock_irqsave(&ssi_private->baudclk_lock, flags);
505 ssi_private->baudclk_locked = false;
506 spin_unlock_irqrestore(&ssi_private->baudclk_lock, flags);
507 }
be41e941 508
0da9e55e
NC
509 /* When using dual fifo mode, it is safer to ensure an even period
510 * size. If appearing to an odd number while DMA always starts its
511 * task from fifo0, fifo1 would be neglected at the end of each
512 * period. But SSI would still access fifo1 with an invalid data.
513 */
514 if (ssi_private->use_dual_fifo)
515 snd_pcm_hw_constraint_step(substream->runtime, 0,
516 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 2);
517
17467f23
TT
518 return 0;
519}
520
ee9daad4
SH
521/**
522 * fsl_ssi_set_dai_sysclk - configure Digital Audio Interface bit clock
523 *
524 * Note: This function can be only called when using SSI as DAI master
525 *
526 * Quick instruction for parameters:
527 * freq: Output BCLK frequency = samplerate * 32 (fixed) * channels
528 * dir: SND_SOC_CLOCK_OUT -> TxBCLK, SND_SOC_CLOCK_IN -> RxBCLK.
529 */
530static int fsl_ssi_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
531 int clk_id, unsigned int freq, int dir)
532{
533 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
534 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
535 int synchronous = ssi_private->cpu_dai_drv.symmetric_rates, ret;
536 u32 pm = 999, div2, psr, stccr, mask, afreq, factor, i;
537 unsigned long flags, clkrate, baudrate, tmprate;
538 u64 sub, savesub = 100000;
539
540 /* Don't apply it to any non-baudclk circumstance */
541 if (IS_ERR(ssi_private->baudclk))
542 return -EINVAL;
543
544 /* It should be already enough to divide clock by setting pm alone */
545 psr = 0;
546 div2 = 0;
547
548 factor = (div2 + 1) * (7 * psr + 1) * 2;
549
550 for (i = 0; i < 255; i++) {
551 /* The bclk rate must be smaller than 1/5 sysclk rate */
552 if (factor * (i + 1) < 5)
553 continue;
554
555 tmprate = freq * factor * (i + 2);
556 clkrate = clk_round_rate(ssi_private->baudclk, tmprate);
557
558 do_div(clkrate, factor);
559 afreq = (u32)clkrate / (i + 1);
560
561 if (freq == afreq)
562 sub = 0;
563 else if (freq / afreq == 1)
564 sub = freq - afreq;
565 else if (afreq / freq == 1)
566 sub = afreq - freq;
567 else
568 continue;
569
570 /* Calculate the fraction */
571 sub *= 100000;
572 do_div(sub, freq);
573
574 if (sub < savesub) {
575 baudrate = tmprate;
576 savesub = sub;
577 pm = i;
578 }
579
580 /* We are lucky */
581 if (savesub == 0)
582 break;
583 }
584
585 /* No proper pm found if it is still remaining the initial value */
586 if (pm == 999) {
587 dev_err(cpu_dai->dev, "failed to handle the required sysclk\n");
588 return -EINVAL;
589 }
590
591 stccr = CCSR_SSI_SxCCR_PM(pm + 1) | (div2 ? CCSR_SSI_SxCCR_DIV2 : 0) |
592 (psr ? CCSR_SSI_SxCCR_PSR : 0);
593 mask = CCSR_SSI_SxCCR_PM_MASK | CCSR_SSI_SxCCR_DIV2 |
594 CCSR_SSI_SxCCR_PSR;
595
596 if (dir == SND_SOC_CLOCK_OUT || synchronous)
597 write_ssi_mask(&ssi->stccr, mask, stccr);
598 else
599 write_ssi_mask(&ssi->srccr, mask, stccr);
600
601 spin_lock_irqsave(&ssi_private->baudclk_lock, flags);
602 if (!ssi_private->baudclk_locked) {
603 ret = clk_set_rate(ssi_private->baudclk, baudrate);
604 if (ret) {
605 spin_unlock_irqrestore(&ssi_private->baudclk_lock,
606 flags);
607 dev_err(cpu_dai->dev, "failed to set baudclk rate\n");
608 return -EINVAL;
609 }
610 ssi_private->baudclk_locked = true;
611 }
612 spin_unlock_irqrestore(&ssi_private->baudclk_lock, flags);
613
614 return 0;
615}
616
17467f23 617/**
85ef2375 618 * fsl_ssi_hw_params - program the sample size
17467f23
TT
619 *
620 * Most of the SSI registers have been programmed in the startup function,
621 * but the word length must be programmed here. Unfortunately, programming
622 * the SxCCR.WL bits requires the SSI to be temporarily disabled. This can
623 * cause a problem with supporting simultaneous playback and capture. If
624 * the SSI is already playing a stream, then that stream may be temporarily
625 * stopped when you start capture.
626 *
627 * Note: The SxCCR.DC and SxCCR.PM bits are only used if the SSI is the
628 * clock master.
629 */
85ef2375
TT
630static int fsl_ssi_hw_params(struct snd_pcm_substream *substream,
631 struct snd_pcm_hw_params *hw_params, struct snd_soc_dai *cpu_dai)
17467f23 632{
f0fba2ad 633 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
5e538eca 634 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
2924a998 635 unsigned int channels = params_channels(hw_params);
5e538eca
TT
636 unsigned int sample_size =
637 snd_pcm_format_width(params_format(hw_params));
638 u32 wl = CCSR_SSI_SxCCR_WL(sample_size);
dfa1a107 639 int enabled = read_ssi(&ssi->scr) & CCSR_SSI_SCR_SSIEN;
17467f23 640
5e538eca
TT
641 /*
642 * If we're in synchronous mode, and the SSI is already enabled,
643 * then STCCR is already set properly.
644 */
645 if (enabled && ssi_private->cpu_dai_drv.symmetric_rates)
646 return 0;
17467f23 647
5e538eca
TT
648 /*
649 * FIXME: The documentation says that SxCCR[WL] should not be
650 * modified while the SSI is enabled. The only time this can
651 * happen is if we're trying to do simultaneous playback and
652 * capture in asynchronous mode. Unfortunately, I have been enable
653 * to get that to work at all on the P1022DS. Therefore, we don't
654 * bother to disable/enable the SSI when setting SxCCR[WL], because
655 * the SSI will stop anyway. Maybe one day, this will get fixed.
656 */
17467f23 657
5e538eca
TT
658 /* In synchronous mode, the SSI uses STCCR for capture */
659 if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ||
660 ssi_private->cpu_dai_drv.symmetric_rates)
dfa1a107 661 write_ssi_mask(&ssi->stccr, CCSR_SSI_SxCCR_WL_MASK, wl);
5e538eca 662 else
dfa1a107 663 write_ssi_mask(&ssi->srccr, CCSR_SSI_SxCCR_WL_MASK, wl);
17467f23 664
171d683d 665 if (!fsl_ssi_is_ac97(ssi_private))
2924a998
NC
666 write_ssi_mask(&ssi->scr,
667 CCSR_SSI_SCR_NET | CCSR_SSI_SCR_I2S_MODE_MASK,
668 channels == 1 ? 0 : ssi_private->i2s_mode);
669
17467f23
TT
670 return 0;
671}
672
aafa85e7
NC
673/**
674 * fsl_ssi_set_dai_fmt - configure Digital Audio Interface Format.
675 */
676static int fsl_ssi_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
677{
678 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
679 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
680 u32 strcr = 0, stcr, srcr, scr, mask;
2b0db996
MP
681 u8 wm;
682
171d683d
MP
683 ssi_private->dai_fmt = fmt;
684
2b0db996 685 fsl_ssi_setup_reg_vals(ssi_private);
aafa85e7
NC
686
687 scr = read_ssi(&ssi->scr) & ~(CCSR_SSI_SCR_SYN | CCSR_SSI_SCR_I2S_MODE_MASK);
50489479 688 scr |= CCSR_SSI_SCR_SYNC_TX_FS;
aafa85e7
NC
689
690 mask = CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TFDIR | CCSR_SSI_STCR_TXDIR |
691 CCSR_SSI_STCR_TSCKP | CCSR_SSI_STCR_TFSI | CCSR_SSI_STCR_TFSL |
692 CCSR_SSI_STCR_TEFS;
693 stcr = read_ssi(&ssi->stcr) & ~mask;
694 srcr = read_ssi(&ssi->srcr) & ~mask;
695
07a28dbe 696 ssi_private->i2s_mode = CCSR_SSI_SCR_NET;
aafa85e7
NC
697 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
698 case SND_SOC_DAIFMT_I2S:
699 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
700 case SND_SOC_DAIFMT_CBS_CFS:
07a28dbe 701 ssi_private->i2s_mode |= CCSR_SSI_SCR_I2S_MODE_MASTER;
aafa85e7
NC
702 break;
703 case SND_SOC_DAIFMT_CBM_CFM:
07a28dbe 704 ssi_private->i2s_mode |= CCSR_SSI_SCR_I2S_MODE_SLAVE;
aafa85e7
NC
705 break;
706 default:
707 return -EINVAL;
708 }
aafa85e7
NC
709
710 /* Data on rising edge of bclk, frame low, 1clk before data */
711 strcr |= CCSR_SSI_STCR_TFSI | CCSR_SSI_STCR_TSCKP |
712 CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TEFS;
713 break;
714 case SND_SOC_DAIFMT_LEFT_J:
715 /* Data on rising edge of bclk, frame high */
716 strcr |= CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TSCKP;
717 break;
718 case SND_SOC_DAIFMT_DSP_A:
719 /* Data on rising edge of bclk, frame high, 1clk before data */
720 strcr |= CCSR_SSI_STCR_TFSL | CCSR_SSI_STCR_TSCKP |
721 CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TEFS;
722 break;
723 case SND_SOC_DAIFMT_DSP_B:
724 /* Data on rising edge of bclk, frame high */
725 strcr |= CCSR_SSI_STCR_TFSL | CCSR_SSI_STCR_TSCKP |
726 CCSR_SSI_STCR_TXBIT0;
727 break;
2b0db996 728 case SND_SOC_DAIFMT_AC97:
07a28dbe 729 ssi_private->i2s_mode |= CCSR_SSI_SCR_I2S_MODE_NORMAL;
2b0db996 730 break;
aafa85e7
NC
731 default:
732 return -EINVAL;
733 }
2b0db996 734 scr |= ssi_private->i2s_mode;
aafa85e7
NC
735
736 /* DAI clock inversion */
737 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
738 case SND_SOC_DAIFMT_NB_NF:
739 /* Nothing to do for both normal cases */
740 break;
741 case SND_SOC_DAIFMT_IB_NF:
742 /* Invert bit clock */
743 strcr ^= CCSR_SSI_STCR_TSCKP;
744 break;
745 case SND_SOC_DAIFMT_NB_IF:
746 /* Invert frame clock */
747 strcr ^= CCSR_SSI_STCR_TFSI;
748 break;
749 case SND_SOC_DAIFMT_IB_IF:
750 /* Invert both clocks */
751 strcr ^= CCSR_SSI_STCR_TSCKP;
752 strcr ^= CCSR_SSI_STCR_TFSI;
753 break;
754 default:
755 return -EINVAL;
756 }
757
758 /* DAI clock master masks */
759 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
760 case SND_SOC_DAIFMT_CBS_CFS:
761 strcr |= CCSR_SSI_STCR_TFDIR | CCSR_SSI_STCR_TXDIR;
762 scr |= CCSR_SSI_SCR_SYS_CLK_EN;
763 break;
764 case SND_SOC_DAIFMT_CBM_CFM:
765 scr &= ~CCSR_SSI_SCR_SYS_CLK_EN;
766 break;
767 default:
768 return -EINVAL;
769 }
770
771 stcr |= strcr;
772 srcr |= strcr;
773
774 if (ssi_private->cpu_dai_drv.symmetric_rates) {
775 /* Need to clear RXDIR when using SYNC mode */
776 srcr &= ~CCSR_SSI_SRCR_RXDIR;
777 scr |= CCSR_SSI_SCR_SYN;
778 }
779
780 write_ssi(stcr, &ssi->stcr);
781 write_ssi(srcr, &ssi->srcr);
782 write_ssi(scr, &ssi->scr);
783
2b0db996
MP
784 /*
785 * Set the watermark for transmit FIFI 0 and receive FIFO 0. We don't
786 * use FIFO 1. We program the transmit water to signal a DMA transfer
787 * if there are only two (or fewer) elements left in the FIFO. Two
788 * elements equals one frame (left channel, right channel). This value,
789 * however, depends on the depth of the transmit buffer.
790 *
791 * We set the watermark on the same level as the DMA burstsize. For
792 * fiq it is probably better to use the biggest possible watermark
793 * size.
794 */
795 if (ssi_private->use_dma)
796 wm = ssi_private->fifo_depth - 2;
797 else
798 wm = ssi_private->fifo_depth;
799
800 write_ssi(CCSR_SSI_SFCSR_TFWM0(wm) | CCSR_SSI_SFCSR_RFWM0(wm) |
801 CCSR_SSI_SFCSR_TFWM1(wm) | CCSR_SSI_SFCSR_RFWM1(wm),
802 &ssi->sfcsr);
803
804 if (ssi_private->use_dual_fifo) {
805 write_ssi_mask(&ssi->srcr, CCSR_SSI_SRCR_RFEN1,
806 CCSR_SSI_SRCR_RFEN1);
807 write_ssi_mask(&ssi->stcr, CCSR_SSI_STCR_TFEN1,
808 CCSR_SSI_STCR_TFEN1);
809 write_ssi_mask(&ssi->scr, CCSR_SSI_SCR_TCH_EN,
810 CCSR_SSI_SCR_TCH_EN);
811 }
812
813 if (fmt & SND_SOC_DAIFMT_AC97)
814 fsl_ssi_setup_ac97(ssi_private);
815
aafa85e7
NC
816 return 0;
817}
818
aafa85e7
NC
819/**
820 * fsl_ssi_set_dai_tdm_slot - set TDM slot number
821 *
822 * Note: This function can be only called when using SSI as DAI master
823 */
824static int fsl_ssi_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai, u32 tx_mask,
825 u32 rx_mask, int slots, int slot_width)
826{
827 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
828 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
829 u32 val;
830
831 /* The slot number should be >= 2 if using Network mode or I2S mode */
832 val = read_ssi(&ssi->scr) & (CCSR_SSI_SCR_I2S_MODE_MASK | CCSR_SSI_SCR_NET);
833 if (val && slots < 2) {
834 dev_err(cpu_dai->dev, "slot number should be >= 2 in I2S or NET\n");
835 return -EINVAL;
836 }
837
838 write_ssi_mask(&ssi->stccr, CCSR_SSI_SxCCR_DC_MASK,
839 CCSR_SSI_SxCCR_DC(slots));
840 write_ssi_mask(&ssi->srccr, CCSR_SSI_SxCCR_DC_MASK,
841 CCSR_SSI_SxCCR_DC(slots));
842
843 /* The register SxMSKs needs SSI to provide essential clock due to
844 * hardware design. So we here temporarily enable SSI to set them.
845 */
846 val = read_ssi(&ssi->scr) & CCSR_SSI_SCR_SSIEN;
847 write_ssi_mask(&ssi->scr, 0, CCSR_SSI_SCR_SSIEN);
848
849 write_ssi(tx_mask, &ssi->stmsk);
850 write_ssi(rx_mask, &ssi->srmsk);
851
852 write_ssi_mask(&ssi->scr, CCSR_SSI_SCR_SSIEN, val);
853
854 return 0;
855}
856
17467f23
TT
857/**
858 * fsl_ssi_trigger: start and stop the DMA transfer.
859 *
860 * This function is called by ALSA to start, stop, pause, and resume the DMA
861 * transfer of data.
862 *
863 * The DMA channel is in external master start and pause mode, which
864 * means the SSI completely controls the flow of data.
865 */
dee89c4d
MB
866static int fsl_ssi_trigger(struct snd_pcm_substream *substream, int cmd,
867 struct snd_soc_dai *dai)
17467f23
TT
868{
869 struct snd_soc_pcm_runtime *rtd = substream->private_data;
f0fba2ad 870 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(rtd->cpu_dai);
17467f23 871 struct ccsr_ssi __iomem *ssi = ssi_private->ssi;
aafa85e7 872 unsigned long flags;
9b443e3d 873
17467f23
TT
874 switch (cmd) {
875 case SNDRV_PCM_TRIGGER_START:
b20e53a8 876 case SNDRV_PCM_TRIGGER_RESUME:
17467f23 877 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
a4d11fe5 878 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
6de83879 879 fsl_ssi_tx_config(ssi_private, true);
a4d11fe5 880 else
6de83879 881 fsl_ssi_rx_config(ssi_private, true);
17467f23
TT
882 break;
883
884 case SNDRV_PCM_TRIGGER_STOP:
b20e53a8 885 case SNDRV_PCM_TRIGGER_SUSPEND:
17467f23
TT
886 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
887 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
6de83879 888 fsl_ssi_tx_config(ssi_private, false);
17467f23 889 else
6de83879 890 fsl_ssi_rx_config(ssi_private, false);
b2c119b0 891
171d683d 892 if (!fsl_ssi_is_ac97(ssi_private) && (read_ssi(&ssi->scr) &
aafa85e7 893 (CCSR_SSI_SCR_TE | CCSR_SSI_SCR_RE)) == 0) {
aafa85e7
NC
894 spin_lock_irqsave(&ssi_private->baudclk_lock, flags);
895 ssi_private->baudclk_locked = false;
896 spin_unlock_irqrestore(&ssi_private->baudclk_lock, flags);
897 }
17467f23
TT
898 break;
899
900 default:
901 return -EINVAL;
902 }
903
171d683d 904 if (fsl_ssi_is_ac97(ssi_private)) {
a5a7ee7c
MP
905 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
906 write_ssi(CCSR_SSI_SOR_TX_CLR, &ssi->sor);
907 else
908 write_ssi(CCSR_SSI_SOR_RX_CLR, &ssi->sor);
909 }
9b443e3d 910
17467f23
TT
911 return 0;
912}
913
fc8ba7f9
LPC
914static int fsl_ssi_dai_probe(struct snd_soc_dai *dai)
915{
916 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(dai);
917
171d683d 918 if (fsl_ssi_on_imx(ssi_private) && ssi_private->use_dma) {
fc8ba7f9
LPC
919 dai->playback_dma_data = &ssi_private->dma_params_tx;
920 dai->capture_dma_data = &ssi_private->dma_params_rx;
921 }
922
923 return 0;
924}
925
85e7652d 926static const struct snd_soc_dai_ops fsl_ssi_dai_ops = {
6335d055
EM
927 .startup = fsl_ssi_startup,
928 .hw_params = fsl_ssi_hw_params,
aafa85e7
NC
929 .set_fmt = fsl_ssi_set_dai_fmt,
930 .set_sysclk = fsl_ssi_set_dai_sysclk,
931 .set_tdm_slot = fsl_ssi_set_dai_tdm_slot,
6335d055 932 .trigger = fsl_ssi_trigger,
6335d055
EM
933};
934
f0fba2ad
LG
935/* Template for the CPU dai driver structure */
936static struct snd_soc_dai_driver fsl_ssi_dai_template = {
fc8ba7f9 937 .probe = fsl_ssi_dai_probe,
17467f23 938 .playback = {
2924a998 939 .channels_min = 1,
17467f23
TT
940 .channels_max = 2,
941 .rates = FSLSSI_I2S_RATES,
942 .formats = FSLSSI_I2S_FORMATS,
943 },
944 .capture = {
2924a998 945 .channels_min = 1,
17467f23
TT
946 .channels_max = 2,
947 .rates = FSLSSI_I2S_RATES,
948 .formats = FSLSSI_I2S_FORMATS,
949 },
6335d055 950 .ops = &fsl_ssi_dai_ops,
17467f23
TT
951};
952
3580aa10
KM
953static const struct snd_soc_component_driver fsl_ssi_component = {
954 .name = "fsl-ssi",
955};
956
cd7f0295
MP
957static struct snd_soc_dai_driver fsl_ssi_ac97_dai = {
958 .ac97_control = 1,
959 .playback = {
960 .stream_name = "AC97 Playback",
961 .channels_min = 2,
962 .channels_max = 2,
963 .rates = SNDRV_PCM_RATE_8000_48000,
964 .formats = SNDRV_PCM_FMTBIT_S16_LE,
965 },
966 .capture = {
967 .stream_name = "AC97 Capture",
968 .channels_min = 2,
969 .channels_max = 2,
970 .rates = SNDRV_PCM_RATE_48000,
971 .formats = SNDRV_PCM_FMTBIT_S16_LE,
972 },
a5a7ee7c 973 .ops = &fsl_ssi_dai_ops,
cd7f0295
MP
974};
975
976
977static struct fsl_ssi_private *fsl_ac97_data;
978
a851a2bb 979static void fsl_ssi_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
cd7f0295
MP
980 unsigned short val)
981{
982 struct ccsr_ssi *ssi = fsl_ac97_data->ssi;
983 unsigned int lreg;
984 unsigned int lval;
985
986 if (reg > 0x7f)
987 return;
988
989
990 lreg = reg << 12;
991 write_ssi(lreg, &ssi->sacadd);
992
993 lval = val << 4;
994 write_ssi(lval , &ssi->sacdat);
995
996 write_ssi_mask(&ssi->sacnt, CCSR_SSI_SACNT_RDWR_MASK,
997 CCSR_SSI_SACNT_WR);
998 udelay(100);
999}
1000
a851a2bb 1001static unsigned short fsl_ssi_ac97_read(struct snd_ac97 *ac97,
cd7f0295
MP
1002 unsigned short reg)
1003{
1004 struct ccsr_ssi *ssi = fsl_ac97_data->ssi;
1005
1006 unsigned short val = -1;
1007 unsigned int lreg;
1008
1009 lreg = (reg & 0x7f) << 12;
1010 write_ssi(lreg, &ssi->sacadd);
1011 write_ssi_mask(&ssi->sacnt, CCSR_SSI_SACNT_RDWR_MASK,
1012 CCSR_SSI_SACNT_RD);
1013
1014 udelay(100);
1015
1016 val = (read_ssi(&ssi->sacdat) >> 4) & 0xffff;
1017
1018 return val;
1019}
1020
1021static struct snd_ac97_bus_ops fsl_ssi_ac97_ops = {
1022 .read = fsl_ssi_ac97_read,
1023 .write = fsl_ssi_ac97_write,
1024};
1025
17467f23 1026/**
f0fba2ad 1027 * Make every character in a string lower-case
17467f23 1028 */
f0fba2ad
LG
1029static void make_lowercase(char *s)
1030{
1031 char *p = s;
1032 char c;
1033
1034 while ((c = *p)) {
1035 if ((c >= 'A') && (c <= 'Z'))
1036 *p = c + ('a' - 'A');
1037 p++;
1038 }
1039}
1040
49da09e2 1041static int fsl_ssi_imx_probe(struct platform_device *pdev,
4d9b7926 1042 struct fsl_ssi_private *ssi_private, void __iomem *iomem)
49da09e2
MP
1043{
1044 struct device_node *np = pdev->dev.of_node;
ed0f1604 1045 u32 dmas[4];
49da09e2
MP
1046 int ret;
1047
1048 ssi_private->clk = devm_clk_get(&pdev->dev, NULL);
1049 if (IS_ERR(ssi_private->clk)) {
1050 ret = PTR_ERR(ssi_private->clk);
1051 dev_err(&pdev->dev, "could not get clock: %d\n", ret);
1052 return ret;
1053 }
1054
1055 ret = clk_prepare_enable(ssi_private->clk);
1056 if (ret) {
1057 dev_err(&pdev->dev, "clk_prepare_enable failed: %d\n", ret);
1058 return ret;
1059 }
1060
1061 /* For those SLAVE implementations, we ingore non-baudclk cases
1062 * and, instead, abandon MASTER mode that needs baud clock.
1063 */
1064 ssi_private->baudclk = devm_clk_get(&pdev->dev, "baud");
1065 if (IS_ERR(ssi_private->baudclk))
1066 dev_dbg(&pdev->dev, "could not get baud clock: %ld\n",
1067 PTR_ERR(ssi_private->baudclk));
1068 else
1069 clk_prepare_enable(ssi_private->baudclk);
1070
1071 /*
1072 * We have burstsize be "fifo_depth - 2" to match the SSI
1073 * watermark setting in fsl_ssi_startup().
1074 */
1075 ssi_private->dma_params_tx.maxburst = ssi_private->fifo_depth - 2;
1076 ssi_private->dma_params_rx.maxburst = ssi_private->fifo_depth - 2;
1077 ssi_private->dma_params_tx.addr = ssi_private->ssi_phys +
1078 offsetof(struct ccsr_ssi, stx0);
1079 ssi_private->dma_params_rx.addr = ssi_private->ssi_phys +
1080 offsetof(struct ccsr_ssi, srx0);
49da09e2 1081
ed0f1604
MP
1082 ret = !of_property_read_u32_array(np, "dmas", dmas, 4);
1083 if (ssi_private->use_dma && !ret && dmas[2] == IMX_DMATYPE_SSI_DUAL) {
49da09e2
MP
1084 ssi_private->use_dual_fifo = true;
1085 /* When using dual fifo mode, we need to keep watermark
1086 * as even numbers due to dma script limitation.
1087 */
1088 ssi_private->dma_params_tx.maxburst &= ~0x1;
1089 ssi_private->dma_params_rx.maxburst &= ~0x1;
1090 }
1091
4d9b7926
MP
1092 if (!ssi_private->use_dma) {
1093
1094 /*
1095 * Some boards use an incompatible codec. To get it
1096 * working, we are using imx-fiq-pcm-audio, that
1097 * can handle those codecs. DMA is not possible in this
1098 * situation.
1099 */
1100
1101 ssi_private->fiq_params.irq = ssi_private->irq;
1102 ssi_private->fiq_params.base = iomem;
1103 ssi_private->fiq_params.dma_params_rx =
1104 &ssi_private->dma_params_rx;
1105 ssi_private->fiq_params.dma_params_tx =
1106 &ssi_private->dma_params_tx;
1107
1108 ret = imx_pcm_fiq_init(pdev, &ssi_private->fiq_params);
1109 if (ret)
1110 goto error_pcm;
1111 } else {
1112 ret = imx_pcm_dma_init(pdev);
1113 if (ret)
1114 goto error_pcm;
1115 }
1116
49da09e2 1117 return 0;
4d9b7926
MP
1118
1119error_pcm:
1120 if (!IS_ERR(ssi_private->baudclk))
1121 clk_disable_unprepare(ssi_private->baudclk);
1122
1123 clk_disable_unprepare(ssi_private->clk);
1124
1125 return ret;
49da09e2
MP
1126}
1127
1128static void fsl_ssi_imx_clean(struct platform_device *pdev,
1129 struct fsl_ssi_private *ssi_private)
1130{
4d9b7926
MP
1131 if (!ssi_private->use_dma)
1132 imx_pcm_fiq_exit(pdev);
49da09e2
MP
1133 if (!IS_ERR(ssi_private->baudclk))
1134 clk_disable_unprepare(ssi_private->baudclk);
1135 clk_disable_unprepare(ssi_private->clk);
1136}
1137
a0a3d518 1138static int fsl_ssi_probe(struct platform_device *pdev)
17467f23 1139{
17467f23
TT
1140 struct fsl_ssi_private *ssi_private;
1141 int ret = 0;
38fec727 1142 struct device_node *np = pdev->dev.of_node;
c1953bfe
MP
1143 const struct of_device_id *of_id;
1144 enum fsl_ssi_type hw_type;
f0fba2ad 1145 const char *p, *sprop;
8e9d8690 1146 const uint32_t *iprop;
f0fba2ad
LG
1147 struct resource res;
1148 char name[64];
cd7f0295 1149 bool ac97 = false;
17467f23 1150
ff71334a
TT
1151 /* SSIs that are not connected on the board should have a
1152 * status = "disabled"
1153 * property in their device tree nodes.
f0fba2ad 1154 */
ff71334a 1155 if (!of_device_is_available(np))
f0fba2ad
LG
1156 return -ENODEV;
1157
c1953bfe
MP
1158 of_id = of_match_device(fsl_ssi_ids, &pdev->dev);
1159 if (!of_id)
1160 return -EINVAL;
1161 hw_type = (enum fsl_ssi_type) of_id->data;
1162
f0fba2ad 1163 sprop = of_get_property(np, "fsl,mode", NULL);
cd7f0295
MP
1164 if (!sprop) {
1165 dev_err(&pdev->dev, "fsl,mode property is necessary\n");
1166 return -EINVAL;
1167 }
ae1f8ce1 1168 if (!strcmp(sprop, "ac97-slave"))
cd7f0295 1169 ac97 = true;
f0fba2ad 1170
2a1d102d
MP
1171 ssi_private = devm_kzalloc(&pdev->dev, sizeof(*ssi_private),
1172 GFP_KERNEL);
17467f23 1173 if (!ssi_private) {
38fec727 1174 dev_err(&pdev->dev, "could not allocate DAI object\n");
f0fba2ad 1175 return -ENOMEM;
17467f23 1176 }
17467f23 1177
de623ece
MP
1178 ssi_private->use_dma = !of_property_read_bool(np,
1179 "fsl,fiq-stream-filter");
0888efd1 1180 ssi_private->hw_type = hw_type;
de623ece 1181
cd7f0295
MP
1182 if (ac97) {
1183 memcpy(&ssi_private->cpu_dai_drv, &fsl_ssi_ac97_dai,
1184 sizeof(fsl_ssi_ac97_dai));
1185
1186 fsl_ac97_data = ssi_private;
cd7f0295
MP
1187
1188 snd_soc_set_ac97_ops_of_reset(&fsl_ssi_ac97_ops, pdev);
1189 } else {
1190 /* Initialize this copy of the CPU DAI driver structure */
1191 memcpy(&ssi_private->cpu_dai_drv, &fsl_ssi_dai_template,
1192 sizeof(fsl_ssi_dai_template));
1193 }
2a1d102d 1194 ssi_private->cpu_dai_drv.name = dev_name(&pdev->dev);
f0fba2ad
LG
1195
1196 /* Get the addresses and IRQ */
1197 ret = of_address_to_resource(np, 0, &res);
1198 if (ret) {
38fec727 1199 dev_err(&pdev->dev, "could not determine device resources\n");
b0a4747a 1200 return ret;
f0fba2ad 1201 }
147dfe90
TT
1202 ssi_private->ssi = of_iomap(np, 0);
1203 if (!ssi_private->ssi) {
1204 dev_err(&pdev->dev, "could not map device resources\n");
b0a4747a 1205 return -ENOMEM;
147dfe90 1206 }
f0fba2ad 1207 ssi_private->ssi_phys = res.start;
1fab6caf 1208
f0fba2ad 1209 ssi_private->irq = irq_of_parse_and_map(np, 0);
d60336e2 1210 if (!ssi_private->irq) {
1fab6caf 1211 dev_err(&pdev->dev, "no irq for node %s\n", np->full_name);
b0a4747a 1212 return -ENXIO;
1fab6caf
TT
1213 }
1214
f0fba2ad 1215 /* Are the RX and the TX clocks locked? */
07a9483a 1216 if (!of_find_property(np, "fsl,ssi-asynchronous", NULL)) {
f0fba2ad 1217 ssi_private->cpu_dai_drv.symmetric_rates = 1;
07a9483a
NC
1218 ssi_private->cpu_dai_drv.symmetric_channels = 1;
1219 ssi_private->cpu_dai_drv.symmetric_samplebits = 1;
1220 }
17467f23 1221
8e9d8690
TT
1222 /* Determine the FIFO depth. */
1223 iprop = of_get_property(np, "fsl,fifo-depth", NULL);
1224 if (iprop)
147dfe90 1225 ssi_private->fifo_depth = be32_to_cpup(iprop);
8e9d8690
TT
1226 else
1227 /* Older 8610 DTs didn't have the fifo-depth property */
1228 ssi_private->fifo_depth = 8;
1229
aafa85e7
NC
1230 ssi_private->baudclk_locked = false;
1231 spin_lock_init(&ssi_private->baudclk_lock);
1232
4d9b7926
MP
1233 dev_set_drvdata(&pdev->dev, ssi_private);
1234
171d683d 1235 if (fsl_ssi_on_imx(ssi_private)) {
4d9b7926 1236 ret = fsl_ssi_imx_probe(pdev, ssi_private, ssi_private->ssi);
49da09e2 1237 if (ret)
b0a4747a 1238 goto error_irqmap;
0888efd1
MP
1239 }
1240
4d9b7926
MP
1241 ret = snd_soc_register_component(&pdev->dev, &fsl_ssi_component,
1242 &ssi_private->cpu_dai_drv, 1);
1243 if (ret) {
1244 dev_err(&pdev->dev, "failed to register DAI: %d\n", ret);
1245 goto error_asoc_register;
1246 }
1247
0888efd1 1248 if (ssi_private->use_dma) {
f0377086 1249 ret = devm_request_irq(&pdev->dev, ssi_private->irq,
171d683d 1250 fsl_ssi_isr, 0, dev_name(&pdev->dev),
f0377086
MG
1251 ssi_private);
1252 if (ret < 0) {
1253 dev_err(&pdev->dev, "could not claim irq %u\n",
1254 ssi_private->irq);
49da09e2 1255 goto error_irq;
f0377086 1256 }
09ce1111
SG
1257 }
1258
f138e621 1259 ret = fsl_ssi_debugfs_create(&ssi_private->dbg_stats, &pdev->dev);
9368acc4 1260 if (ret)
4d9b7926 1261 goto error_asoc_register;
09ce1111
SG
1262
1263 /*
1264 * If codec-handle property is missing from SSI node, we assume
1265 * that the machine driver uses new binding which does not require
1266 * SSI driver to trigger machine driver's probe.
1267 */
171d683d 1268 if (!of_get_property(np, "codec-handle", NULL))
09ce1111 1269 goto done;
09ce1111 1270
f0fba2ad 1271 /* Trigger the machine driver's probe function. The platform driver
2b81ec69 1272 * name of the machine driver is taken from /compatible property of the
f0fba2ad
LG
1273 * device tree. We also pass the address of the CPU DAI driver
1274 * structure.
1275 */
2b81ec69
SG
1276 sprop = of_get_property(of_find_node_by_path("/"), "compatible", NULL);
1277 /* Sometimes the compatible name has a "fsl," prefix, so we strip it. */
f0fba2ad
LG
1278 p = strrchr(sprop, ',');
1279 if (p)
1280 sprop = p + 1;
1281 snprintf(name, sizeof(name), "snd-soc-%s", sprop);
1282 make_lowercase(name);
1283
1284 ssi_private->pdev =
38fec727 1285 platform_device_register_data(&pdev->dev, name, 0, NULL, 0);
f0fba2ad
LG
1286 if (IS_ERR(ssi_private->pdev)) {
1287 ret = PTR_ERR(ssi_private->pdev);
38fec727 1288 dev_err(&pdev->dev, "failed to register platform: %d\n", ret);
4d9b7926 1289 goto error_sound_card;
3f4b783c 1290 }
17467f23 1291
09ce1111 1292done:
f0fba2ad 1293 return 0;
87a0632b 1294
4d9b7926 1295error_sound_card:
f138e621 1296 fsl_ssi_debugfs_remove(&ssi_private->dbg_stats);
9368acc4 1297
4d9b7926 1298error_irq:
3580aa10 1299 snd_soc_unregister_component(&pdev->dev);
1fab6caf 1300
4d9b7926 1301error_asoc_register:
171d683d 1302 if (fsl_ssi_on_imx(ssi_private))
49da09e2 1303 fsl_ssi_imx_clean(pdev, ssi_private);
1fab6caf
TT
1304
1305error_irqmap:
4d9b7926 1306 if (ssi_private->use_dma)
2841be9a 1307 irq_dispose_mapping(ssi_private->irq);
1fab6caf 1308
87a0632b 1309 return ret;
17467f23 1310}
17467f23 1311
38fec727 1312static int fsl_ssi_remove(struct platform_device *pdev)
17467f23 1313{
38fec727 1314 struct fsl_ssi_private *ssi_private = dev_get_drvdata(&pdev->dev);
17467f23 1315
f138e621 1316 fsl_ssi_debugfs_remove(&ssi_private->dbg_stats);
9368acc4 1317
171d683d 1318 if (ssi_private->pdev)
09ce1111 1319 platform_device_unregister(ssi_private->pdev);
3580aa10 1320 snd_soc_unregister_component(&pdev->dev);
49da09e2 1321
171d683d 1322 if (fsl_ssi_on_imx(ssi_private))
49da09e2
MP
1323 fsl_ssi_imx_clean(pdev, ssi_private);
1324
4d9b7926 1325 if (ssi_private->use_dma)
2841be9a 1326 irq_dispose_mapping(ssi_private->irq);
f0fba2ad
LG
1327
1328 return 0;
17467f23 1329}
f0fba2ad 1330
f07eb223 1331static struct platform_driver fsl_ssi_driver = {
f0fba2ad
LG
1332 .driver = {
1333 .name = "fsl-ssi-dai",
1334 .owner = THIS_MODULE,
1335 .of_match_table = fsl_ssi_ids,
1336 },
1337 .probe = fsl_ssi_probe,
1338 .remove = fsl_ssi_remove,
1339};
17467f23 1340
ba0a7e02 1341module_platform_driver(fsl_ssi_driver);
a454dad1 1342
f3142807 1343MODULE_ALIAS("platform:fsl-ssi-dai");
17467f23
TT
1344MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
1345MODULE_DESCRIPTION("Freescale Synchronous Serial Interface (SSI) ASoC Driver");
f0fba2ad 1346MODULE_LICENSE("GPL v2");