2016-11-10 21:17:40 +00:00
|
|
|
==================================
|
|
|
|
ASoC Digital Audio Interface (DAI)
|
|
|
|
==================================
|
|
|
|
|
2006-10-06 16:34:51 +00:00
|
|
|
ASoC currently supports the three main Digital Audio Interfaces (DAI) found on
|
2008-01-23 07:41:46 +00:00
|
|
|
SoC controllers and portable audio CODECs today, namely AC97, I2S and PCM.
|
2006-10-06 16:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
AC97
|
|
|
|
====
|
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
AC97 is a five wire interface commonly found on many PC sound cards. It is
|
2006-10-06 16:34:51 +00:00
|
|
|
now also popular in many portable devices. This DAI has a reset line and time
|
|
|
|
multiplexes its data on its SDATA_OUT (playback) and SDATA_IN (capture) lines.
|
|
|
|
The bit clock (BCLK) is always driven by the CODEC (usually 12.288MHz) and the
|
|
|
|
frame (FRAME) (usually 48kHz) is always driven by the controller. Each AC97
|
|
|
|
frame is 21uS long and is divided into 13 time slots.
|
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
The AC97 specification can be found at :
|
2020-07-19 15:38:22 +00:00
|
|
|
https://www.intel.com/p/en_US/business/design
|
2006-10-06 16:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
I2S
|
|
|
|
===
|
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
I2S is a common 4 wire DAI used in HiFi, STB and portable devices. The Tx and
|
2018-11-19 11:02:45 +00:00
|
|
|
Rx lines are used for audio transmission, while the bit clock (BCLK) and
|
2006-10-06 16:34:51 +00:00
|
|
|
left/right clock (LRC) synchronise the link. I2S is flexible in that either the
|
|
|
|
controller or CODEC can drive (master) the BCLK and LRC clock lines. Bit clock
|
|
|
|
usually varies depending on the sample rate and the master system clock
|
|
|
|
(SYSCLK). LRCLK is the same as the sample rate. A few devices support separate
|
2008-01-23 07:41:46 +00:00
|
|
|
ADC and DAC LRCLKs, this allows for simultaneous capture and playback at
|
2006-10-06 16:34:51 +00:00
|
|
|
different sample rates.
|
|
|
|
|
|
|
|
I2S has several different operating modes:-
|
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
I2S
|
|
|
|
MSB is transmitted on the falling edge of the first BCLK after LRC
|
|
|
|
transition.
|
2006-10-06 16:34:51 +00:00
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
Left Justified
|
|
|
|
MSB is transmitted on transition of LRC.
|
2006-10-06 16:34:51 +00:00
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
Right Justified
|
|
|
|
MSB is transmitted sample size BCLKs before LRC transition.
|
2006-10-06 16:34:51 +00:00
|
|
|
|
|
|
|
PCM
|
|
|
|
===
|
|
|
|
|
2007-10-19 23:34:40 +00:00
|
|
|
PCM is another 4 wire interface, very similar to I2S, which can support a more
|
2006-10-06 16:34:51 +00:00
|
|
|
flexible protocol. It has bit clock (BCLK) and sync (SYNC) lines that are used
|
2018-11-19 11:02:45 +00:00
|
|
|
to synchronise the link while the Tx and Rx lines are used to transmit and
|
2006-10-06 16:34:51 +00:00
|
|
|
receive the audio data. Bit clock usually varies depending on sample rate
|
2018-11-19 11:02:45 +00:00
|
|
|
while sync runs at the sample rate. PCM also supports Time Division
|
2007-10-19 23:34:40 +00:00
|
|
|
Multiplexing (TDM) in that several devices can use the bus simultaneously (this
|
2006-10-06 16:34:51 +00:00
|
|
|
is sometimes referred to as network mode).
|
|
|
|
|
|
|
|
Common PCM operating modes:-
|
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
Mode A
|
|
|
|
MSB is transmitted on falling edge of first BCLK after FRAME/SYNC.
|
2006-10-06 16:34:51 +00:00
|
|
|
|
2016-11-10 21:17:40 +00:00
|
|
|
Mode B
|
|
|
|
MSB is transmitted on rising edge of FRAME/SYNC.
|