2 * Freescale SSI ALSA SoC Digital Audio Interface (DAI) driver
4 * Author: Timur Tabi <timur@freescale.com>
6 * Copyright 2007-2010 Freescale Semiconductor, Inc.
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.
13 * Some notes why imx-pcm-fiq is used instead of DMA on some boards:
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
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.
33 #include <linux/init.h>
35 #include <linux/module.h>
36 #include <linux/interrupt.h>
37 #include <linux/clk.h>
38 #include <linux/device.h>
39 #include <linux/delay.h>
40 #include <linux/slab.h>
41 #include <linux/spinlock.h>
43 #include <linux/of_address.h>
44 #include <linux/of_irq.h>
45 #include <linux/of_platform.h>
47 #include <sound/core.h>
48 #include <sound/pcm.h>
49 #include <sound/pcm_params.h>
50 #include <sound/initval.h>
51 #include <sound/soc.h>
52 #include <sound/dmaengine_pcm.h>
58 * FSLSSI_I2S_RATES: sample rates supported by the I2S
60 * This driver currently only supports the SSI running in I2S slave mode,
61 * which means the codec determines the sample rate. Therefore, we tell
62 * ALSA that we support all rates and let the codec driver decide what rates
63 * are really supported.
65 #define FSLSSI_I2S_RATES SNDRV_PCM_RATE_CONTINUOUS
68 * FSLSSI_I2S_FORMATS: audio formats supported by the SSI
70 * The SSI has a limitation in that the samples must be in the same byte
71 * order as the host CPU. This is because when multiple bytes are written
72 * to the STX register, the bytes and bits must be written in the same
73 * order. The STX is a shift register, so all the bits need to be aligned
74 * (bit-endianness must match byte-endianness). Processors typically write
75 * the bits within a byte in the same order that the bytes of a word are
76 * written in. So if the host CPU is big-endian, then only big-endian
77 * samples will be written to STX properly.
80 #define FSLSSI_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_BE | \
81 SNDRV_PCM_FMTBIT_S18_3BE | SNDRV_PCM_FMTBIT_S20_3BE | \
82 SNDRV_PCM_FMTBIT_S24_3BE | SNDRV_PCM_FMTBIT_S24_BE)
84 #define FSLSSI_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \
85 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S20_3LE | \
86 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_LE)
89 #define FSLSSI_SIER_DBG_RX_FLAGS (CCSR_SSI_SIER_RFF0_EN | \
90 CCSR_SSI_SIER_RLS_EN | CCSR_SSI_SIER_RFS_EN | \
91 CCSR_SSI_SIER_ROE0_EN | CCSR_SSI_SIER_RFRC_EN)
92 #define FSLSSI_SIER_DBG_TX_FLAGS (CCSR_SSI_SIER_TFE0_EN | \
93 CCSR_SSI_SIER_TLS_EN | CCSR_SSI_SIER_TFS_EN | \
94 CCSR_SSI_SIER_TUE0_EN | CCSR_SSI_SIER_TFRC_EN)
103 struct fsl_ssi_reg_val
{
110 struct fsl_ssi_rxtx_reg_val
{
111 struct fsl_ssi_reg_val rx
;
112 struct fsl_ssi_reg_val tx
;
115 static const struct reg_default fsl_ssi_reg_defaults
[] = {
116 {CCSR_SSI_SCR
, 0x00000000},
117 {CCSR_SSI_SIER
, 0x00003003},
118 {CCSR_SSI_STCR
, 0x00000200},
119 {CCSR_SSI_SRCR
, 0x00000200},
120 {CCSR_SSI_STCCR
, 0x00040000},
121 {CCSR_SSI_SRCCR
, 0x00040000},
122 {CCSR_SSI_SACNT
, 0x00000000},
123 {CCSR_SSI_STMSK
, 0x00000000},
124 {CCSR_SSI_SRMSK
, 0x00000000},
125 {CCSR_SSI_SACCEN
, 0x00000000},
126 {CCSR_SSI_SACCDIS
, 0x00000000},
129 static bool fsl_ssi_readable_reg(struct device
*dev
, unsigned int reg
)
132 case CCSR_SSI_SACCEN
:
133 case CCSR_SSI_SACCDIS
:
140 static bool fsl_ssi_volatile_reg(struct device
*dev
, unsigned int reg
)
150 case CCSR_SSI_SACADD
:
151 case CCSR_SSI_SACDAT
:
153 case CCSR_SSI_SACCST
:
160 static bool fsl_ssi_precious_reg(struct device
*dev
, unsigned int reg
)
166 case CCSR_SSI_SACADD
:
167 case CCSR_SSI_SACDAT
:
175 static bool fsl_ssi_writeable_reg(struct device
*dev
, unsigned int reg
)
180 case CCSR_SSI_SACCST
:
187 static const struct regmap_config fsl_ssi_regconfig
= {
188 .max_register
= CCSR_SSI_SACCDIS
,
192 .val_format_endian
= REGMAP_ENDIAN_NATIVE
,
193 .reg_defaults
= fsl_ssi_reg_defaults
,
194 .num_reg_defaults
= ARRAY_SIZE(fsl_ssi_reg_defaults
),
195 .readable_reg
= fsl_ssi_readable_reg
,
196 .volatile_reg
= fsl_ssi_volatile_reg
,
197 .precious_reg
= fsl_ssi_precious_reg
,
198 .writeable_reg
= fsl_ssi_writeable_reg
,
199 .cache_type
= REGCACHE_RBTREE
,
202 struct fsl_ssi_soc_data
{
209 * fsl_ssi_private: per-SSI private data
211 * @reg: Pointer to the regmap registers
212 * @irq: IRQ of this SSI
213 * @cpu_dai_drv: CPU DAI driver for this device
215 * @dai_fmt: DAI configuration this device is currently used with
216 * @i2s_mode: i2s and network mode configuration of the device. Is used to
217 * switch between normal and i2s/network mode
218 * mode depending on the number of channels
219 * @use_dma: DMA is used or FIQ with stream filter
220 * @use_dual_fifo: DMA with support for both FIFOs used
221 * @fifo_deph: Depth of the SSI FIFOs
222 * @rxtx_reg_val: Specific register settings for receive/transmit configuration
225 * @baudclk: SSI baud clock for master mode
226 * @baudclk_streams: Active streams that are using baudclk
227 * @bitclk_freq: bitclock frequency set by .set_dai_sysclk
229 * @dma_params_tx: DMA transmit parameters
230 * @dma_params_rx: DMA receive parameters
231 * @ssi_phys: physical address of the SSI registers
233 * @fiq_params: FIQ stream filtering parameters
235 * @pdev: Pointer to pdev used for deprecated fsl-ssi sound card
237 * @dbg_stats: Debugging statistics
239 * @soc: SoC specific data
241 struct fsl_ssi_private
{
244 struct snd_soc_dai_driver cpu_dai_drv
;
246 unsigned int dai_fmt
;
250 bool has_ipg_clk_name
;
251 unsigned int fifo_depth
;
252 struct fsl_ssi_rxtx_reg_val rxtx_reg_val
;
256 unsigned int baudclk_streams
;
257 unsigned int bitclk_freq
;
259 /* regcache for volatile regs */
264 struct snd_dmaengine_dai_dma_data dma_params_tx
;
265 struct snd_dmaengine_dai_dma_data dma_params_rx
;
268 /* params for non-dma FIQ stream filtered mode */
269 struct imx_pcm_fiq_params fiq_params
;
271 /* Used when using fsl-ssi as sound-card. This is only used by ppc and
272 * should be replaced with simple-sound-card. */
273 struct platform_device
*pdev
;
275 struct fsl_ssi_dbg dbg_stats
;
277 const struct fsl_ssi_soc_data
*soc
;
281 * imx51 and later SoCs have a slightly different IP that allows the
282 * SSI configuration while the SSI unit is running.
284 * More important, it is necessary on those SoCs to configure the
285 * sperate TX/RX DMA bits just before starting the stream
286 * (fsl_ssi_trigger). The SDMA unit has to be configured before fsl_ssi
287 * sends any DMA requests to the SDMA unit, otherwise it is not defined
288 * how the SDMA unit handles the DMA request.
290 * SDMA units are present on devices starting at imx35 but the imx35
291 * reference manual states that the DMA bits should not be changed
292 * while the SSI unit is running (SSIEN). So we support the necessary
293 * online configuration of fsl-ssi starting at imx51.
296 static struct fsl_ssi_soc_data fsl_ssi_mpc8610
= {
298 .offline_config
= true,
299 .sisr_write_mask
= CCSR_SSI_SISR_RFRC
| CCSR_SSI_SISR_TFRC
|
300 CCSR_SSI_SISR_ROE0
| CCSR_SSI_SISR_ROE1
|
301 CCSR_SSI_SISR_TUE0
| CCSR_SSI_SISR_TUE1
,
304 static struct fsl_ssi_soc_data fsl_ssi_imx21
= {
306 .offline_config
= true,
307 .sisr_write_mask
= 0,
310 static struct fsl_ssi_soc_data fsl_ssi_imx35
= {
312 .offline_config
= true,
313 .sisr_write_mask
= CCSR_SSI_SISR_RFRC
| CCSR_SSI_SISR_TFRC
|
314 CCSR_SSI_SISR_ROE0
| CCSR_SSI_SISR_ROE1
|
315 CCSR_SSI_SISR_TUE0
| CCSR_SSI_SISR_TUE1
,
318 static struct fsl_ssi_soc_data fsl_ssi_imx51
= {
320 .offline_config
= false,
321 .sisr_write_mask
= CCSR_SSI_SISR_ROE0
| CCSR_SSI_SISR_ROE1
|
322 CCSR_SSI_SISR_TUE0
| CCSR_SSI_SISR_TUE1
,
325 static const struct of_device_id fsl_ssi_ids
[] = {
326 { .compatible
= "fsl,mpc8610-ssi", .data
= &fsl_ssi_mpc8610
},
327 { .compatible
= "fsl,imx51-ssi", .data
= &fsl_ssi_imx51
},
328 { .compatible
= "fsl,imx35-ssi", .data
= &fsl_ssi_imx35
},
329 { .compatible
= "fsl,imx21-ssi", .data
= &fsl_ssi_imx21
},
332 MODULE_DEVICE_TABLE(of
, fsl_ssi_ids
);
334 static bool fsl_ssi_is_ac97(struct fsl_ssi_private
*ssi_private
)
336 return (ssi_private
->dai_fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) ==
340 static bool fsl_ssi_is_i2s_master(struct fsl_ssi_private
*ssi_private
)
342 return (ssi_private
->dai_fmt
& SND_SOC_DAIFMT_MASTER_MASK
) ==
343 SND_SOC_DAIFMT_CBS_CFS
;
346 static bool fsl_ssi_is_i2s_cbm_cfs(struct fsl_ssi_private
*ssi_private
)
348 return (ssi_private
->dai_fmt
& SND_SOC_DAIFMT_MASTER_MASK
) ==
349 SND_SOC_DAIFMT_CBM_CFS
;
352 * fsl_ssi_isr: SSI interrupt handler
354 * Although it's possible to use the interrupt handler to send and receive
355 * data to/from the SSI, we use the DMA instead. Programming is more
356 * complicated, but the performance is much better.
358 * This interrupt handler is used only to gather statistics.
360 * @irq: IRQ of the SSI device
361 * @dev_id: pointer to the ssi_private structure for this SSI device
363 static irqreturn_t
fsl_ssi_isr(int irq
, void *dev_id
)
365 struct fsl_ssi_private
*ssi_private
= dev_id
;
366 struct regmap
*regs
= ssi_private
->regs
;
370 /* We got an interrupt, so read the status register to see what we
371 were interrupted for. We mask it with the Interrupt Enable register
372 so that we only check for events that we're interested in.
374 regmap_read(regs
, CCSR_SSI_SISR
, &sisr
);
376 sisr2
= sisr
& ssi_private
->soc
->sisr_write_mask
;
377 /* Clear the bits that we set */
379 regmap_write(regs
, CCSR_SSI_SISR
, sisr2
);
381 fsl_ssi_dbg_isr(&ssi_private
->dbg_stats
, sisr
);
387 * Enable/Disable all rx/tx config flags at once.
389 static void fsl_ssi_rxtx_config(struct fsl_ssi_private
*ssi_private
,
392 struct regmap
*regs
= ssi_private
->regs
;
393 struct fsl_ssi_rxtx_reg_val
*vals
= &ssi_private
->rxtx_reg_val
;
396 regmap_update_bits(regs
, CCSR_SSI_SIER
,
397 vals
->rx
.sier
| vals
->tx
.sier
,
398 vals
->rx
.sier
| vals
->tx
.sier
);
399 regmap_update_bits(regs
, CCSR_SSI_SRCR
,
400 vals
->rx
.srcr
| vals
->tx
.srcr
,
401 vals
->rx
.srcr
| vals
->tx
.srcr
);
402 regmap_update_bits(regs
, CCSR_SSI_STCR
,
403 vals
->rx
.stcr
| vals
->tx
.stcr
,
404 vals
->rx
.stcr
| vals
->tx
.stcr
);
406 regmap_update_bits(regs
, CCSR_SSI_SRCR
,
407 vals
->rx
.srcr
| vals
->tx
.srcr
, 0);
408 regmap_update_bits(regs
, CCSR_SSI_STCR
,
409 vals
->rx
.stcr
| vals
->tx
.stcr
, 0);
410 regmap_update_bits(regs
, CCSR_SSI_SIER
,
411 vals
->rx
.sier
| vals
->tx
.sier
, 0);
416 * Calculate the bits that have to be disabled for the current stream that is
417 * getting disabled. This keeps the bits enabled that are necessary for the
418 * second stream to work if 'stream_active' is true.
420 * Detailed calculation:
421 * These are the values that need to be active after disabling. For non-active
422 * second stream, this is 0:
423 * vals_stream * !!stream_active
425 * The following computes the overall differences between the setup for the
426 * to-disable stream and the active stream, a simple XOR:
427 * vals_disable ^ (vals_stream * !!(stream_active))
429 * The full expression adds a mask on all values we care about
431 #define fsl_ssi_disable_val(vals_disable, vals_stream, stream_active) \
433 ((vals_disable) ^ ((vals_stream) * (u32)!!(stream_active))))
436 * Enable/Disable a ssi configuration. You have to pass either
437 * ssi_private->rxtx_reg_val.rx or tx as vals parameter.
439 static void fsl_ssi_config(struct fsl_ssi_private
*ssi_private
, bool enable
,
440 struct fsl_ssi_reg_val
*vals
)
442 struct regmap
*regs
= ssi_private
->regs
;
443 struct fsl_ssi_reg_val
*avals
;
444 int nr_active_streams
;
448 regmap_read(regs
, CCSR_SSI_SCR
, &scr_val
);
450 nr_active_streams
= !!(scr_val
& CCSR_SSI_SCR_TE
) +
451 !!(scr_val
& CCSR_SSI_SCR_RE
);
453 if (nr_active_streams
- 1 > 0)
458 /* Find the other direction values rx or tx which we do not want to
460 if (&ssi_private
->rxtx_reg_val
.rx
== vals
)
461 avals
= &ssi_private
->rxtx_reg_val
.tx
;
463 avals
= &ssi_private
->rxtx_reg_val
.rx
;
465 /* If vals should be disabled, start with disabling the unit */
467 u32 scr
= fsl_ssi_disable_val(vals
->scr
, avals
->scr
,
469 regmap_update_bits(regs
, CCSR_SSI_SCR
, scr
, 0);
473 * We are running on a SoC which does not support online SSI
474 * reconfiguration, so we have to enable all necessary flags at once
475 * even if we do not use them later (capture and playback configuration)
477 if (ssi_private
->soc
->offline_config
) {
478 if ((enable
&& !nr_active_streams
) ||
479 (!enable
&& !keep_active
))
480 fsl_ssi_rxtx_config(ssi_private
, enable
);
486 * Configure single direction units while the SSI unit is running
487 * (online configuration)
490 regmap_update_bits(regs
, CCSR_SSI_SIER
, vals
->sier
, vals
->sier
);
491 regmap_update_bits(regs
, CCSR_SSI_SRCR
, vals
->srcr
, vals
->srcr
);
492 regmap_update_bits(regs
, CCSR_SSI_STCR
, vals
->stcr
, vals
->stcr
);
499 * Disabling the necessary flags for one of rx/tx while the
500 * other stream is active is a little bit more difficult. We
501 * have to disable only those flags that differ between both
502 * streams (rx XOR tx) and that are set in the stream that is
503 * disabled now. Otherwise we could alter flags of the other
507 /* These assignments are simply vals without bits set in avals*/
508 sier
= fsl_ssi_disable_val(vals
->sier
, avals
->sier
,
510 srcr
= fsl_ssi_disable_val(vals
->srcr
, avals
->srcr
,
512 stcr
= fsl_ssi_disable_val(vals
->stcr
, avals
->stcr
,
515 regmap_update_bits(regs
, CCSR_SSI_SRCR
, srcr
, 0);
516 regmap_update_bits(regs
, CCSR_SSI_STCR
, stcr
, 0);
517 regmap_update_bits(regs
, CCSR_SSI_SIER
, sier
, 0);
521 /* Enabling of subunits is done after configuration */
523 regmap_update_bits(regs
, CCSR_SSI_SCR
, vals
->scr
, vals
->scr
);
527 static void fsl_ssi_rx_config(struct fsl_ssi_private
*ssi_private
, bool enable
)
529 fsl_ssi_config(ssi_private
, enable
, &ssi_private
->rxtx_reg_val
.rx
);
532 static void fsl_ssi_tx_config(struct fsl_ssi_private
*ssi_private
, bool enable
)
534 fsl_ssi_config(ssi_private
, enable
, &ssi_private
->rxtx_reg_val
.tx
);
538 * Setup rx/tx register values used to enable/disable the streams. These will
539 * be used later in fsl_ssi_config to setup the streams without the need to
540 * check for all different SSI modes.
542 static void fsl_ssi_setup_reg_vals(struct fsl_ssi_private
*ssi_private
)
544 struct fsl_ssi_rxtx_reg_val
*reg
= &ssi_private
->rxtx_reg_val
;
546 reg
->rx
.sier
= CCSR_SSI_SIER_RFF0_EN
;
547 reg
->rx
.srcr
= CCSR_SSI_SRCR_RFEN0
;
549 reg
->tx
.sier
= CCSR_SSI_SIER_TFE0_EN
;
550 reg
->tx
.stcr
= CCSR_SSI_STCR_TFEN0
;
553 if (!fsl_ssi_is_ac97(ssi_private
)) {
554 reg
->rx
.scr
= CCSR_SSI_SCR_SSIEN
| CCSR_SSI_SCR_RE
;
555 reg
->rx
.sier
|= CCSR_SSI_SIER_RFF0_EN
;
556 reg
->tx
.scr
= CCSR_SSI_SCR_SSIEN
| CCSR_SSI_SCR_TE
;
557 reg
->tx
.sier
|= CCSR_SSI_SIER_TFE0_EN
;
560 if (ssi_private
->use_dma
) {
561 reg
->rx
.sier
|= CCSR_SSI_SIER_RDMAE
;
562 reg
->tx
.sier
|= CCSR_SSI_SIER_TDMAE
;
564 reg
->rx
.sier
|= CCSR_SSI_SIER_RIE
;
565 reg
->tx
.sier
|= CCSR_SSI_SIER_TIE
;
568 reg
->rx
.sier
|= FSLSSI_SIER_DBG_RX_FLAGS
;
569 reg
->tx
.sier
|= FSLSSI_SIER_DBG_TX_FLAGS
;
572 static void fsl_ssi_setup_ac97(struct fsl_ssi_private
*ssi_private
)
574 struct regmap
*regs
= ssi_private
->regs
;
577 * Setup the clock control register
579 regmap_write(regs
, CCSR_SSI_STCCR
,
580 CCSR_SSI_SxCCR_WL(17) | CCSR_SSI_SxCCR_DC(13));
581 regmap_write(regs
, CCSR_SSI_SRCCR
,
582 CCSR_SSI_SxCCR_WL(17) | CCSR_SSI_SxCCR_DC(13));
585 * Enable AC97 mode and startup the SSI
587 regmap_write(regs
, CCSR_SSI_SACNT
,
588 CCSR_SSI_SACNT_AC97EN
| CCSR_SSI_SACNT_FV
);
589 regmap_write(regs
, CCSR_SSI_SACCDIS
, 0xff);
590 regmap_write(regs
, CCSR_SSI_SACCEN
, 0x300);
593 * Enable SSI, Transmit and Receive. AC97 has to communicate with the
594 * codec before a stream is started.
596 regmap_update_bits(regs
, CCSR_SSI_SCR
,
597 CCSR_SSI_SCR_SSIEN
| CCSR_SSI_SCR_TE
| CCSR_SSI_SCR_RE
,
598 CCSR_SSI_SCR_SSIEN
| CCSR_SSI_SCR_TE
| CCSR_SSI_SCR_RE
);
600 regmap_write(regs
, CCSR_SSI_SOR
, CCSR_SSI_SOR_WAIT(3));
604 * fsl_ssi_startup: create a new substream
606 * This is the first function called when a stream is opened.
608 * If this is the first stream open, then grab the IRQ and program most of
611 static int fsl_ssi_startup(struct snd_pcm_substream
*substream
,
612 struct snd_soc_dai
*dai
)
614 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
615 struct fsl_ssi_private
*ssi_private
=
616 snd_soc_dai_get_drvdata(rtd
->cpu_dai
);
619 ret
= clk_prepare_enable(ssi_private
->clk
);
623 /* When using dual fifo mode, it is safer to ensure an even period
624 * size. If appearing to an odd number while DMA always starts its
625 * task from fifo0, fifo1 would be neglected at the end of each
626 * period. But SSI would still access fifo1 with an invalid data.
628 if (ssi_private
->use_dual_fifo
)
629 snd_pcm_hw_constraint_step(substream
->runtime
, 0,
630 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, 2);
636 * fsl_ssi_shutdown: shutdown the SSI
639 static void fsl_ssi_shutdown(struct snd_pcm_substream
*substream
,
640 struct snd_soc_dai
*dai
)
642 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
643 struct fsl_ssi_private
*ssi_private
=
644 snd_soc_dai_get_drvdata(rtd
->cpu_dai
);
646 clk_disable_unprepare(ssi_private
->clk
);
651 * fsl_ssi_set_bclk - configure Digital Audio Interface bit clock
653 * Note: This function can be only called when using SSI as DAI master
655 * Quick instruction for parameters:
656 * freq: Output BCLK frequency = samplerate * 32 (fixed) * channels
657 * dir: SND_SOC_CLOCK_OUT -> TxBCLK, SND_SOC_CLOCK_IN -> RxBCLK.
659 static int fsl_ssi_set_bclk(struct snd_pcm_substream
*substream
,
660 struct snd_soc_dai
*cpu_dai
,
661 struct snd_pcm_hw_params
*hw_params
)
663 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(cpu_dai
);
664 struct regmap
*regs
= ssi_private
->regs
;
665 int synchronous
= ssi_private
->cpu_dai_drv
.symmetric_rates
, ret
;
666 u32 pm
= 999, div2
, psr
, stccr
, mask
, afreq
, factor
, i
;
667 unsigned long clkrate
, baudrate
, tmprate
;
668 u64 sub
, savesub
= 100000;
670 bool baudclk_is_used
;
672 /* Prefer the explicitly set bitclock frequency */
673 if (ssi_private
->bitclk_freq
)
674 freq
= ssi_private
->bitclk_freq
;
676 freq
= params_channels(hw_params
) * 32 * params_rate(hw_params
);
678 /* Don't apply it to any non-baudclk circumstance */
679 if (IS_ERR(ssi_private
->baudclk
))
682 baudclk_is_used
= ssi_private
->baudclk_streams
& ~(BIT(substream
->stream
));
684 /* It should be already enough to divide clock by setting pm alone */
688 factor
= (div2
+ 1) * (7 * psr
+ 1) * 2;
690 for (i
= 0; i
< 255; i
++) {
691 tmprate
= freq
* factor
* (i
+ 1);
694 clkrate
= clk_get_rate(ssi_private
->baudclk
);
696 clkrate
= clk_round_rate(ssi_private
->baudclk
, tmprate
);
699 * Hardware limitation: The bclk rate must be
700 * never greater than 1/5 IPG clock rate
702 if (clkrate
* 5 > clk_get_rate(ssi_private
->clk
))
706 afreq
= clkrate
/ (i
+ 1);
710 else if (freq
/ afreq
== 1)
712 else if (afreq
/ freq
== 1)
717 /* Calculate the fraction */
721 if (sub
< savesub
&& !(i
== 0 && psr
== 0 && div2
== 0)) {
732 /* No proper pm found if it is still remaining the initial value */
734 dev_err(cpu_dai
->dev
, "failed to handle the required sysclk\n");
738 stccr
= CCSR_SSI_SxCCR_PM(pm
+ 1) | (div2
? CCSR_SSI_SxCCR_DIV2
: 0) |
739 (psr
? CCSR_SSI_SxCCR_PSR
: 0);
740 mask
= CCSR_SSI_SxCCR_PM_MASK
| CCSR_SSI_SxCCR_DIV2
|
743 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
|| synchronous
)
744 regmap_update_bits(regs
, CCSR_SSI_STCCR
, mask
, stccr
);
746 regmap_update_bits(regs
, CCSR_SSI_SRCCR
, mask
, stccr
);
748 if (!baudclk_is_used
) {
749 ret
= clk_set_rate(ssi_private
->baudclk
, baudrate
);
751 dev_err(cpu_dai
->dev
, "failed to set baudclk rate\n");
759 static int fsl_ssi_set_dai_sysclk(struct snd_soc_dai
*cpu_dai
,
760 int clk_id
, unsigned int freq
, int dir
)
762 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(cpu_dai
);
764 ssi_private
->bitclk_freq
= freq
;
770 * fsl_ssi_hw_params - program the sample size
772 * Most of the SSI registers have been programmed in the startup function,
773 * but the word length must be programmed here. Unfortunately, programming
774 * the SxCCR.WL bits requires the SSI to be temporarily disabled. This can
775 * cause a problem with supporting simultaneous playback and capture. If
776 * the SSI is already playing a stream, then that stream may be temporarily
777 * stopped when you start capture.
779 * Note: The SxCCR.DC and SxCCR.PM bits are only used if the SSI is the
782 static int fsl_ssi_hw_params(struct snd_pcm_substream
*substream
,
783 struct snd_pcm_hw_params
*hw_params
, struct snd_soc_dai
*cpu_dai
)
785 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(cpu_dai
);
786 struct regmap
*regs
= ssi_private
->regs
;
787 unsigned int channels
= params_channels(hw_params
);
788 unsigned int sample_size
= params_width(hw_params
);
789 u32 wl
= CCSR_SSI_SxCCR_WL(sample_size
);
794 regmap_read(regs
, CCSR_SSI_SCR
, &scr_val
);
795 enabled
= scr_val
& CCSR_SSI_SCR_SSIEN
;
798 * If we're in synchronous mode, and the SSI is already enabled,
799 * then STCCR is already set properly.
801 if (enabled
&& ssi_private
->cpu_dai_drv
.symmetric_rates
)
804 if (fsl_ssi_is_i2s_master(ssi_private
)) {
805 ret
= fsl_ssi_set_bclk(substream
, cpu_dai
, hw_params
);
809 /* Do not enable the clock if it is already enabled */
810 if (!(ssi_private
->baudclk_streams
& BIT(substream
->stream
))) {
811 ret
= clk_prepare_enable(ssi_private
->baudclk
);
815 ssi_private
->baudclk_streams
|= BIT(substream
->stream
);
819 if (!fsl_ssi_is_ac97(ssi_private
)) {
822 * Switch to normal net mode in order to have a frame sync
823 * signal every 32 bits instead of 16 bits
825 if (fsl_ssi_is_i2s_cbm_cfs(ssi_private
) && sample_size
== 16)
826 i2smode
= CCSR_SSI_SCR_I2S_MODE_NORMAL
|
829 i2smode
= ssi_private
->i2s_mode
;
831 regmap_update_bits(regs
, CCSR_SSI_SCR
,
832 CCSR_SSI_SCR_NET
| CCSR_SSI_SCR_I2S_MODE_MASK
,
833 channels
== 1 ? 0 : i2smode
);
837 * FIXME: The documentation says that SxCCR[WL] should not be
838 * modified while the SSI is enabled. The only time this can
839 * happen is if we're trying to do simultaneous playback and
840 * capture in asynchronous mode. Unfortunately, I have been enable
841 * to get that to work at all on the P1022DS. Therefore, we don't
842 * bother to disable/enable the SSI when setting SxCCR[WL], because
843 * the SSI will stop anyway. Maybe one day, this will get fixed.
846 /* In synchronous mode, the SSI uses STCCR for capture */
847 if ((substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) ||
848 ssi_private
->cpu_dai_drv
.symmetric_rates
)
849 regmap_update_bits(regs
, CCSR_SSI_STCCR
, CCSR_SSI_SxCCR_WL_MASK
,
852 regmap_update_bits(regs
, CCSR_SSI_SRCCR
, CCSR_SSI_SxCCR_WL_MASK
,
858 static int fsl_ssi_hw_free(struct snd_pcm_substream
*substream
,
859 struct snd_soc_dai
*cpu_dai
)
861 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
862 struct fsl_ssi_private
*ssi_private
=
863 snd_soc_dai_get_drvdata(rtd
->cpu_dai
);
865 if (fsl_ssi_is_i2s_master(ssi_private
) &&
866 ssi_private
->baudclk_streams
& BIT(substream
->stream
)) {
867 clk_disable_unprepare(ssi_private
->baudclk
);
868 ssi_private
->baudclk_streams
&= ~BIT(substream
->stream
);
874 static int _fsl_ssi_set_dai_fmt(struct device
*dev
,
875 struct fsl_ssi_private
*ssi_private
,
878 struct regmap
*regs
= ssi_private
->regs
;
879 u32 strcr
= 0, stcr
, srcr
, scr
, mask
;
882 ssi_private
->dai_fmt
= fmt
;
884 if (fsl_ssi_is_i2s_master(ssi_private
) && IS_ERR(ssi_private
->baudclk
)) {
885 dev_err(dev
, "baudclk is missing which is necessary for master mode\n");
889 fsl_ssi_setup_reg_vals(ssi_private
);
891 regmap_read(regs
, CCSR_SSI_SCR
, &scr
);
892 scr
&= ~(CCSR_SSI_SCR_SYN
| CCSR_SSI_SCR_I2S_MODE_MASK
);
893 scr
|= CCSR_SSI_SCR_SYNC_TX_FS
;
895 mask
= CCSR_SSI_STCR_TXBIT0
| CCSR_SSI_STCR_TFDIR
| CCSR_SSI_STCR_TXDIR
|
896 CCSR_SSI_STCR_TSCKP
| CCSR_SSI_STCR_TFSI
| CCSR_SSI_STCR_TFSL
|
898 regmap_read(regs
, CCSR_SSI_STCR
, &stcr
);
899 regmap_read(regs
, CCSR_SSI_SRCR
, &srcr
);
903 ssi_private
->i2s_mode
= CCSR_SSI_SCR_NET
;
904 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
905 case SND_SOC_DAIFMT_I2S
:
906 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
907 case SND_SOC_DAIFMT_CBM_CFS
:
908 case SND_SOC_DAIFMT_CBS_CFS
:
909 ssi_private
->i2s_mode
|= CCSR_SSI_SCR_I2S_MODE_MASTER
;
910 regmap_update_bits(regs
, CCSR_SSI_STCCR
,
911 CCSR_SSI_SxCCR_DC_MASK
,
912 CCSR_SSI_SxCCR_DC(2));
913 regmap_update_bits(regs
, CCSR_SSI_SRCCR
,
914 CCSR_SSI_SxCCR_DC_MASK
,
915 CCSR_SSI_SxCCR_DC(2));
917 case SND_SOC_DAIFMT_CBM_CFM
:
918 ssi_private
->i2s_mode
|= CCSR_SSI_SCR_I2S_MODE_SLAVE
;
924 /* Data on rising edge of bclk, frame low, 1clk before data */
925 strcr
|= CCSR_SSI_STCR_TFSI
| CCSR_SSI_STCR_TSCKP
|
926 CCSR_SSI_STCR_TXBIT0
| CCSR_SSI_STCR_TEFS
;
928 case SND_SOC_DAIFMT_LEFT_J
:
929 /* Data on rising edge of bclk, frame high */
930 strcr
|= CCSR_SSI_STCR_TXBIT0
| CCSR_SSI_STCR_TSCKP
;
932 case SND_SOC_DAIFMT_DSP_A
:
933 /* Data on rising edge of bclk, frame high, 1clk before data */
934 strcr
|= CCSR_SSI_STCR_TFSL
| CCSR_SSI_STCR_TSCKP
|
935 CCSR_SSI_STCR_TXBIT0
| CCSR_SSI_STCR_TEFS
;
937 case SND_SOC_DAIFMT_DSP_B
:
938 /* Data on rising edge of bclk, frame high */
939 strcr
|= CCSR_SSI_STCR_TFSL
| CCSR_SSI_STCR_TSCKP
|
940 CCSR_SSI_STCR_TXBIT0
;
942 case SND_SOC_DAIFMT_AC97
:
943 ssi_private
->i2s_mode
|= CCSR_SSI_SCR_I2S_MODE_NORMAL
;
948 scr
|= ssi_private
->i2s_mode
;
950 /* DAI clock inversion */
951 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
952 case SND_SOC_DAIFMT_NB_NF
:
953 /* Nothing to do for both normal cases */
955 case SND_SOC_DAIFMT_IB_NF
:
956 /* Invert bit clock */
957 strcr
^= CCSR_SSI_STCR_TSCKP
;
959 case SND_SOC_DAIFMT_NB_IF
:
960 /* Invert frame clock */
961 strcr
^= CCSR_SSI_STCR_TFSI
;
963 case SND_SOC_DAIFMT_IB_IF
:
964 /* Invert both clocks */
965 strcr
^= CCSR_SSI_STCR_TSCKP
;
966 strcr
^= CCSR_SSI_STCR_TFSI
;
972 /* DAI clock master masks */
973 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
974 case SND_SOC_DAIFMT_CBS_CFS
:
975 strcr
|= CCSR_SSI_STCR_TFDIR
| CCSR_SSI_STCR_TXDIR
;
976 scr
|= CCSR_SSI_SCR_SYS_CLK_EN
;
978 case SND_SOC_DAIFMT_CBM_CFM
:
979 scr
&= ~CCSR_SSI_SCR_SYS_CLK_EN
;
981 case SND_SOC_DAIFMT_CBM_CFS
:
982 strcr
&= ~CCSR_SSI_STCR_TXDIR
;
983 strcr
|= CCSR_SSI_STCR_TFDIR
;
984 scr
&= ~CCSR_SSI_SCR_SYS_CLK_EN
;
987 if (!fsl_ssi_is_ac97(ssi_private
))
994 if (ssi_private
->cpu_dai_drv
.symmetric_rates
995 || fsl_ssi_is_ac97(ssi_private
)) {
996 /* Need to clear RXDIR when using SYNC or AC97 mode */
997 srcr
&= ~CCSR_SSI_SRCR_RXDIR
;
998 scr
|= CCSR_SSI_SCR_SYN
;
1001 regmap_write(regs
, CCSR_SSI_STCR
, stcr
);
1002 regmap_write(regs
, CCSR_SSI_SRCR
, srcr
);
1003 regmap_write(regs
, CCSR_SSI_SCR
, scr
);
1006 * Set the watermark for transmit FIFI 0 and receive FIFO 0. We don't
1007 * use FIFO 1. We program the transmit water to signal a DMA transfer
1008 * if there are only two (or fewer) elements left in the FIFO. Two
1009 * elements equals one frame (left channel, right channel). This value,
1010 * however, depends on the depth of the transmit buffer.
1012 * We set the watermark on the same level as the DMA burstsize. For
1013 * fiq it is probably better to use the biggest possible watermark
1016 if (ssi_private
->use_dma
)
1017 wm
= ssi_private
->fifo_depth
- 2;
1019 wm
= ssi_private
->fifo_depth
;
1021 regmap_write(regs
, CCSR_SSI_SFCSR
,
1022 CCSR_SSI_SFCSR_TFWM0(wm
) | CCSR_SSI_SFCSR_RFWM0(wm
) |
1023 CCSR_SSI_SFCSR_TFWM1(wm
) | CCSR_SSI_SFCSR_RFWM1(wm
));
1025 if (ssi_private
->use_dual_fifo
) {
1026 regmap_update_bits(regs
, CCSR_SSI_SRCR
, CCSR_SSI_SRCR_RFEN1
,
1027 CCSR_SSI_SRCR_RFEN1
);
1028 regmap_update_bits(regs
, CCSR_SSI_STCR
, CCSR_SSI_STCR_TFEN1
,
1029 CCSR_SSI_STCR_TFEN1
);
1030 regmap_update_bits(regs
, CCSR_SSI_SCR
, CCSR_SSI_SCR_TCH_EN
,
1031 CCSR_SSI_SCR_TCH_EN
);
1034 if ((fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) == SND_SOC_DAIFMT_AC97
)
1035 fsl_ssi_setup_ac97(ssi_private
);
1042 * fsl_ssi_set_dai_fmt - configure Digital Audio Interface Format.
1044 static int fsl_ssi_set_dai_fmt(struct snd_soc_dai
*cpu_dai
, unsigned int fmt
)
1046 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(cpu_dai
);
1048 return _fsl_ssi_set_dai_fmt(cpu_dai
->dev
, ssi_private
, fmt
);
1052 * fsl_ssi_set_dai_tdm_slot - set TDM slot number
1054 * Note: This function can be only called when using SSI as DAI master
1056 static int fsl_ssi_set_dai_tdm_slot(struct snd_soc_dai
*cpu_dai
, u32 tx_mask
,
1057 u32 rx_mask
, int slots
, int slot_width
)
1059 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(cpu_dai
);
1060 struct regmap
*regs
= ssi_private
->regs
;
1063 /* The slot number should be >= 2 if using Network mode or I2S mode */
1064 regmap_read(regs
, CCSR_SSI_SCR
, &val
);
1065 val
&= CCSR_SSI_SCR_I2S_MODE_MASK
| CCSR_SSI_SCR_NET
;
1066 if (val
&& slots
< 2) {
1067 dev_err(cpu_dai
->dev
, "slot number should be >= 2 in I2S or NET\n");
1071 regmap_update_bits(regs
, CCSR_SSI_STCCR
, CCSR_SSI_SxCCR_DC_MASK
,
1072 CCSR_SSI_SxCCR_DC(slots
));
1073 regmap_update_bits(regs
, CCSR_SSI_SRCCR
, CCSR_SSI_SxCCR_DC_MASK
,
1074 CCSR_SSI_SxCCR_DC(slots
));
1076 /* The register SxMSKs needs SSI to provide essential clock due to
1077 * hardware design. So we here temporarily enable SSI to set them.
1079 regmap_read(regs
, CCSR_SSI_SCR
, &val
);
1080 val
&= CCSR_SSI_SCR_SSIEN
;
1081 regmap_update_bits(regs
, CCSR_SSI_SCR
, CCSR_SSI_SCR_SSIEN
,
1082 CCSR_SSI_SCR_SSIEN
);
1084 regmap_write(regs
, CCSR_SSI_STMSK
, ~tx_mask
);
1085 regmap_write(regs
, CCSR_SSI_SRMSK
, ~rx_mask
);
1087 regmap_update_bits(regs
, CCSR_SSI_SCR
, CCSR_SSI_SCR_SSIEN
, val
);
1093 * fsl_ssi_trigger: start and stop the DMA transfer.
1095 * This function is called by ALSA to start, stop, pause, and resume the DMA
1098 * The DMA channel is in external master start and pause mode, which
1099 * means the SSI completely controls the flow of data.
1101 static int fsl_ssi_trigger(struct snd_pcm_substream
*substream
, int cmd
,
1102 struct snd_soc_dai
*dai
)
1104 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1105 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(rtd
->cpu_dai
);
1106 struct regmap
*regs
= ssi_private
->regs
;
1109 case SNDRV_PCM_TRIGGER_START
:
1110 case SNDRV_PCM_TRIGGER_RESUME
:
1111 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1112 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1113 fsl_ssi_tx_config(ssi_private
, true);
1115 fsl_ssi_rx_config(ssi_private
, true);
1118 case SNDRV_PCM_TRIGGER_STOP
:
1119 case SNDRV_PCM_TRIGGER_SUSPEND
:
1120 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1121 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1122 fsl_ssi_tx_config(ssi_private
, false);
1124 fsl_ssi_rx_config(ssi_private
, false);
1131 if (fsl_ssi_is_ac97(ssi_private
)) {
1132 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1133 regmap_write(regs
, CCSR_SSI_SOR
, CCSR_SSI_SOR_TX_CLR
);
1135 regmap_write(regs
, CCSR_SSI_SOR
, CCSR_SSI_SOR_RX_CLR
);
1141 static int fsl_ssi_dai_probe(struct snd_soc_dai
*dai
)
1143 struct fsl_ssi_private
*ssi_private
= snd_soc_dai_get_drvdata(dai
);
1145 if (ssi_private
->soc
->imx
&& ssi_private
->use_dma
) {
1146 dai
->playback_dma_data
= &ssi_private
->dma_params_tx
;
1147 dai
->capture_dma_data
= &ssi_private
->dma_params_rx
;
1153 static const struct snd_soc_dai_ops fsl_ssi_dai_ops
= {
1154 .startup
= fsl_ssi_startup
,
1155 .shutdown
= fsl_ssi_shutdown
,
1156 .hw_params
= fsl_ssi_hw_params
,
1157 .hw_free
= fsl_ssi_hw_free
,
1158 .set_fmt
= fsl_ssi_set_dai_fmt
,
1159 .set_sysclk
= fsl_ssi_set_dai_sysclk
,
1160 .set_tdm_slot
= fsl_ssi_set_dai_tdm_slot
,
1161 .trigger
= fsl_ssi_trigger
,
1164 /* Template for the CPU dai driver structure */
1165 static struct snd_soc_dai_driver fsl_ssi_dai_template
= {
1166 .probe
= fsl_ssi_dai_probe
,
1168 .stream_name
= "CPU-Playback",
1171 .rates
= FSLSSI_I2S_RATES
,
1172 .formats
= FSLSSI_I2S_FORMATS
,
1175 .stream_name
= "CPU-Capture",
1178 .rates
= FSLSSI_I2S_RATES
,
1179 .formats
= FSLSSI_I2S_FORMATS
,
1181 .ops
= &fsl_ssi_dai_ops
,
1184 static const struct snd_soc_component_driver fsl_ssi_component
= {
1188 static struct snd_soc_dai_driver fsl_ssi_ac97_dai
= {
1189 .bus_control
= true,
1190 .probe
= fsl_ssi_dai_probe
,
1192 .stream_name
= "AC97 Playback",
1195 .rates
= SNDRV_PCM_RATE_8000_48000
,
1196 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1199 .stream_name
= "AC97 Capture",
1202 .rates
= SNDRV_PCM_RATE_48000
,
1203 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1205 .ops
= &fsl_ssi_dai_ops
,
1209 static struct fsl_ssi_private
*fsl_ac97_data
;
1211 static void fsl_ssi_ac97_write(struct snd_ac97
*ac97
, unsigned short reg
,
1214 struct regmap
*regs
= fsl_ac97_data
->regs
;
1222 ret
= clk_prepare_enable(fsl_ac97_data
->clk
);
1224 pr_err("ac97 write clk_prepare_enable failed: %d\n",
1230 regmap_write(regs
, CCSR_SSI_SACADD
, lreg
);
1233 regmap_write(regs
, CCSR_SSI_SACDAT
, lval
);
1235 regmap_update_bits(regs
, CCSR_SSI_SACNT
, CCSR_SSI_SACNT_RDWR_MASK
,
1239 clk_disable_unprepare(fsl_ac97_data
->clk
);
1242 static unsigned short fsl_ssi_ac97_read(struct snd_ac97
*ac97
,
1245 struct regmap
*regs
= fsl_ac97_data
->regs
;
1247 unsigned short val
= -1;
1252 ret
= clk_prepare_enable(fsl_ac97_data
->clk
);
1254 pr_err("ac97 read clk_prepare_enable failed: %d\n",
1259 lreg
= (reg
& 0x7f) << 12;
1260 regmap_write(regs
, CCSR_SSI_SACADD
, lreg
);
1261 regmap_update_bits(regs
, CCSR_SSI_SACNT
, CCSR_SSI_SACNT_RDWR_MASK
,
1266 regmap_read(regs
, CCSR_SSI_SACDAT
, ®_val
);
1267 val
= (reg_val
>> 4) & 0xffff;
1269 clk_disable_unprepare(fsl_ac97_data
->clk
);
1274 static struct snd_ac97_bus_ops fsl_ssi_ac97_ops
= {
1275 .read
= fsl_ssi_ac97_read
,
1276 .write
= fsl_ssi_ac97_write
,
1280 * Make every character in a string lower-case
1282 static void make_lowercase(char *s
)
1288 if ((c
>= 'A') && (c
<= 'Z'))
1289 *p
= c
+ ('a' - 'A');
1294 static int fsl_ssi_imx_probe(struct platform_device
*pdev
,
1295 struct fsl_ssi_private
*ssi_private
, void __iomem
*iomem
)
1297 struct device_node
*np
= pdev
->dev
.of_node
;
1301 if (ssi_private
->has_ipg_clk_name
)
1302 ssi_private
->clk
= devm_clk_get(&pdev
->dev
, "ipg");
1304 ssi_private
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
1305 if (IS_ERR(ssi_private
->clk
)) {
1306 ret
= PTR_ERR(ssi_private
->clk
);
1307 dev_err(&pdev
->dev
, "could not get clock: %d\n", ret
);
1311 if (!ssi_private
->has_ipg_clk_name
) {
1312 ret
= clk_prepare_enable(ssi_private
->clk
);
1314 dev_err(&pdev
->dev
, "clk_prepare_enable failed: %d\n", ret
);
1319 /* For those SLAVE implementations, we ignore non-baudclk cases
1320 * and, instead, abandon MASTER mode that needs baud clock.
1322 ssi_private
->baudclk
= devm_clk_get(&pdev
->dev
, "baud");
1323 if (IS_ERR(ssi_private
->baudclk
))
1324 dev_dbg(&pdev
->dev
, "could not get baud clock: %ld\n",
1325 PTR_ERR(ssi_private
->baudclk
));
1328 * We have burstsize be "fifo_depth - 2" to match the SSI
1329 * watermark setting in fsl_ssi_startup().
1331 ssi_private
->dma_params_tx
.maxburst
= ssi_private
->fifo_depth
- 2;
1332 ssi_private
->dma_params_rx
.maxburst
= ssi_private
->fifo_depth
- 2;
1333 ssi_private
->dma_params_tx
.addr
= ssi_private
->ssi_phys
+ CCSR_SSI_STX0
;
1334 ssi_private
->dma_params_rx
.addr
= ssi_private
->ssi_phys
+ CCSR_SSI_SRX0
;
1336 ret
= of_property_read_u32_array(np
, "dmas", dmas
, 4);
1337 if (ssi_private
->use_dma
&& !ret
&& dmas
[2] == IMX_DMATYPE_SSI_DUAL
) {
1338 ssi_private
->use_dual_fifo
= true;
1339 /* When using dual fifo mode, we need to keep watermark
1340 * as even numbers due to dma script limitation.
1342 ssi_private
->dma_params_tx
.maxburst
&= ~0x1;
1343 ssi_private
->dma_params_rx
.maxburst
&= ~0x1;
1346 if (!ssi_private
->use_dma
) {
1349 * Some boards use an incompatible codec. To get it
1350 * working, we are using imx-fiq-pcm-audio, that
1351 * can handle those codecs. DMA is not possible in this
1355 ssi_private
->fiq_params
.irq
= ssi_private
->irq
;
1356 ssi_private
->fiq_params
.base
= iomem
;
1357 ssi_private
->fiq_params
.dma_params_rx
=
1358 &ssi_private
->dma_params_rx
;
1359 ssi_private
->fiq_params
.dma_params_tx
=
1360 &ssi_private
->dma_params_tx
;
1362 ret
= imx_pcm_fiq_init(pdev
, &ssi_private
->fiq_params
);
1366 ret
= imx_pcm_dma_init(pdev
, IMX_SSI_DMABUF_SIZE
);
1375 if (!ssi_private
->has_ipg_clk_name
)
1376 clk_disable_unprepare(ssi_private
->clk
);
1380 static void fsl_ssi_imx_clean(struct platform_device
*pdev
,
1381 struct fsl_ssi_private
*ssi_private
)
1383 if (!ssi_private
->use_dma
)
1384 imx_pcm_fiq_exit(pdev
);
1385 if (!ssi_private
->has_ipg_clk_name
)
1386 clk_disable_unprepare(ssi_private
->clk
);
1389 static int fsl_ssi_probe(struct platform_device
*pdev
)
1391 struct fsl_ssi_private
*ssi_private
;
1393 struct device_node
*np
= pdev
->dev
.of_node
;
1394 const struct of_device_id
*of_id
;
1395 const char *p
, *sprop
;
1396 const uint32_t *iprop
;
1397 struct resource
*res
;
1398 void __iomem
*iomem
;
1401 of_id
= of_match_device(fsl_ssi_ids
, &pdev
->dev
);
1402 if (!of_id
|| !of_id
->data
)
1405 ssi_private
= devm_kzalloc(&pdev
->dev
, sizeof(*ssi_private
),
1408 dev_err(&pdev
->dev
, "could not allocate DAI object\n");
1412 ssi_private
->soc
= of_id
->data
;
1414 sprop
= of_get_property(np
, "fsl,mode", NULL
);
1416 if (!strcmp(sprop
, "ac97-slave"))
1417 ssi_private
->dai_fmt
= SND_SOC_DAIFMT_AC97
;
1420 ssi_private
->use_dma
= !of_property_read_bool(np
,
1421 "fsl,fiq-stream-filter");
1423 if (fsl_ssi_is_ac97(ssi_private
)) {
1424 memcpy(&ssi_private
->cpu_dai_drv
, &fsl_ssi_ac97_dai
,
1425 sizeof(fsl_ssi_ac97_dai
));
1427 fsl_ac97_data
= ssi_private
;
1429 ret
= snd_soc_set_ac97_ops_of_reset(&fsl_ssi_ac97_ops
, pdev
);
1431 dev_err(&pdev
->dev
, "could not set AC'97 ops\n");
1435 /* Initialize this copy of the CPU DAI driver structure */
1436 memcpy(&ssi_private
->cpu_dai_drv
, &fsl_ssi_dai_template
,
1437 sizeof(fsl_ssi_dai_template
));
1439 ssi_private
->cpu_dai_drv
.name
= dev_name(&pdev
->dev
);
1441 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1442 iomem
= devm_ioremap_resource(&pdev
->dev
, res
);
1444 return PTR_ERR(iomem
);
1445 ssi_private
->ssi_phys
= res
->start
;
1447 ret
= of_property_match_string(np
, "clock-names", "ipg");
1449 ssi_private
->has_ipg_clk_name
= false;
1450 ssi_private
->regs
= devm_regmap_init_mmio(&pdev
->dev
, iomem
,
1451 &fsl_ssi_regconfig
);
1453 ssi_private
->has_ipg_clk_name
= true;
1454 ssi_private
->regs
= devm_regmap_init_mmio_clk(&pdev
->dev
,
1455 "ipg", iomem
, &fsl_ssi_regconfig
);
1457 if (IS_ERR(ssi_private
->regs
)) {
1458 dev_err(&pdev
->dev
, "Failed to init register map\n");
1459 return PTR_ERR(ssi_private
->regs
);
1462 ssi_private
->irq
= platform_get_irq(pdev
, 0);
1463 if (ssi_private
->irq
< 0) {
1464 dev_err(&pdev
->dev
, "no irq for node %s\n", pdev
->name
);
1465 return ssi_private
->irq
;
1468 /* Are the RX and the TX clocks locked? */
1469 if (!of_find_property(np
, "fsl,ssi-asynchronous", NULL
)) {
1470 if (!fsl_ssi_is_ac97(ssi_private
))
1471 ssi_private
->cpu_dai_drv
.symmetric_rates
= 1;
1473 ssi_private
->cpu_dai_drv
.symmetric_channels
= 1;
1474 ssi_private
->cpu_dai_drv
.symmetric_samplebits
= 1;
1477 /* Determine the FIFO depth. */
1478 iprop
= of_get_property(np
, "fsl,fifo-depth", NULL
);
1480 ssi_private
->fifo_depth
= be32_to_cpup(iprop
);
1482 /* Older 8610 DTs didn't have the fifo-depth property */
1483 ssi_private
->fifo_depth
= 8;
1485 dev_set_drvdata(&pdev
->dev
, ssi_private
);
1487 if (ssi_private
->soc
->imx
) {
1488 ret
= fsl_ssi_imx_probe(pdev
, ssi_private
, iomem
);
1493 ret
= devm_snd_soc_register_component(&pdev
->dev
, &fsl_ssi_component
,
1494 &ssi_private
->cpu_dai_drv
, 1);
1496 dev_err(&pdev
->dev
, "failed to register DAI: %d\n", ret
);
1497 goto error_asoc_register
;
1500 if (ssi_private
->use_dma
) {
1501 ret
= devm_request_irq(&pdev
->dev
, ssi_private
->irq
,
1502 fsl_ssi_isr
, 0, dev_name(&pdev
->dev
),
1505 dev_err(&pdev
->dev
, "could not claim irq %u\n",
1507 goto error_asoc_register
;
1511 ret
= fsl_ssi_debugfs_create(&ssi_private
->dbg_stats
, &pdev
->dev
);
1513 goto error_asoc_register
;
1516 * If codec-handle property is missing from SSI node, we assume
1517 * that the machine driver uses new binding which does not require
1518 * SSI driver to trigger machine driver's probe.
1520 if (!of_get_property(np
, "codec-handle", NULL
))
1523 /* Trigger the machine driver's probe function. The platform driver
1524 * name of the machine driver is taken from /compatible property of the
1525 * device tree. We also pass the address of the CPU DAI driver
1528 sprop
= of_get_property(of_find_node_by_path("/"), "compatible", NULL
);
1529 /* Sometimes the compatible name has a "fsl," prefix, so we strip it. */
1530 p
= strrchr(sprop
, ',');
1533 snprintf(name
, sizeof(name
), "snd-soc-%s", sprop
);
1534 make_lowercase(name
);
1537 platform_device_register_data(&pdev
->dev
, name
, 0, NULL
, 0);
1538 if (IS_ERR(ssi_private
->pdev
)) {
1539 ret
= PTR_ERR(ssi_private
->pdev
);
1540 dev_err(&pdev
->dev
, "failed to register platform: %d\n", ret
);
1541 goto error_sound_card
;
1545 if (ssi_private
->dai_fmt
)
1546 _fsl_ssi_set_dai_fmt(&pdev
->dev
, ssi_private
,
1547 ssi_private
->dai_fmt
);
1549 if (fsl_ssi_is_ac97(ssi_private
)) {
1552 ret
= of_property_read_u32(np
, "cell-index", &ssi_idx
);
1554 dev_err(&pdev
->dev
, "cannot get SSI index property\n");
1555 goto error_sound_card
;
1559 platform_device_register_data(NULL
,
1560 "ac97-codec", ssi_idx
, NULL
, 0);
1561 if (IS_ERR(ssi_private
->pdev
)) {
1562 ret
= PTR_ERR(ssi_private
->pdev
);
1564 "failed to register AC97 codec platform: %d\n",
1566 goto error_sound_card
;
1573 fsl_ssi_debugfs_remove(&ssi_private
->dbg_stats
);
1575 error_asoc_register
:
1576 if (ssi_private
->soc
->imx
)
1577 fsl_ssi_imx_clean(pdev
, ssi_private
);
1582 static int fsl_ssi_remove(struct platform_device
*pdev
)
1584 struct fsl_ssi_private
*ssi_private
= dev_get_drvdata(&pdev
->dev
);
1586 fsl_ssi_debugfs_remove(&ssi_private
->dbg_stats
);
1588 if (ssi_private
->pdev
)
1589 platform_device_unregister(ssi_private
->pdev
);
1591 if (ssi_private
->soc
->imx
)
1592 fsl_ssi_imx_clean(pdev
, ssi_private
);
1594 if (fsl_ssi_is_ac97(ssi_private
))
1595 snd_soc_set_ac97_ops(NULL
);
1600 #ifdef CONFIG_PM_SLEEP
1601 static int fsl_ssi_suspend(struct device
*dev
)
1603 struct fsl_ssi_private
*ssi_private
= dev_get_drvdata(dev
);
1604 struct regmap
*regs
= ssi_private
->regs
;
1606 regmap_read(regs
, CCSR_SSI_SFCSR
,
1607 &ssi_private
->regcache_sfcsr
);
1608 regmap_read(regs
, CCSR_SSI_SACNT
,
1609 &ssi_private
->regcache_sacnt
);
1611 regcache_cache_only(regs
, true);
1612 regcache_mark_dirty(regs
);
1617 static int fsl_ssi_resume(struct device
*dev
)
1619 struct fsl_ssi_private
*ssi_private
= dev_get_drvdata(dev
);
1620 struct regmap
*regs
= ssi_private
->regs
;
1622 regcache_cache_only(regs
, false);
1624 regmap_update_bits(regs
, CCSR_SSI_SFCSR
,
1625 CCSR_SSI_SFCSR_RFWM1_MASK
| CCSR_SSI_SFCSR_TFWM1_MASK
|
1626 CCSR_SSI_SFCSR_RFWM0_MASK
| CCSR_SSI_SFCSR_TFWM0_MASK
,
1627 ssi_private
->regcache_sfcsr
);
1628 regmap_write(regs
, CCSR_SSI_SACNT
,
1629 ssi_private
->regcache_sacnt
);
1631 return regcache_sync(regs
);
1633 #endif /* CONFIG_PM_SLEEP */
1635 static const struct dev_pm_ops fsl_ssi_pm
= {
1636 SET_SYSTEM_SLEEP_PM_OPS(fsl_ssi_suspend
, fsl_ssi_resume
)
1639 static struct platform_driver fsl_ssi_driver
= {
1641 .name
= "fsl-ssi-dai",
1642 .of_match_table
= fsl_ssi_ids
,
1645 .probe
= fsl_ssi_probe
,
1646 .remove
= fsl_ssi_remove
,
1649 module_platform_driver(fsl_ssi_driver
);
1651 MODULE_ALIAS("platform:fsl-ssi-dai");
1652 MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
1653 MODULE_DESCRIPTION("Freescale Synchronous Serial Interface (SSI) ASoC Driver");
1654 MODULE_LICENSE("GPL v2");