2 * atmel_ssc_dai.c -- ALSA SoC ATMEL SSC Audio Layer Platform driver
4 * Copyright (C) 2005 SAN People
5 * Copyright (C) 2008 Atmel
7 * Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
10 * Based on at91-ssc.c by
11 * Frank Mandarino <fmandarino@endrelia.com>
12 * Based on pxa2xx Platform drivers by
13 * Liam Girdwood <lrg@slimlogic.co.uk>
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #include <linux/init.h>
31 #include <linux/module.h>
32 #include <linux/interrupt.h>
33 #include <linux/device.h>
34 #include <linux/delay.h>
35 #include <linux/clk.h>
36 #include <linux/atmel_pdc.h>
38 #include <linux/atmel-ssc.h>
39 #include <sound/core.h>
40 #include <sound/pcm.h>
41 #include <sound/pcm_params.h>
42 #include <sound/initval.h>
43 #include <sound/soc.h>
45 #include <mach/hardware.h>
47 #include "atmel-pcm.h"
48 #include "atmel_ssc_dai.h"
51 #if defined(CONFIG_ARCH_AT91SAM9260) || defined(CONFIG_ARCH_AT91SAM9G20)
52 #define NUM_SSC_DEVICES 1
54 #define NUM_SSC_DEVICES 3
58 * SSC PDC registers required by the PCM DMA engine.
60 static struct atmel_pdc_regs pdc_tx_reg
= {
63 .xnpr
= ATMEL_PDC_TNPR
,
64 .xncr
= ATMEL_PDC_TNCR
,
67 static struct atmel_pdc_regs pdc_rx_reg
= {
70 .xnpr
= ATMEL_PDC_RNPR
,
71 .xncr
= ATMEL_PDC_RNCR
,
75 * SSC & PDC status bits for transmit and receive.
77 static struct atmel_ssc_mask ssc_tx_mask
= {
78 .ssc_enable
= SSC_BIT(CR_TXEN
),
79 .ssc_disable
= SSC_BIT(CR_TXDIS
),
80 .ssc_endx
= SSC_BIT(SR_ENDTX
),
81 .ssc_endbuf
= SSC_BIT(SR_TXBUFE
),
82 .pdc_enable
= ATMEL_PDC_TXTEN
,
83 .pdc_disable
= ATMEL_PDC_TXTDIS
,
86 static struct atmel_ssc_mask ssc_rx_mask
= {
87 .ssc_enable
= SSC_BIT(CR_RXEN
),
88 .ssc_disable
= SSC_BIT(CR_RXDIS
),
89 .ssc_endx
= SSC_BIT(SR_ENDRX
),
90 .ssc_endbuf
= SSC_BIT(SR_RXBUFF
),
91 .pdc_enable
= ATMEL_PDC_RXTEN
,
92 .pdc_disable
= ATMEL_PDC_RXTDIS
,
99 static struct atmel_pcm_dma_params ssc_dma_params
[NUM_SSC_DEVICES
][2] = {
101 .name
= "SSC0 PCM out",
103 .mask
= &ssc_tx_mask
,
106 .name
= "SSC0 PCM in",
108 .mask
= &ssc_rx_mask
,
110 #if NUM_SSC_DEVICES == 3
112 .name
= "SSC1 PCM out",
114 .mask
= &ssc_tx_mask
,
117 .name
= "SSC1 PCM in",
119 .mask
= &ssc_rx_mask
,
122 .name
= "SSC2 PCM out",
124 .mask
= &ssc_tx_mask
,
127 .name
= "SSC2 PCM in",
129 .mask
= &ssc_rx_mask
,
135 static struct atmel_ssc_info ssc_info
[NUM_SSC_DEVICES
] = {
138 .lock
= __SPIN_LOCK_UNLOCKED(ssc_info
[0].lock
),
139 .dir_mask
= SSC_DIR_MASK_UNUSED
,
142 #if NUM_SSC_DEVICES == 3
145 .lock
= __SPIN_LOCK_UNLOCKED(ssc_info
[1].lock
),
146 .dir_mask
= SSC_DIR_MASK_UNUSED
,
151 .lock
= __SPIN_LOCK_UNLOCKED(ssc_info
[2].lock
),
152 .dir_mask
= SSC_DIR_MASK_UNUSED
,
160 * SSC interrupt handler. Passes PDC interrupts to the DMA
161 * interrupt handler in the PCM driver.
163 static irqreturn_t
atmel_ssc_interrupt(int irq
, void *dev_id
)
165 struct atmel_ssc_info
*ssc_p
= dev_id
;
166 struct atmel_pcm_dma_params
*dma_params
;
168 u32 ssc_substream_mask
;
171 ssc_sr
= (unsigned long)ssc_readl(ssc_p
->ssc
->regs
, SR
)
172 & (unsigned long)ssc_readl(ssc_p
->ssc
->regs
, IMR
);
175 * Loop through the substreams attached to this SSC. If
176 * a DMA-related interrupt occurred on that substream, call
177 * the DMA interrupt handler function, if one has been
178 * registered in the dma_params structure by the PCM driver.
180 for (i
= 0; i
< ARRAY_SIZE(ssc_p
->dma_params
); i
++) {
181 dma_params
= ssc_p
->dma_params
[i
];
183 if ((dma_params
!= NULL
) &&
184 (dma_params
->dma_intr_handler
!= NULL
)) {
185 ssc_substream_mask
= (dma_params
->mask
->ssc_endx
|
186 dma_params
->mask
->ssc_endbuf
);
187 if (ssc_sr
& ssc_substream_mask
) {
188 dma_params
->dma_intr_handler(ssc_sr
,
199 /*-------------------------------------------------------------------------*\
201 \*-------------------------------------------------------------------------*/
203 * Startup. Only that one substream allowed in each direction.
205 static int atmel_ssc_startup(struct snd_pcm_substream
*substream
,
206 struct snd_soc_dai
*dai
)
208 struct snd_soc_pcm_runtime
*rtd
= snd_pcm_substream_chip(substream
);
209 struct atmel_ssc_info
*ssc_p
= &ssc_info
[rtd
->dai
->cpu_dai
->id
];
212 pr_debug("atmel_ssc_startup: SSC_SR=0x%u\n",
213 ssc_readl(ssc_p
->ssc
->regs
, SR
));
215 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
216 dir_mask
= SSC_DIR_MASK_PLAYBACK
;
218 dir_mask
= SSC_DIR_MASK_CAPTURE
;
220 spin_lock_irq(&ssc_p
->lock
);
221 if (ssc_p
->dir_mask
& dir_mask
) {
222 spin_unlock_irq(&ssc_p
->lock
);
225 ssc_p
->dir_mask
|= dir_mask
;
226 spin_unlock_irq(&ssc_p
->lock
);
232 * Shutdown. Clear DMA parameters and shutdown the SSC if there
233 * are no other substreams open.
235 static void atmel_ssc_shutdown(struct snd_pcm_substream
*substream
,
236 struct snd_soc_dai
*dai
)
238 struct snd_soc_pcm_runtime
*rtd
= snd_pcm_substream_chip(substream
);
239 struct atmel_ssc_info
*ssc_p
= &ssc_info
[rtd
->dai
->cpu_dai
->id
];
240 struct atmel_pcm_dma_params
*dma_params
;
243 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
248 dma_params
= ssc_p
->dma_params
[dir
];
250 if (dma_params
!= NULL
) {
251 ssc_writel(ssc_p
->ssc
->regs
, CR
, dma_params
->mask
->ssc_disable
);
252 pr_debug("atmel_ssc_shutdown: %s disabled SSC_SR=0x%08x\n",
253 (dir
? "receive" : "transmit"),
254 ssc_readl(ssc_p
->ssc
->regs
, SR
));
256 dma_params
->ssc
= NULL
;
257 dma_params
->substream
= NULL
;
258 ssc_p
->dma_params
[dir
] = NULL
;
263 spin_lock_irq(&ssc_p
->lock
);
264 ssc_p
->dir_mask
&= ~dir_mask
;
265 if (!ssc_p
->dir_mask
) {
266 if (ssc_p
->initialized
) {
267 /* Shutdown the SSC clock. */
268 pr_debug("atmel_ssc_dau: Stopping clock\n");
269 clk_disable(ssc_p
->ssc
->clk
);
271 free_irq(ssc_p
->ssc
->irq
, ssc_p
);
272 ssc_p
->initialized
= 0;
276 ssc_writel(ssc_p
->ssc
->regs
, CR
, SSC_BIT(CR_SWRST
));
277 /* Clear the SSC dividers */
278 ssc_p
->cmr_div
= ssc_p
->tcmr_period
= ssc_p
->rcmr_period
= 0;
280 spin_unlock_irq(&ssc_p
->lock
);
285 * Record the DAI format for use in hw_params().
287 static int atmel_ssc_set_dai_fmt(struct snd_soc_dai
*cpu_dai
,
290 struct atmel_ssc_info
*ssc_p
= &ssc_info
[cpu_dai
->id
];
297 * Record SSC clock dividers for use in hw_params().
299 static int atmel_ssc_set_dai_clkdiv(struct snd_soc_dai
*cpu_dai
,
302 struct atmel_ssc_info
*ssc_p
= &ssc_info
[cpu_dai
->id
];
305 case ATMEL_SSC_CMR_DIV
:
307 * The same master clock divider is used for both
308 * transmit and receive, so if a value has already
309 * been set, it must match this value.
311 if (ssc_p
->cmr_div
== 0)
312 ssc_p
->cmr_div
= div
;
314 if (div
!= ssc_p
->cmr_div
)
318 case ATMEL_SSC_TCMR_PERIOD
:
319 ssc_p
->tcmr_period
= div
;
322 case ATMEL_SSC_RCMR_PERIOD
:
323 ssc_p
->rcmr_period
= div
;
336 static int atmel_ssc_hw_params(struct snd_pcm_substream
*substream
,
337 struct snd_pcm_hw_params
*params
,
338 struct snd_soc_dai
*dai
)
340 struct snd_soc_pcm_runtime
*rtd
= snd_pcm_substream_chip(substream
);
341 int id
= rtd
->dai
->cpu_dai
->id
;
342 struct atmel_ssc_info
*ssc_p
= &ssc_info
[id
];
343 struct atmel_pcm_dma_params
*dma_params
;
344 int dir
, channels
, bits
;
345 u32 tfmr
, rfmr
, tcmr
, rcmr
;
350 * Currently, there is only one set of dma params for
351 * each direction. If more are added, this code will
352 * have to be changed to select the proper set.
354 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
359 dma_params
= &ssc_dma_params
[id
][dir
];
360 dma_params
->ssc
= ssc_p
->ssc
;
361 dma_params
->substream
= substream
;
363 ssc_p
->dma_params
[dir
] = dma_params
;
366 * The cpu_dai->dma_data field is only used to communicate the
367 * appropriate DMA parameters to the pcm driver hw_params()
368 * function. It should not be used for other purposes
369 * as it is common to all substreams.
371 rtd
->dai
->cpu_dai
->dma_data
= dma_params
;
373 channels
= params_channels(params
);
376 * Determine sample size in bits and the PDC increment.
378 switch (params_format(params
)) {
379 case SNDRV_PCM_FORMAT_S8
:
381 dma_params
->pdc_xfer_size
= 1;
383 case SNDRV_PCM_FORMAT_S16_LE
:
385 dma_params
->pdc_xfer_size
= 2;
387 case SNDRV_PCM_FORMAT_S24_LE
:
389 dma_params
->pdc_xfer_size
= 4;
391 case SNDRV_PCM_FORMAT_S32_LE
:
393 dma_params
->pdc_xfer_size
= 4;
396 printk(KERN_WARNING
"atmel_ssc_dai: unsupported PCM format");
401 * The SSC only supports up to 16-bit samples in I2S format, due
402 * to the size of the Frame Mode Register FSLEN field.
404 if ((ssc_p
->daifmt
& SND_SOC_DAIFMT_FORMAT_MASK
) == SND_SOC_DAIFMT_I2S
407 "atmel_ssc_dai: sample size %d"
408 "is too large for I2S\n", bits
);
413 * Compute SSC register settings.
415 switch (ssc_p
->daifmt
416 & (SND_SOC_DAIFMT_FORMAT_MASK
| SND_SOC_DAIFMT_MASTER_MASK
)) {
418 case SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_CBS_CFS
:
420 * I2S format, SSC provides BCLK and LRC clocks.
422 * The SSC transmit and receive clocks are generated
423 * from the MCK divider, and the BCLK signal
424 * is output on the SSC TK line.
426 rcmr
= SSC_BF(RCMR_PERIOD
, ssc_p
->rcmr_period
)
427 | SSC_BF(RCMR_STTDLY
, START_DELAY
)
428 | SSC_BF(RCMR_START
, SSC_START_FALLING_RF
)
429 | SSC_BF(RCMR_CKI
, SSC_CKI_RISING
)
430 | SSC_BF(RCMR_CKO
, SSC_CKO_NONE
)
431 | SSC_BF(RCMR_CKS
, SSC_CKS_DIV
);
433 rfmr
= SSC_BF(RFMR_FSEDGE
, SSC_FSEDGE_POSITIVE
)
434 | SSC_BF(RFMR_FSOS
, SSC_FSOS_NEGATIVE
)
435 | SSC_BF(RFMR_FSLEN
, (bits
- 1))
436 | SSC_BF(RFMR_DATNB
, (channels
- 1))
438 | SSC_BF(RFMR_LOOP
, 0)
439 | SSC_BF(RFMR_DATLEN
, (bits
- 1));
441 tcmr
= SSC_BF(TCMR_PERIOD
, ssc_p
->tcmr_period
)
442 | SSC_BF(TCMR_STTDLY
, START_DELAY
)
443 | SSC_BF(TCMR_START
, SSC_START_FALLING_RF
)
444 | SSC_BF(TCMR_CKI
, SSC_CKI_FALLING
)
445 | SSC_BF(TCMR_CKO
, SSC_CKO_CONTINUOUS
)
446 | SSC_BF(TCMR_CKS
, SSC_CKS_DIV
);
448 tfmr
= SSC_BF(TFMR_FSEDGE
, SSC_FSEDGE_POSITIVE
)
449 | SSC_BF(TFMR_FSDEN
, 0)
450 | SSC_BF(TFMR_FSOS
, SSC_FSOS_NEGATIVE
)
451 | SSC_BF(TFMR_FSLEN
, (bits
- 1))
452 | SSC_BF(TFMR_DATNB
, (channels
- 1))
454 | SSC_BF(TFMR_DATDEF
, 0)
455 | SSC_BF(TFMR_DATLEN
, (bits
- 1));
458 case SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_CBM_CFM
:
460 * I2S format, CODEC supplies BCLK and LRC clocks.
462 * The SSC transmit clock is obtained from the BCLK signal on
463 * on the TK line, and the SSC receive clock is
464 * generated from the transmit clock.
466 * For single channel data, one sample is transferred
467 * on the falling edge of the LRC clock.
468 * For two channel data, one sample is
469 * transferred on both edges of the LRC clock.
471 start_event
= ((channels
== 1)
472 ? SSC_START_FALLING_RF
473 : SSC_START_EDGE_RF
);
475 rcmr
= SSC_BF(RCMR_PERIOD
, 0)
476 | SSC_BF(RCMR_STTDLY
, START_DELAY
)
477 | SSC_BF(RCMR_START
, start_event
)
478 | SSC_BF(RCMR_CKI
, SSC_CKI_RISING
)
479 | SSC_BF(RCMR_CKO
, SSC_CKO_NONE
)
480 | SSC_BF(RCMR_CKS
, SSC_CKS_CLOCK
);
482 rfmr
= SSC_BF(RFMR_FSEDGE
, SSC_FSEDGE_POSITIVE
)
483 | SSC_BF(RFMR_FSOS
, SSC_FSOS_NONE
)
484 | SSC_BF(RFMR_FSLEN
, 0)
485 | SSC_BF(RFMR_DATNB
, 0)
487 | SSC_BF(RFMR_LOOP
, 0)
488 | SSC_BF(RFMR_DATLEN
, (bits
- 1));
490 tcmr
= SSC_BF(TCMR_PERIOD
, 0)
491 | SSC_BF(TCMR_STTDLY
, START_DELAY
)
492 | SSC_BF(TCMR_START
, start_event
)
493 | SSC_BF(TCMR_CKI
, SSC_CKI_FALLING
)
494 | SSC_BF(TCMR_CKO
, SSC_CKO_NONE
)
495 | SSC_BF(TCMR_CKS
, SSC_CKS_PIN
);
497 tfmr
= SSC_BF(TFMR_FSEDGE
, SSC_FSEDGE_POSITIVE
)
498 | SSC_BF(TFMR_FSDEN
, 0)
499 | SSC_BF(TFMR_FSOS
, SSC_FSOS_NONE
)
500 | SSC_BF(TFMR_FSLEN
, 0)
501 | SSC_BF(TFMR_DATNB
, 0)
503 | SSC_BF(TFMR_DATDEF
, 0)
504 | SSC_BF(TFMR_DATLEN
, (bits
- 1));
507 case SND_SOC_DAIFMT_DSP_A
| SND_SOC_DAIFMT_CBS_CFS
:
509 * DSP/PCM Mode A format, SSC provides BCLK and LRC clocks.
511 * The SSC transmit and receive clocks are generated from the
512 * MCK divider, and the BCLK signal is output
513 * on the SSC TK line.
515 rcmr
= SSC_BF(RCMR_PERIOD
, ssc_p
->rcmr_period
)
516 | SSC_BF(RCMR_STTDLY
, 1)
517 | SSC_BF(RCMR_START
, SSC_START_RISING_RF
)
518 | SSC_BF(RCMR_CKI
, SSC_CKI_RISING
)
519 | SSC_BF(RCMR_CKO
, SSC_CKO_NONE
)
520 | SSC_BF(RCMR_CKS
, SSC_CKS_DIV
);
522 rfmr
= SSC_BF(RFMR_FSEDGE
, SSC_FSEDGE_POSITIVE
)
523 | SSC_BF(RFMR_FSOS
, SSC_FSOS_POSITIVE
)
524 | SSC_BF(RFMR_FSLEN
, 0)
525 | SSC_BF(RFMR_DATNB
, (channels
- 1))
527 | SSC_BF(RFMR_LOOP
, 0)
528 | SSC_BF(RFMR_DATLEN
, (bits
- 1));
530 tcmr
= SSC_BF(TCMR_PERIOD
, ssc_p
->tcmr_period
)
531 | SSC_BF(TCMR_STTDLY
, 1)
532 | SSC_BF(TCMR_START
, SSC_START_RISING_RF
)
533 | SSC_BF(TCMR_CKI
, SSC_CKI_RISING
)
534 | SSC_BF(TCMR_CKO
, SSC_CKO_CONTINUOUS
)
535 | SSC_BF(TCMR_CKS
, SSC_CKS_DIV
);
537 tfmr
= SSC_BF(TFMR_FSEDGE
, SSC_FSEDGE_POSITIVE
)
538 | SSC_BF(TFMR_FSDEN
, 0)
539 | SSC_BF(TFMR_FSOS
, SSC_FSOS_POSITIVE
)
540 | SSC_BF(TFMR_FSLEN
, 0)
541 | SSC_BF(TFMR_DATNB
, (channels
- 1))
543 | SSC_BF(TFMR_DATDEF
, 0)
544 | SSC_BF(TFMR_DATLEN
, (bits
- 1));
547 case SND_SOC_DAIFMT_DSP_A
| SND_SOC_DAIFMT_CBM_CFM
:
549 printk(KERN_WARNING
"atmel_ssc_dai: unsupported DAI format 0x%x\n",
554 pr_debug("atmel_ssc_hw_params: "
555 "RCMR=%08x RFMR=%08x TCMR=%08x TFMR=%08x\n",
556 rcmr
, rfmr
, tcmr
, tfmr
);
558 if (!ssc_p
->initialized
) {
560 /* Enable PMC peripheral clock for this SSC */
561 pr_debug("atmel_ssc_dai: Starting clock\n");
562 clk_enable(ssc_p
->ssc
->clk
);
564 /* Reset the SSC and its PDC registers */
565 ssc_writel(ssc_p
->ssc
->regs
, CR
, SSC_BIT(CR_SWRST
));
567 ssc_writel(ssc_p
->ssc
->regs
, PDC_RPR
, 0);
568 ssc_writel(ssc_p
->ssc
->regs
, PDC_RCR
, 0);
569 ssc_writel(ssc_p
->ssc
->regs
, PDC_RNPR
, 0);
570 ssc_writel(ssc_p
->ssc
->regs
, PDC_RNCR
, 0);
572 ssc_writel(ssc_p
->ssc
->regs
, PDC_TPR
, 0);
573 ssc_writel(ssc_p
->ssc
->regs
, PDC_TCR
, 0);
574 ssc_writel(ssc_p
->ssc
->regs
, PDC_TNPR
, 0);
575 ssc_writel(ssc_p
->ssc
->regs
, PDC_TNCR
, 0);
577 ret
= request_irq(ssc_p
->ssc
->irq
, atmel_ssc_interrupt
, 0,
581 "atmel_ssc_dai: request_irq failure\n");
582 pr_debug("Atmel_ssc_dai: Stoping clock\n");
583 clk_disable(ssc_p
->ssc
->clk
);
587 ssc_p
->initialized
= 1;
590 /* set SSC clock mode register */
591 ssc_writel(ssc_p
->ssc
->regs
, CMR
, ssc_p
->cmr_div
);
593 /* set receive clock mode and format */
594 ssc_writel(ssc_p
->ssc
->regs
, RCMR
, rcmr
);
595 ssc_writel(ssc_p
->ssc
->regs
, RFMR
, rfmr
);
597 /* set transmit clock mode and format */
598 ssc_writel(ssc_p
->ssc
->regs
, TCMR
, tcmr
);
599 ssc_writel(ssc_p
->ssc
->regs
, TFMR
, tfmr
);
601 pr_debug("atmel_ssc_dai,hw_params: SSC initialized\n");
606 static int atmel_ssc_prepare(struct snd_pcm_substream
*substream
,
607 struct snd_soc_dai
*dai
)
609 struct snd_soc_pcm_runtime
*rtd
= snd_pcm_substream_chip(substream
);
610 struct atmel_ssc_info
*ssc_p
= &ssc_info
[rtd
->dai
->cpu_dai
->id
];
611 struct atmel_pcm_dma_params
*dma_params
;
614 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
619 dma_params
= ssc_p
->dma_params
[dir
];
621 ssc_writel(ssc_p
->ssc
->regs
, CR
, dma_params
->mask
->ssc_enable
);
623 pr_debug("%s enabled SSC_SR=0x%08x\n",
624 dir
? "receive" : "transmit",
625 ssc_readl(ssc_p
->ssc
->regs
, SR
));
631 static int atmel_ssc_suspend(struct snd_soc_dai
*cpu_dai
)
633 struct atmel_ssc_info
*ssc_p
;
635 if (!cpu_dai
->active
)
638 ssc_p
= &ssc_info
[cpu_dai
->id
];
640 /* Save the status register before disabling transmit and receive */
641 ssc_p
->ssc_state
.ssc_sr
= ssc_readl(ssc_p
->ssc
->regs
, SR
);
642 ssc_writel(ssc_p
->ssc
->regs
, CR
, SSC_BIT(CR_TXDIS
) | SSC_BIT(CR_RXDIS
));
644 /* Save the current interrupt mask, then disable unmasked interrupts */
645 ssc_p
->ssc_state
.ssc_imr
= ssc_readl(ssc_p
->ssc
->regs
, IMR
);
646 ssc_writel(ssc_p
->ssc
->regs
, IDR
, ssc_p
->ssc_state
.ssc_imr
);
648 ssc_p
->ssc_state
.ssc_cmr
= ssc_readl(ssc_p
->ssc
->regs
, CMR
);
649 ssc_p
->ssc_state
.ssc_rcmr
= ssc_readl(ssc_p
->ssc
->regs
, RCMR
);
650 ssc_p
->ssc_state
.ssc_rfmr
= ssc_readl(ssc_p
->ssc
->regs
, RFMR
);
651 ssc_p
->ssc_state
.ssc_tcmr
= ssc_readl(ssc_p
->ssc
->regs
, TCMR
);
652 ssc_p
->ssc_state
.ssc_tfmr
= ssc_readl(ssc_p
->ssc
->regs
, TFMR
);
659 static int atmel_ssc_resume(struct snd_soc_dai
*cpu_dai
)
661 struct atmel_ssc_info
*ssc_p
;
664 if (!cpu_dai
->active
)
667 ssc_p
= &ssc_info
[cpu_dai
->id
];
669 /* restore SSC register settings */
670 ssc_writel(ssc_p
->ssc
->regs
, TFMR
, ssc_p
->ssc_state
.ssc_tfmr
);
671 ssc_writel(ssc_p
->ssc
->regs
, TCMR
, ssc_p
->ssc_state
.ssc_tcmr
);
672 ssc_writel(ssc_p
->ssc
->regs
, RFMR
, ssc_p
->ssc_state
.ssc_rfmr
);
673 ssc_writel(ssc_p
->ssc
->regs
, RCMR
, ssc_p
->ssc_state
.ssc_rcmr
);
674 ssc_writel(ssc_p
->ssc
->regs
, CMR
, ssc_p
->ssc_state
.ssc_cmr
);
676 /* re-enable interrupts */
677 ssc_writel(ssc_p
->ssc
->regs
, IER
, ssc_p
->ssc_state
.ssc_imr
);
679 /* Re-enable recieve and transmit as appropriate */
682 (ssc_p
->ssc_state
.ssc_sr
& SSC_BIT(SR_RXEN
)) ? SSC_BIT(CR_RXEN
) : 0;
684 (ssc_p
->ssc_state
.ssc_sr
& SSC_BIT(SR_TXEN
)) ? SSC_BIT(CR_TXEN
) : 0;
685 ssc_writel(ssc_p
->ssc
->regs
, CR
, cr
);
689 #else /* CONFIG_PM */
690 # define atmel_ssc_suspend NULL
691 # define atmel_ssc_resume NULL
692 #endif /* CONFIG_PM */
695 #define ATMEL_SSC_RATES (SNDRV_PCM_RATE_8000_96000)
697 #define ATMEL_SSC_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |\
698 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
700 static struct snd_soc_dai_ops atmel_ssc_dai_ops
= {
701 .startup
= atmel_ssc_startup
,
702 .shutdown
= atmel_ssc_shutdown
,
703 .prepare
= atmel_ssc_prepare
,
704 .hw_params
= atmel_ssc_hw_params
,
705 .set_fmt
= atmel_ssc_set_dai_fmt
,
706 .set_clkdiv
= atmel_ssc_set_dai_clkdiv
,
709 struct snd_soc_dai atmel_ssc_dai
[NUM_SSC_DEVICES
] = {
710 { .name
= "atmel-ssc0",
712 .suspend
= atmel_ssc_suspend
,
713 .resume
= atmel_ssc_resume
,
717 .rates
= ATMEL_SSC_RATES
,
718 .formats
= ATMEL_SSC_FORMATS
,},
722 .rates
= ATMEL_SSC_RATES
,
723 .formats
= ATMEL_SSC_FORMATS
,},
724 .ops
= &atmel_ssc_dai_ops
,
725 .private_data
= &ssc_info
[0],
727 #if NUM_SSC_DEVICES == 3
728 { .name
= "atmel-ssc1",
730 .suspend
= atmel_ssc_suspend
,
731 .resume
= atmel_ssc_resume
,
735 .rates
= ATMEL_SSC_RATES
,
736 .formats
= ATMEL_SSC_FORMATS
,},
740 .rates
= ATMEL_SSC_RATES
,
741 .formats
= ATMEL_SSC_FORMATS
,},
742 .ops
= &atmel_ssc_dai_ops
,
743 .private_data
= &ssc_info
[1],
745 { .name
= "atmel-ssc2",
747 .suspend
= atmel_ssc_suspend
,
748 .resume
= atmel_ssc_resume
,
752 .rates
= ATMEL_SSC_RATES
,
753 .formats
= ATMEL_SSC_FORMATS
,},
757 .rates
= ATMEL_SSC_RATES
,
758 .formats
= ATMEL_SSC_FORMATS
,},
759 .ops
= &atmel_ssc_dai_ops
,
760 .private_data
= &ssc_info
[2],
764 EXPORT_SYMBOL_GPL(atmel_ssc_dai
);
766 static int __init
atmel_ssc_modinit(void)
768 return snd_soc_register_dais(atmel_ssc_dai
, ARRAY_SIZE(atmel_ssc_dai
));
770 module_init(atmel_ssc_modinit
);
772 static void __exit
atmel_ssc_modexit(void)
774 snd_soc_unregister_dais(atmel_ssc_dai
, ARRAY_SIZE(atmel_ssc_dai
));
776 module_exit(atmel_ssc_modexit
);
778 /* Module information */
779 MODULE_AUTHOR("Sedji Gaouaou, sedji.gaouaou@atmel.com, www.atmel.com");
780 MODULE_DESCRIPTION("ATMEL SSC ASoC Interface");
781 MODULE_LICENSE("GPL");