2 * Freescale S/PDIF ALSA SoC Digital Audio Interface (DAI) driver
4 * Copyright (C) 2013 Freescale Semiconductor, Inc.
6 * Based on stmp3xxx_spdif_dai.c
8 * Copyright 2008 SigmaTel, Inc
9 * Copyright 2008 Embedded Alley Solutions, Inc
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
16 #include <linux/bitrev.h>
17 #include <linux/clk.h>
18 #include <linux/module.h>
19 #include <linux/of_address.h>
20 #include <linux/of_device.h>
21 #include <linux/of_irq.h>
22 #include <linux/regmap.h>
24 #include <sound/asoundef.h>
25 #include <sound/dmaengine_pcm.h>
26 #include <sound/soc.h>
28 #include "fsl_spdif.h"
31 #define FSL_SPDIF_TXFIFO_WML 0x8
32 #define FSL_SPDIF_RXFIFO_WML 0x8
34 #define INTR_FOR_PLAYBACK (INT_TXFIFO_RESYNC)
35 #define INTR_FOR_CAPTURE (INT_SYM_ERR | INT_BIT_ERR | INT_URX_FUL |\
36 INT_URX_OV | INT_QRX_FUL | INT_QRX_OV |\
37 INT_UQ_SYNC | INT_UQ_ERR | INT_RXFIFO_RESYNC |\
38 INT_LOSS_LOCK | INT_DPLL_LOCKED)
40 #define SIE_INTR_FOR(tx) (tx ? INTR_FOR_PLAYBACK : INTR_FOR_CAPTURE)
42 /* Index list for the values that has if (DPLL Locked) condition */
43 static u8 srpc_dpll_locked[] = { 0x0, 0x1, 0x2, 0x3, 0x4, 0xa, 0xb };
44 #define SRPC_NODPLL_START1 0x5
45 #define SRPC_NODPLL_START2 0xc
47 #define DEFAULT_RXCLK_SRC 1
50 * SPDIF control structure
51 * Defines channel status, subcode and Q sub
53 struct spdif_mixer_control {
54 /* spinlock to access control data */
57 /* IEC958 channel tx status bit */
58 unsigned char ch_status[4];
61 unsigned char subcode[2 * SPDIF_UBITS_SIZE];
63 /* Q subcode part of user bits */
64 unsigned char qsub[2 * SPDIF_QSUB_SIZE];
66 /* Buffer offset for U/Q */
70 /* Ready buffer index of the two buffers */
75 * fsl_spdif_priv: Freescale SPDIF private data
77 * @fsl_spdif_control: SPDIF control data
78 * @cpu_dai_drv: cpu dai driver
79 * @pdev: platform device pointer
80 * @regmap: regmap handler
81 * @dpll_locked: dpll lock flag
82 * @txrate: the best rates for playback
83 * @txclk_df: STC_TXCLK_DF dividers value for playback
84 * @sysclk_df: STC_SYSCLK_DF dividers value for playback
85 * @txclk_src: STC_TXCLK_SRC values for playback
86 * @rxclk_src: SRPC_CLKSRC_SEL values for capture
87 * @txclk: tx clock sources for playback
88 * @rxclk: rx clock sources for capture
89 * @coreclk: core clock for register access via DMA
90 * @sysclk: system clock for rx clock rate measurement
91 * @spbaclk: SPBA clock (optional, depending on SoC design)
92 * @dma_params_tx: DMA parameters for transmit channel
93 * @dma_params_rx: DMA parameters for receive channel
95 struct fsl_spdif_priv {
96 struct spdif_mixer_control fsl_spdif_control;
97 struct snd_soc_dai_driver cpu_dai_drv;
98 struct platform_device *pdev;
99 struct regmap *regmap;
101 u32 txrate[SPDIF_TXRATE_MAX];
102 u8 txclk_df[SPDIF_TXRATE_MAX];
103 u8 sysclk_df[SPDIF_TXRATE_MAX];
104 u8 txclk_src[SPDIF_TXRATE_MAX];
106 struct clk *txclk[SPDIF_TXRATE_MAX];
111 struct snd_dmaengine_dai_dma_data dma_params_tx;
112 struct snd_dmaengine_dai_dma_data dma_params_rx;
113 /* regcache for SRPC */
117 /* DPLL locked and lock loss interrupt handler */
118 static void spdif_irq_dpll_lock(struct fsl_spdif_priv *spdif_priv)
120 struct regmap *regmap = spdif_priv->regmap;
121 struct platform_device *pdev = spdif_priv->pdev;
124 regmap_read(regmap, REG_SPDIF_SRPC, &locked);
125 locked &= SRPC_DPLL_LOCKED;
127 dev_dbg(&pdev->dev, "isr: Rx dpll %s \n",
128 locked ? "locked" : "loss lock");
130 spdif_priv->dpll_locked = locked ? true : false;
133 /* Receiver found illegal symbol interrupt handler */
134 static void spdif_irq_sym_error(struct fsl_spdif_priv *spdif_priv)
136 struct regmap *regmap = spdif_priv->regmap;
137 struct platform_device *pdev = spdif_priv->pdev;
139 dev_dbg(&pdev->dev, "isr: receiver found illegal symbol\n");
141 /* Clear illegal symbol if DPLL unlocked since no audio stream */
142 if (!spdif_priv->dpll_locked)
143 regmap_update_bits(regmap, REG_SPDIF_SIE, INT_SYM_ERR, 0);
146 /* U/Q Channel receive register full */
147 static void spdif_irq_uqrx_full(struct fsl_spdif_priv *spdif_priv, char name)
149 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
150 struct regmap *regmap = spdif_priv->regmap;
151 struct platform_device *pdev = spdif_priv->pdev;
152 u32 *pos, size, val, reg;
157 size = SPDIF_UBITS_SIZE;
162 size = SPDIF_QSUB_SIZE;
166 dev_err(&pdev->dev, "unsupported channel name\n");
170 dev_dbg(&pdev->dev, "isr: %c Channel receive register full\n", name);
172 if (*pos >= size * 2) {
174 } else if (unlikely((*pos % size) + 3 > size)) {
175 dev_err(&pdev->dev, "User bit receivce buffer overflow\n");
179 regmap_read(regmap, reg, &val);
180 ctrl->subcode[*pos++] = val >> 16;
181 ctrl->subcode[*pos++] = val >> 8;
182 ctrl->subcode[*pos++] = val;
185 /* U/Q Channel sync found */
186 static void spdif_irq_uq_sync(struct fsl_spdif_priv *spdif_priv)
188 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
189 struct platform_device *pdev = spdif_priv->pdev;
191 dev_dbg(&pdev->dev, "isr: U/Q Channel sync found\n");
193 /* U/Q buffer reset */
197 /* Set ready to this buffer */
198 ctrl->ready_buf = (ctrl->qpos - 1) / SPDIF_QSUB_SIZE + 1;
201 /* U/Q Channel framing error */
202 static void spdif_irq_uq_err(struct fsl_spdif_priv *spdif_priv)
204 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
205 struct regmap *regmap = spdif_priv->regmap;
206 struct platform_device *pdev = spdif_priv->pdev;
209 dev_dbg(&pdev->dev, "isr: U/Q Channel framing error\n");
211 /* Read U/Q data to clear the irq and do buffer reset */
212 regmap_read(regmap, REG_SPDIF_SRU, &val);
213 regmap_read(regmap, REG_SPDIF_SRQ, &val);
215 /* Drop this U/Q buffer */
221 /* Get spdif interrupt status and clear the interrupt */
222 static u32 spdif_intr_status_clear(struct fsl_spdif_priv *spdif_priv)
224 struct regmap *regmap = spdif_priv->regmap;
227 regmap_read(regmap, REG_SPDIF_SIS, &val);
228 regmap_read(regmap, REG_SPDIF_SIE, &val2);
230 regmap_write(regmap, REG_SPDIF_SIC, val & val2);
235 static irqreturn_t spdif_isr(int irq, void *devid)
237 struct fsl_spdif_priv *spdif_priv = (struct fsl_spdif_priv *)devid;
238 struct platform_device *pdev = spdif_priv->pdev;
241 sis = spdif_intr_status_clear(spdif_priv);
243 if (sis & INT_DPLL_LOCKED)
244 spdif_irq_dpll_lock(spdif_priv);
246 if (sis & INT_TXFIFO_UNOV)
247 dev_dbg(&pdev->dev, "isr: Tx FIFO under/overrun\n");
249 if (sis & INT_TXFIFO_RESYNC)
250 dev_dbg(&pdev->dev, "isr: Tx FIFO resync\n");
253 dev_dbg(&pdev->dev, "isr: cstatus new\n");
255 if (sis & INT_VAL_NOGOOD)
256 dev_dbg(&pdev->dev, "isr: validity flag no good\n");
258 if (sis & INT_SYM_ERR)
259 spdif_irq_sym_error(spdif_priv);
261 if (sis & INT_BIT_ERR)
262 dev_dbg(&pdev->dev, "isr: receiver found parity bit error\n");
264 if (sis & INT_URX_FUL)
265 spdif_irq_uqrx_full(spdif_priv, 'U');
267 if (sis & INT_URX_OV)
268 dev_dbg(&pdev->dev, "isr: U Channel receive register overrun\n");
270 if (sis & INT_QRX_FUL)
271 spdif_irq_uqrx_full(spdif_priv, 'Q');
273 if (sis & INT_QRX_OV)
274 dev_dbg(&pdev->dev, "isr: Q Channel receive register overrun\n");
276 if (sis & INT_UQ_SYNC)
277 spdif_irq_uq_sync(spdif_priv);
279 if (sis & INT_UQ_ERR)
280 spdif_irq_uq_err(spdif_priv);
282 if (sis & INT_RXFIFO_UNOV)
283 dev_dbg(&pdev->dev, "isr: Rx FIFO under/overrun\n");
285 if (sis & INT_RXFIFO_RESYNC)
286 dev_dbg(&pdev->dev, "isr: Rx FIFO resync\n");
288 if (sis & INT_LOSS_LOCK)
289 spdif_irq_dpll_lock(spdif_priv);
291 /* FIXME: Write Tx FIFO to clear TxEm */
293 dev_dbg(&pdev->dev, "isr: Tx FIFO empty\n");
295 /* FIXME: Read Rx FIFO to clear RxFIFOFul */
296 if (sis & INT_RXFIFO_FUL)
297 dev_dbg(&pdev->dev, "isr: Rx FIFO full\n");
302 static int spdif_softreset(struct fsl_spdif_priv *spdif_priv)
304 struct regmap *regmap = spdif_priv->regmap;
305 u32 val, cycle = 1000;
307 regcache_cache_bypass(regmap, true);
309 regmap_write(regmap, REG_SPDIF_SCR, SCR_SOFT_RESET);
312 * RESET bit would be cleared after finishing its reset procedure,
313 * which typically lasts 8 cycles. 1000 cycles will keep it safe.
316 regmap_read(regmap, REG_SPDIF_SCR, &val);
317 } while ((val & SCR_SOFT_RESET) && cycle--);
319 regcache_cache_bypass(regmap, false);
320 regcache_mark_dirty(regmap);
321 regcache_sync(regmap);
329 static void spdif_set_cstatus(struct spdif_mixer_control *ctrl,
332 ctrl->ch_status[3] &= ~mask;
333 ctrl->ch_status[3] |= cstatus & mask;
336 static void spdif_write_channel_status(struct fsl_spdif_priv *spdif_priv)
338 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
339 struct regmap *regmap = spdif_priv->regmap;
340 struct platform_device *pdev = spdif_priv->pdev;
343 ch_status = (bitrev8(ctrl->ch_status[0]) << 16) |
344 (bitrev8(ctrl->ch_status[1]) << 8) |
345 bitrev8(ctrl->ch_status[2]);
346 regmap_write(regmap, REG_SPDIF_STCSCH, ch_status);
348 dev_dbg(&pdev->dev, "STCSCH: 0x%06x\n", ch_status);
350 ch_status = bitrev8(ctrl->ch_status[3]) << 16;
351 regmap_write(regmap, REG_SPDIF_STCSCL, ch_status);
353 dev_dbg(&pdev->dev, "STCSCL: 0x%06x\n", ch_status);
356 /* Set SPDIF PhaseConfig register for rx clock */
357 static int spdif_set_rx_clksrc(struct fsl_spdif_priv *spdif_priv,
358 enum spdif_gainsel gainsel, int dpll_locked)
360 struct regmap *regmap = spdif_priv->regmap;
361 u8 clksrc = spdif_priv->rxclk_src;
363 if (clksrc >= SRPC_CLKSRC_MAX || gainsel >= GAINSEL_MULTI_MAX)
366 regmap_update_bits(regmap, REG_SPDIF_SRPC,
367 SRPC_CLKSRC_SEL_MASK | SRPC_GAINSEL_MASK,
368 SRPC_CLKSRC_SEL_SET(clksrc) | SRPC_GAINSEL_SET(gainsel));
373 static int spdif_set_sample_rate(struct snd_pcm_substream *substream,
376 struct snd_soc_pcm_runtime *rtd = substream->private_data;
377 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(rtd->cpu_dai);
378 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
379 struct regmap *regmap = spdif_priv->regmap;
380 struct platform_device *pdev = spdif_priv->pdev;
381 unsigned long csfs = 0;
383 u8 clk, txclk_df, sysclk_df;
386 switch (sample_rate) {
388 rate = SPDIF_TXRATE_32000;
389 csfs = IEC958_AES3_CON_FS_32000;
392 rate = SPDIF_TXRATE_44100;
393 csfs = IEC958_AES3_CON_FS_44100;
396 rate = SPDIF_TXRATE_48000;
397 csfs = IEC958_AES3_CON_FS_48000;
400 rate = SPDIF_TXRATE_96000;
401 csfs = IEC958_AES3_CON_FS_96000;
404 rate = SPDIF_TXRATE_192000;
405 csfs = IEC958_AES3_CON_FS_192000;
408 dev_err(&pdev->dev, "unsupported sample rate %d\n", sample_rate);
412 clk = spdif_priv->txclk_src[rate];
413 if (clk >= STC_TXCLK_SRC_MAX) {
414 dev_err(&pdev->dev, "tx clock source is out of range\n");
418 txclk_df = spdif_priv->txclk_df[rate];
420 dev_err(&pdev->dev, "the txclk_df can't be zero\n");
424 sysclk_df = spdif_priv->sysclk_df[rate];
426 /* Don't mess up the clocks from other modules */
427 if (clk != STC_TXCLK_SPDIF_ROOT)
430 /* The S/PDIF block needs a clock of 64 * fs * txclk_df */
431 ret = clk_set_rate(spdif_priv->txclk[rate],
432 64 * sample_rate * txclk_df);
434 dev_err(&pdev->dev, "failed to set tx clock rate\n");
439 dev_dbg(&pdev->dev, "expected clock rate = %d\n",
440 (64 * sample_rate * txclk_df * sysclk_df));
441 dev_dbg(&pdev->dev, "actual clock rate = %ld\n",
442 clk_get_rate(spdif_priv->txclk[rate]));
444 /* set fs field in consumer channel status */
445 spdif_set_cstatus(ctrl, IEC958_AES3_CON_FS, csfs);
447 /* select clock source and divisor */
448 stc = STC_TXCLK_ALL_EN | STC_TXCLK_SRC_SET(clk) |
449 STC_TXCLK_DF(txclk_df) | STC_SYSCLK_DF(sysclk_df);
450 mask = STC_TXCLK_ALL_EN_MASK | STC_TXCLK_SRC_MASK |
451 STC_TXCLK_DF_MASK | STC_SYSCLK_DF_MASK;
452 regmap_update_bits(regmap, REG_SPDIF_STC, mask, stc);
454 dev_dbg(&pdev->dev, "set sample rate to %dHz for %dHz playback\n",
455 spdif_priv->txrate[rate], sample_rate);
460 static int fsl_spdif_startup(struct snd_pcm_substream *substream,
461 struct snd_soc_dai *cpu_dai)
463 struct snd_soc_pcm_runtime *rtd = substream->private_data;
464 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(rtd->cpu_dai);
465 struct platform_device *pdev = spdif_priv->pdev;
466 struct regmap *regmap = spdif_priv->regmap;
471 /* Reset module and interrupts only for first initialization */
472 if (!cpu_dai->active) {
473 ret = clk_prepare_enable(spdif_priv->coreclk);
475 dev_err(&pdev->dev, "failed to enable core clock\n");
479 if (!IS_ERR(spdif_priv->spbaclk)) {
480 ret = clk_prepare_enable(spdif_priv->spbaclk);
482 dev_err(&pdev->dev, "failed to enable spba clock\n");
487 ret = spdif_softreset(spdif_priv);
489 dev_err(&pdev->dev, "failed to soft reset\n");
493 /* Disable all the interrupts */
494 regmap_update_bits(regmap, REG_SPDIF_SIE, 0xffffff, 0);
497 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
498 scr = SCR_TXFIFO_AUTOSYNC | SCR_TXFIFO_CTRL_NORMAL |
499 SCR_TXSEL_NORMAL | SCR_USRC_SEL_CHIP |
501 mask = SCR_TXFIFO_AUTOSYNC_MASK | SCR_TXFIFO_CTRL_MASK |
502 SCR_TXSEL_MASK | SCR_USRC_SEL_MASK |
503 SCR_TXFIFO_FSEL_MASK;
504 for (i = 0; i < SPDIF_TXRATE_MAX; i++) {
505 ret = clk_prepare_enable(spdif_priv->txclk[i]);
510 scr = SCR_RXFIFO_FSEL_IF8 | SCR_RXFIFO_AUTOSYNC;
511 mask = SCR_RXFIFO_FSEL_MASK | SCR_RXFIFO_AUTOSYNC_MASK|
512 SCR_RXFIFO_CTL_MASK | SCR_RXFIFO_OFF_MASK;
513 ret = clk_prepare_enable(spdif_priv->rxclk);
517 regmap_update_bits(regmap, REG_SPDIF_SCR, mask, scr);
519 /* Power up SPDIF module */
520 regmap_update_bits(regmap, REG_SPDIF_SCR, SCR_LOW_POWER, 0);
525 for (i--; i >= 0; i--)
526 clk_disable_unprepare(spdif_priv->txclk[i]);
528 if (!IS_ERR(spdif_priv->spbaclk))
529 clk_disable_unprepare(spdif_priv->spbaclk);
531 clk_disable_unprepare(spdif_priv->coreclk);
536 static void fsl_spdif_shutdown(struct snd_pcm_substream *substream,
537 struct snd_soc_dai *cpu_dai)
539 struct snd_soc_pcm_runtime *rtd = substream->private_data;
540 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(rtd->cpu_dai);
541 struct regmap *regmap = spdif_priv->regmap;
544 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
546 mask = SCR_TXFIFO_AUTOSYNC_MASK | SCR_TXFIFO_CTRL_MASK |
547 SCR_TXSEL_MASK | SCR_USRC_SEL_MASK |
548 SCR_TXFIFO_FSEL_MASK;
549 for (i = 0; i < SPDIF_TXRATE_MAX; i++)
550 clk_disable_unprepare(spdif_priv->txclk[i]);
552 scr = SCR_RXFIFO_OFF | SCR_RXFIFO_CTL_ZERO;
553 mask = SCR_RXFIFO_FSEL_MASK | SCR_RXFIFO_AUTOSYNC_MASK|
554 SCR_RXFIFO_CTL_MASK | SCR_RXFIFO_OFF_MASK;
555 clk_disable_unprepare(spdif_priv->rxclk);
557 regmap_update_bits(regmap, REG_SPDIF_SCR, mask, scr);
559 /* Power down SPDIF module only if tx&rx are both inactive */
560 if (!cpu_dai->active) {
561 spdif_intr_status_clear(spdif_priv);
562 regmap_update_bits(regmap, REG_SPDIF_SCR,
563 SCR_LOW_POWER, SCR_LOW_POWER);
564 if (!IS_ERR(spdif_priv->spbaclk))
565 clk_disable_unprepare(spdif_priv->spbaclk);
566 clk_disable_unprepare(spdif_priv->coreclk);
570 static int fsl_spdif_hw_params(struct snd_pcm_substream *substream,
571 struct snd_pcm_hw_params *params,
572 struct snd_soc_dai *dai)
574 struct snd_soc_pcm_runtime *rtd = substream->private_data;
575 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(rtd->cpu_dai);
576 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
577 struct platform_device *pdev = spdif_priv->pdev;
578 u32 sample_rate = params_rate(params);
581 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
582 ret = spdif_set_sample_rate(substream, sample_rate);
584 dev_err(&pdev->dev, "%s: set sample rate failed: %d\n",
585 __func__, sample_rate);
588 spdif_set_cstatus(ctrl, IEC958_AES3_CON_CLOCK,
589 IEC958_AES3_CON_CLOCK_1000PPM);
590 spdif_write_channel_status(spdif_priv);
592 /* Setup rx clock source */
593 ret = spdif_set_rx_clksrc(spdif_priv, SPDIF_DEFAULT_GAINSEL, 1);
599 static int fsl_spdif_trigger(struct snd_pcm_substream *substream,
600 int cmd, struct snd_soc_dai *dai)
602 struct snd_soc_pcm_runtime *rtd = substream->private_data;
603 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(rtd->cpu_dai);
604 struct regmap *regmap = spdif_priv->regmap;
605 bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
606 u32 intr = SIE_INTR_FOR(tx);
607 u32 dmaen = SCR_DMA_xX_EN(tx);
610 case SNDRV_PCM_TRIGGER_START:
611 case SNDRV_PCM_TRIGGER_RESUME:
612 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
613 regmap_update_bits(regmap, REG_SPDIF_SIE, intr, intr);
614 regmap_update_bits(regmap, REG_SPDIF_SCR, dmaen, dmaen);
616 case SNDRV_PCM_TRIGGER_STOP:
617 case SNDRV_PCM_TRIGGER_SUSPEND:
618 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
619 regmap_update_bits(regmap, REG_SPDIF_SCR, dmaen, 0);
620 regmap_update_bits(regmap, REG_SPDIF_SIE, intr, 0);
629 static struct snd_soc_dai_ops fsl_spdif_dai_ops = {
630 .startup = fsl_spdif_startup,
631 .hw_params = fsl_spdif_hw_params,
632 .trigger = fsl_spdif_trigger,
633 .shutdown = fsl_spdif_shutdown,
638 * FSL SPDIF IEC958 controller(mixer) functions
640 * Channel status get/put control
641 * User bit value get/put control
642 * Valid bit value get control
643 * DPLL lock status get control
644 * User bit sync mode selection control
647 static int fsl_spdif_info(struct snd_kcontrol *kcontrol,
648 struct snd_ctl_elem_info *uinfo)
650 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
656 static int fsl_spdif_pb_get(struct snd_kcontrol *kcontrol,
657 struct snd_ctl_elem_value *uvalue)
659 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
660 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
661 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
663 uvalue->value.iec958.status[0] = ctrl->ch_status[0];
664 uvalue->value.iec958.status[1] = ctrl->ch_status[1];
665 uvalue->value.iec958.status[2] = ctrl->ch_status[2];
666 uvalue->value.iec958.status[3] = ctrl->ch_status[3];
671 static int fsl_spdif_pb_put(struct snd_kcontrol *kcontrol,
672 struct snd_ctl_elem_value *uvalue)
674 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
675 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
676 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
678 ctrl->ch_status[0] = uvalue->value.iec958.status[0];
679 ctrl->ch_status[1] = uvalue->value.iec958.status[1];
680 ctrl->ch_status[2] = uvalue->value.iec958.status[2];
681 ctrl->ch_status[3] = uvalue->value.iec958.status[3];
683 spdif_write_channel_status(spdif_priv);
688 /* Get channel status from SPDIF_RX_CCHAN register */
689 static int fsl_spdif_capture_get(struct snd_kcontrol *kcontrol,
690 struct snd_ctl_elem_value *ucontrol)
692 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
693 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
694 struct regmap *regmap = spdif_priv->regmap;
697 regmap_read(regmap, REG_SPDIF_SIS, &val);
698 if (!(val & INT_CNEW))
701 regmap_read(regmap, REG_SPDIF_SRCSH, &cstatus);
702 ucontrol->value.iec958.status[0] = (cstatus >> 16) & 0xFF;
703 ucontrol->value.iec958.status[1] = (cstatus >> 8) & 0xFF;
704 ucontrol->value.iec958.status[2] = cstatus & 0xFF;
706 regmap_read(regmap, REG_SPDIF_SRCSL, &cstatus);
707 ucontrol->value.iec958.status[3] = (cstatus >> 16) & 0xFF;
708 ucontrol->value.iec958.status[4] = (cstatus >> 8) & 0xFF;
709 ucontrol->value.iec958.status[5] = cstatus & 0xFF;
712 regmap_write(regmap, REG_SPDIF_SIC, INT_CNEW);
718 * Get User bits (subcode) from chip value which readed out
719 * in UChannel register.
721 static int fsl_spdif_subcode_get(struct snd_kcontrol *kcontrol,
722 struct snd_ctl_elem_value *ucontrol)
724 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
725 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
726 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
730 spin_lock_irqsave(&ctrl->ctl_lock, flags);
731 if (ctrl->ready_buf) {
732 int idx = (ctrl->ready_buf - 1) * SPDIF_UBITS_SIZE;
733 memcpy(&ucontrol->value.iec958.subcode[0],
734 &ctrl->subcode[idx], SPDIF_UBITS_SIZE);
737 spin_unlock_irqrestore(&ctrl->ctl_lock, flags);
742 /* Q-subcode information. The byte size is SPDIF_UBITS_SIZE/8 */
743 static int fsl_spdif_qinfo(struct snd_kcontrol *kcontrol,
744 struct snd_ctl_elem_info *uinfo)
746 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
747 uinfo->count = SPDIF_QSUB_SIZE;
752 /* Get Q subcode from chip value which readed out in QChannel register */
753 static int fsl_spdif_qget(struct snd_kcontrol *kcontrol,
754 struct snd_ctl_elem_value *ucontrol)
756 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
757 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
758 struct spdif_mixer_control *ctrl = &spdif_priv->fsl_spdif_control;
762 spin_lock_irqsave(&ctrl->ctl_lock, flags);
763 if (ctrl->ready_buf) {
764 int idx = (ctrl->ready_buf - 1) * SPDIF_QSUB_SIZE;
765 memcpy(&ucontrol->value.bytes.data[0],
766 &ctrl->qsub[idx], SPDIF_QSUB_SIZE);
769 spin_unlock_irqrestore(&ctrl->ctl_lock, flags);
774 /* Valid bit information */
775 static int fsl_spdif_vbit_info(struct snd_kcontrol *kcontrol,
776 struct snd_ctl_elem_info *uinfo)
778 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
780 uinfo->value.integer.min = 0;
781 uinfo->value.integer.max = 1;
786 /* Get valid good bit from interrupt status register */
787 static int fsl_spdif_vbit_get(struct snd_kcontrol *kcontrol,
788 struct snd_ctl_elem_value *ucontrol)
790 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
791 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
792 struct regmap *regmap = spdif_priv->regmap;
795 regmap_read(regmap, REG_SPDIF_SIS, &val);
796 ucontrol->value.integer.value[0] = (val & INT_VAL_NOGOOD) != 0;
797 regmap_write(regmap, REG_SPDIF_SIC, INT_VAL_NOGOOD);
802 /* DPLL lock information */
803 static int fsl_spdif_rxrate_info(struct snd_kcontrol *kcontrol,
804 struct snd_ctl_elem_info *uinfo)
806 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
808 uinfo->value.integer.min = 16000;
809 uinfo->value.integer.max = 96000;
814 static u32 gainsel_multi[GAINSEL_MULTI_MAX] = {
815 24, 16, 12, 8, 6, 4, 3,
818 /* Get RX data clock rate given the SPDIF bus_clk */
819 static int spdif_get_rxclk_rate(struct fsl_spdif_priv *spdif_priv,
820 enum spdif_gainsel gainsel)
822 struct regmap *regmap = spdif_priv->regmap;
823 struct platform_device *pdev = spdif_priv->pdev;
824 u64 tmpval64, busclk_freq = 0;
825 u32 freqmeas, phaseconf;
828 regmap_read(regmap, REG_SPDIF_SRFM, &freqmeas);
829 regmap_read(regmap, REG_SPDIF_SRPC, &phaseconf);
831 clksrc = (phaseconf >> SRPC_CLKSRC_SEL_OFFSET) & 0xf;
833 /* Get bus clock from system */
834 if (srpc_dpll_locked[clksrc] && (phaseconf & SRPC_DPLL_LOCKED))
835 busclk_freq = clk_get_rate(spdif_priv->sysclk);
837 /* FreqMeas_CLK = (BUS_CLK * FreqMeas) / 2 ^ 10 / GAINSEL / 128 */
838 tmpval64 = (u64) busclk_freq * freqmeas;
839 do_div(tmpval64, gainsel_multi[gainsel] * 1024);
840 do_div(tmpval64, 128 * 1024);
842 dev_dbg(&pdev->dev, "FreqMeas: %d\n", freqmeas);
843 dev_dbg(&pdev->dev, "BusclkFreq: %lld\n", busclk_freq);
844 dev_dbg(&pdev->dev, "RxRate: %lld\n", tmpval64);
846 return (int)tmpval64;
850 * Get DPLL lock or not info from stable interrupt status register.
851 * User application must use this control to get locked,
852 * then can do next PCM operation
854 static int fsl_spdif_rxrate_get(struct snd_kcontrol *kcontrol,
855 struct snd_ctl_elem_value *ucontrol)
857 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
858 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
861 if (spdif_priv->dpll_locked)
862 rate = spdif_get_rxclk_rate(spdif_priv, SPDIF_DEFAULT_GAINSEL);
864 ucontrol->value.integer.value[0] = rate;
869 /* User bit sync mode info */
870 static int fsl_spdif_usync_info(struct snd_kcontrol *kcontrol,
871 struct snd_ctl_elem_info *uinfo)
873 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
875 uinfo->value.integer.min = 0;
876 uinfo->value.integer.max = 1;
882 * User bit sync mode:
883 * 1 CD User channel subcode
886 static int fsl_spdif_usync_get(struct snd_kcontrol *kcontrol,
887 struct snd_ctl_elem_value *ucontrol)
889 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
890 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
891 struct regmap *regmap = spdif_priv->regmap;
894 regmap_read(regmap, REG_SPDIF_SRCD, &val);
895 ucontrol->value.integer.value[0] = (val & SRCD_CD_USER) != 0;
901 * User bit sync mode:
902 * 1 CD User channel subcode
905 static int fsl_spdif_usync_put(struct snd_kcontrol *kcontrol,
906 struct snd_ctl_elem_value *ucontrol)
908 struct snd_soc_dai *cpu_dai = snd_kcontrol_chip(kcontrol);
909 struct fsl_spdif_priv *spdif_priv = snd_soc_dai_get_drvdata(cpu_dai);
910 struct regmap *regmap = spdif_priv->regmap;
911 u32 val = ucontrol->value.integer.value[0] << SRCD_CD_USER_OFFSET;
913 regmap_update_bits(regmap, REG_SPDIF_SRCD, SRCD_CD_USER, val);
918 /* FSL SPDIF IEC958 controller defines */
919 static struct snd_kcontrol_new fsl_spdif_ctrls[] = {
920 /* Status cchanel controller */
922 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
923 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
924 .access = SNDRV_CTL_ELEM_ACCESS_READ |
925 SNDRV_CTL_ELEM_ACCESS_WRITE |
926 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
927 .info = fsl_spdif_info,
928 .get = fsl_spdif_pb_get,
929 .put = fsl_spdif_pb_put,
932 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
933 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
934 .access = SNDRV_CTL_ELEM_ACCESS_READ |
935 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
936 .info = fsl_spdif_info,
937 .get = fsl_spdif_capture_get,
939 /* User bits controller */
941 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
942 .name = "IEC958 Subcode Capture Default",
943 .access = SNDRV_CTL_ELEM_ACCESS_READ |
944 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
945 .info = fsl_spdif_info,
946 .get = fsl_spdif_subcode_get,
949 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
950 .name = "IEC958 Q-subcode Capture Default",
951 .access = SNDRV_CTL_ELEM_ACCESS_READ |
952 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
953 .info = fsl_spdif_qinfo,
954 .get = fsl_spdif_qget,
956 /* Valid bit error controller */
958 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
959 .name = "IEC958 V-Bit Errors",
960 .access = SNDRV_CTL_ELEM_ACCESS_READ |
961 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
962 .info = fsl_spdif_vbit_info,
963 .get = fsl_spdif_vbit_get,
965 /* DPLL lock info get controller */
967 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
968 .name = "RX Sample Rate",
969 .access = SNDRV_CTL_ELEM_ACCESS_READ |
970 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
971 .info = fsl_spdif_rxrate_info,
972 .get = fsl_spdif_rxrate_get,
974 /* User bit sync mode set/get controller */
976 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
977 .name = "IEC958 USyncMode CDText",
978 .access = SNDRV_CTL_ELEM_ACCESS_READ |
979 SNDRV_CTL_ELEM_ACCESS_WRITE |
980 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
981 .info = fsl_spdif_usync_info,
982 .get = fsl_spdif_usync_get,
983 .put = fsl_spdif_usync_put,
987 static int fsl_spdif_dai_probe(struct snd_soc_dai *dai)
989 struct fsl_spdif_priv *spdif_private = snd_soc_dai_get_drvdata(dai);
991 snd_soc_dai_init_dma_data(dai, &spdif_private->dma_params_tx,
992 &spdif_private->dma_params_rx);
994 snd_soc_add_dai_controls(dai, fsl_spdif_ctrls, ARRAY_SIZE(fsl_spdif_ctrls));
999 static struct snd_soc_dai_driver fsl_spdif_dai = {
1000 .probe = &fsl_spdif_dai_probe,
1002 .stream_name = "CPU-Playback",
1005 .rates = FSL_SPDIF_RATES_PLAYBACK,
1006 .formats = FSL_SPDIF_FORMATS_PLAYBACK,
1009 .stream_name = "CPU-Capture",
1012 .rates = FSL_SPDIF_RATES_CAPTURE,
1013 .formats = FSL_SPDIF_FORMATS_CAPTURE,
1015 .ops = &fsl_spdif_dai_ops,
1018 static const struct snd_soc_component_driver fsl_spdif_component = {
1019 .name = "fsl-spdif",
1022 /* FSL SPDIF REGMAP */
1023 static const struct reg_default fsl_spdif_reg_defaults[] = {
1024 {REG_SPDIF_SCR, 0x00000400},
1025 {REG_SPDIF_SRCD, 0x00000000},
1026 {REG_SPDIF_SIE, 0x00000000},
1027 {REG_SPDIF_STL, 0x00000000},
1028 {REG_SPDIF_STR, 0x00000000},
1029 {REG_SPDIF_STCSCH, 0x00000000},
1030 {REG_SPDIF_STCSCL, 0x00000000},
1031 {REG_SPDIF_STC, 0x00020f00},
1034 static bool fsl_spdif_readable_reg(struct device *dev, unsigned int reg)
1038 case REG_SPDIF_SRCD:
1039 case REG_SPDIF_SRPC:
1044 case REG_SPDIF_SRCSH:
1045 case REG_SPDIF_SRCSL:
1048 case REG_SPDIF_STCSCH:
1049 case REG_SPDIF_STCSCL:
1050 case REG_SPDIF_SRFM:
1058 static bool fsl_spdif_volatile_reg(struct device *dev, unsigned int reg)
1061 case REG_SPDIF_SRPC:
1065 case REG_SPDIF_SRCSH:
1066 case REG_SPDIF_SRCSL:
1069 case REG_SPDIF_SRFM:
1076 static bool fsl_spdif_writeable_reg(struct device *dev, unsigned int reg)
1080 case REG_SPDIF_SRCD:
1081 case REG_SPDIF_SRPC:
1086 case REG_SPDIF_STCSCH:
1087 case REG_SPDIF_STCSCL:
1095 static const struct regmap_config fsl_spdif_regmap_config = {
1100 .max_register = REG_SPDIF_STC,
1101 .reg_defaults = fsl_spdif_reg_defaults,
1102 .num_reg_defaults = ARRAY_SIZE(fsl_spdif_reg_defaults),
1103 .readable_reg = fsl_spdif_readable_reg,
1104 .volatile_reg = fsl_spdif_volatile_reg,
1105 .writeable_reg = fsl_spdif_writeable_reg,
1106 .cache_type = REGCACHE_RBTREE,
1109 static u32 fsl_spdif_txclk_caldiv(struct fsl_spdif_priv *spdif_priv,
1110 struct clk *clk, u64 savesub,
1111 enum spdif_txrate index, bool round)
1113 const u32 rate[] = { 32000, 44100, 48000, 96000, 192000 };
1114 bool is_sysclk = clk_is_match(clk, spdif_priv->sysclk);
1115 u64 rate_ideal, rate_actual, sub;
1116 u32 sysclk_dfmin, sysclk_dfmax;
1117 u32 txclk_df, sysclk_df, arate;
1119 /* The sysclk has an extra divisor [2, 512] */
1120 sysclk_dfmin = is_sysclk ? 2 : 1;
1121 sysclk_dfmax = is_sysclk ? 512 : 1;
1123 for (sysclk_df = sysclk_dfmin; sysclk_df <= sysclk_dfmax; sysclk_df++) {
1124 for (txclk_df = 1; txclk_df <= 128; txclk_df++) {
1125 rate_ideal = rate[index] * txclk_df * 64;
1127 rate_actual = clk_round_rate(clk, rate_ideal);
1129 rate_actual = clk_get_rate(clk);
1131 arate = rate_actual / 64;
1132 arate /= txclk_df * sysclk_df;
1134 if (arate == rate[index]) {
1137 spdif_priv->txclk_df[index] = txclk_df;
1138 spdif_priv->sysclk_df[index] = sysclk_df;
1139 spdif_priv->txrate[index] = arate;
1141 } else if (arate / rate[index] == 1) {
1142 /* A little bigger than expect */
1143 sub = (u64)(arate - rate[index]) * 100000;
1144 do_div(sub, rate[index]);
1148 spdif_priv->txclk_df[index] = txclk_df;
1149 spdif_priv->sysclk_df[index] = sysclk_df;
1150 spdif_priv->txrate[index] = arate;
1151 } else if (rate[index] / arate == 1) {
1152 /* A little smaller than expect */
1153 sub = (u64)(rate[index] - arate) * 100000;
1154 do_div(sub, rate[index]);
1158 spdif_priv->txclk_df[index] = txclk_df;
1159 spdif_priv->sysclk_df[index] = sysclk_df;
1160 spdif_priv->txrate[index] = arate;
1169 static int fsl_spdif_probe_txclk(struct fsl_spdif_priv *spdif_priv,
1170 enum spdif_txrate index)
1172 const u32 rate[] = { 32000, 44100, 48000, 96000, 192000 };
1173 struct platform_device *pdev = spdif_priv->pdev;
1174 struct device *dev = &pdev->dev;
1175 u64 savesub = 100000, ret;
1180 for (i = 0; i < STC_TXCLK_SRC_MAX; i++) {
1181 sprintf(tmp, "rxtx%d", i);
1182 clk = devm_clk_get(&pdev->dev, tmp);
1184 dev_err(dev, "no rxtx%d clock in devicetree\n", i);
1185 return PTR_ERR(clk);
1187 if (!clk_get_rate(clk))
1190 ret = fsl_spdif_txclk_caldiv(spdif_priv, clk, savesub, index,
1191 i == STC_TXCLK_SPDIF_ROOT);
1196 spdif_priv->txclk[index] = clk;
1197 spdif_priv->txclk_src[index] = i;
1199 /* To quick catch a divisor, we allow a 0.1% deviation */
1204 dev_dbg(&pdev->dev, "use rxtx%d as tx clock source for %dHz sample rate\n",
1205 spdif_priv->txclk_src[index], rate[index]);
1206 dev_dbg(&pdev->dev, "use txclk df %d for %dHz sample rate\n",
1207 spdif_priv->txclk_df[index], rate[index]);
1208 if (clk_is_match(spdif_priv->txclk[index], spdif_priv->sysclk))
1209 dev_dbg(&pdev->dev, "use sysclk df %d for %dHz sample rate\n",
1210 spdif_priv->sysclk_df[index], rate[index]);
1211 dev_dbg(&pdev->dev, "the best rate for %dHz sample rate is %dHz\n",
1212 rate[index], spdif_priv->txrate[index]);
1217 static int fsl_spdif_probe(struct platform_device *pdev)
1219 struct device_node *np = pdev->dev.of_node;
1220 struct fsl_spdif_priv *spdif_priv;
1221 struct spdif_mixer_control *ctrl;
1222 struct resource *res;
1229 spdif_priv = devm_kzalloc(&pdev->dev, sizeof(*spdif_priv), GFP_KERNEL);
1233 spdif_priv->pdev = pdev;
1235 /* Initialize this copy of the CPU DAI driver structure */
1236 memcpy(&spdif_priv->cpu_dai_drv, &fsl_spdif_dai, sizeof(fsl_spdif_dai));
1237 spdif_priv->cpu_dai_drv.name = dev_name(&pdev->dev);
1239 /* Get the addresses and IRQ */
1240 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1241 regs = devm_ioremap_resource(&pdev->dev, res);
1243 return PTR_ERR(regs);
1245 spdif_priv->regmap = devm_regmap_init_mmio_clk(&pdev->dev,
1246 "core", regs, &fsl_spdif_regmap_config);
1247 if (IS_ERR(spdif_priv->regmap)) {
1248 dev_err(&pdev->dev, "regmap init failed\n");
1249 return PTR_ERR(spdif_priv->regmap);
1252 irq = platform_get_irq(pdev, 0);
1254 dev_err(&pdev->dev, "no irq for node %s\n", pdev->name);
1258 ret = devm_request_irq(&pdev->dev, irq, spdif_isr, 0,
1259 dev_name(&pdev->dev), spdif_priv);
1261 dev_err(&pdev->dev, "could not claim irq %u\n", irq);
1265 /* Get system clock for rx clock rate calculation */
1266 spdif_priv->sysclk = devm_clk_get(&pdev->dev, "rxtx5");
1267 if (IS_ERR(spdif_priv->sysclk)) {
1268 dev_err(&pdev->dev, "no sys clock (rxtx5) in devicetree\n");
1269 return PTR_ERR(spdif_priv->sysclk);
1272 /* Get core clock for data register access via DMA */
1273 spdif_priv->coreclk = devm_clk_get(&pdev->dev, "core");
1274 if (IS_ERR(spdif_priv->coreclk)) {
1275 dev_err(&pdev->dev, "no core clock in devicetree\n");
1276 return PTR_ERR(spdif_priv->coreclk);
1279 spdif_priv->spbaclk = devm_clk_get(&pdev->dev, "spba");
1280 if (IS_ERR(spdif_priv->spbaclk))
1281 dev_warn(&pdev->dev, "no spba clock in devicetree\n");
1283 /* Select clock source for rx/tx clock */
1284 spdif_priv->rxclk = devm_clk_get(&pdev->dev, "rxtx1");
1285 if (IS_ERR(spdif_priv->rxclk)) {
1286 dev_err(&pdev->dev, "no rxtx1 clock in devicetree\n");
1287 return PTR_ERR(spdif_priv->rxclk);
1289 spdif_priv->rxclk_src = DEFAULT_RXCLK_SRC;
1291 for (i = 0; i < SPDIF_TXRATE_MAX; i++) {
1292 ret = fsl_spdif_probe_txclk(spdif_priv, i);
1297 /* Initial spinlock for control data */
1298 ctrl = &spdif_priv->fsl_spdif_control;
1299 spin_lock_init(&ctrl->ctl_lock);
1301 /* Init tx channel status default value */
1302 ctrl->ch_status[0] = IEC958_AES0_CON_NOT_COPYRIGHT |
1303 IEC958_AES0_CON_EMPHASIS_5015;
1304 ctrl->ch_status[1] = IEC958_AES1_CON_DIGDIGCONV_ID;
1305 ctrl->ch_status[2] = 0x00;
1306 ctrl->ch_status[3] = IEC958_AES3_CON_FS_44100 |
1307 IEC958_AES3_CON_CLOCK_1000PPM;
1309 spdif_priv->dpll_locked = false;
1311 spdif_priv->dma_params_tx.maxburst = FSL_SPDIF_TXFIFO_WML;
1312 spdif_priv->dma_params_rx.maxburst = FSL_SPDIF_RXFIFO_WML;
1313 spdif_priv->dma_params_tx.addr = res->start + REG_SPDIF_STL;
1314 spdif_priv->dma_params_rx.addr = res->start + REG_SPDIF_SRL;
1316 /* Register with ASoC */
1317 dev_set_drvdata(&pdev->dev, spdif_priv);
1319 ret = devm_snd_soc_register_component(&pdev->dev, &fsl_spdif_component,
1320 &spdif_priv->cpu_dai_drv, 1);
1322 dev_err(&pdev->dev, "failed to register DAI: %d\n", ret);
1326 ret = imx_pcm_dma_init(pdev, IMX_SPDIF_DMABUF_SIZE);
1328 dev_err(&pdev->dev, "imx_pcm_dma_init failed: %d\n", ret);
1333 #ifdef CONFIG_PM_SLEEP
1334 static int fsl_spdif_suspend(struct device *dev)
1336 struct fsl_spdif_priv *spdif_priv = dev_get_drvdata(dev);
1338 regmap_read(spdif_priv->regmap, REG_SPDIF_SRPC,
1339 &spdif_priv->regcache_srpc);
1341 regcache_cache_only(spdif_priv->regmap, true);
1342 regcache_mark_dirty(spdif_priv->regmap);
1347 static int fsl_spdif_resume(struct device *dev)
1349 struct fsl_spdif_priv *spdif_priv = dev_get_drvdata(dev);
1351 regcache_cache_only(spdif_priv->regmap, false);
1353 regmap_update_bits(spdif_priv->regmap, REG_SPDIF_SRPC,
1354 SRPC_CLKSRC_SEL_MASK | SRPC_GAINSEL_MASK,
1355 spdif_priv->regcache_srpc);
1357 return regcache_sync(spdif_priv->regmap);
1359 #endif /* CONFIG_PM_SLEEP */
1361 static const struct dev_pm_ops fsl_spdif_pm = {
1362 SET_SYSTEM_SLEEP_PM_OPS(fsl_spdif_suspend, fsl_spdif_resume)
1365 static const struct of_device_id fsl_spdif_dt_ids[] = {
1366 { .compatible = "fsl,imx35-spdif", },
1367 { .compatible = "fsl,vf610-spdif", },
1370 MODULE_DEVICE_TABLE(of, fsl_spdif_dt_ids);
1372 static struct platform_driver fsl_spdif_driver = {
1374 .name = "fsl-spdif-dai",
1375 .of_match_table = fsl_spdif_dt_ids,
1376 .pm = &fsl_spdif_pm,
1378 .probe = fsl_spdif_probe,
1381 module_platform_driver(fsl_spdif_driver);
1383 MODULE_AUTHOR("Freescale Semiconductor, Inc.");
1384 MODULE_DESCRIPTION("Freescale S/PDIF CPU DAI Driver");
1385 MODULE_LICENSE("GPL v2");
1386 MODULE_ALIAS("platform:fsl-spdif-dai");