Commit 816fe206 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown

ASoC: ti: davinci-mcasp: Add support for RIGHT_J format

The formater unit's rotation needs to be programmed differently for right
aligned bus format to have the data moved to the correct place.

Take the opportunity and simplify the formater unit setup code.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Link: https://lore.kernel.org/r/20190725083411.7211-1-peter.ujfalusi@ti.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent f2c8b570
...@@ -465,6 +465,7 @@ static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai, ...@@ -465,6 +465,7 @@ static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai,
/* FS need to be inverted */ /* FS need to be inverted */
inv_fs = true; inv_fs = true;
break; break;
case SND_SOC_DAIFMT_RIGHT_J:
case SND_SOC_DAIFMT_LEFT_J: case SND_SOC_DAIFMT_LEFT_J:
/* configure a full-word SYNC pulse (LRCLK) */ /* configure a full-word SYNC pulse (LRCLK) */
mcasp_set_bits(mcasp, DAVINCI_MCASP_TXFMCTL_REG, FSXDUR); mcasp_set_bits(mcasp, DAVINCI_MCASP_TXFMCTL_REG, FSXDUR);
...@@ -758,34 +759,28 @@ static int davinci_config_channel_size(struct davinci_mcasp *mcasp, ...@@ -758,34 +759,28 @@ static int davinci_config_channel_size(struct davinci_mcasp *mcasp,
int sample_width) int sample_width)
{ {
u32 fmt; u32 fmt;
u32 tx_rotate = (sample_width / 4) & 0x7; u32 tx_rotate, rx_rotate, slot_width;
u32 mask = (1ULL << sample_width) - 1; u32 mask = (1ULL << sample_width) - 1;
u32 slot_width = sample_width;
/*
* For captured data we should not rotate, inversion and masking is
* enoguh to get the data to the right position:
* Format data from bus after reverse (XRBUF)
* S16_LE: |LSB|MSB|xxx|xxx| |xxx|xxx|MSB|LSB|
* S24_3LE: |LSB|DAT|MSB|xxx| |xxx|MSB|DAT|LSB|
* S24_LE: |LSB|DAT|MSB|xxx| |xxx|MSB|DAT|LSB|
* S32_LE: |LSB|DAT|DAT|MSB| |MSB|DAT|DAT|LSB|
*/
u32 rx_rotate = 0;
if (mcasp->slot_width)
slot_width = mcasp->slot_width;
else
slot_width = sample_width;
/* /*
* Setting the tdm slot width either with set_clkdiv() or * TX rotation:
* set_tdm_slot() allows us to for example send 32 bits per * right aligned formats: rotate w/ slot_width
* channel to the codec, while only 16 of them carry audio * left aligned formats: rotate w/ sample_width
* payload. *
* RX rotation:
* right aligned formats: no rotation needed
* left aligned formats: rotate w/ (slot_width - sample_width)
*/ */
if (mcasp->slot_width) { if ((mcasp->dai_fmt & SND_SOC_DAIFMT_FORMAT_MASK) ==
/* SND_SOC_DAIFMT_RIGHT_J) {
* When we have more bclk then it is needed for the tx_rotate = (slot_width / 4) & 0x7;
* data, we need to use the rotation to move the rx_rotate = 0;
* received samples to have correct alignment. } else {
*/ tx_rotate = (sample_width / 4) & 0x7;
slot_width = mcasp->slot_width;
rx_rotate = (slot_width - sample_width) / 4; rx_rotate = (slot_width - sample_width) / 4;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment