* [PATCH 2/2] ALSA: ASoc: davinci-mcasp: Add Support BCLK-to-LRCLK ratio for TDM modes
@ 2013-04-19 13:28 Michal Bachraty
2013-04-19 17:38 ` [alsa-devel] " Daniel Mack
2013-04-23 13:51 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Michal Bachraty @ 2013-04-19 13:28 UTC (permalink / raw)
To: perex, tiwai, alsa-devel, linux-kernel
Cc: broonie, lgirdwood, marek.belisko, Michal Bachraty
For TDM mode, BCLK-to-LCLK ratio is computed as (tdm_slots) x (word_length).
I2S mode is only subset of TDM mode with specific tdm_slots = 2 channels.
Also bclk_lrclk_ratio can be greater than 255, therefore u16 need to be used.
Signed-off-by: Michal Bachraty <michal.bachraty@streamunlimited.com>
---
sound/soc/davinci/davinci-mcasp.c | 7 ++++---
sound/soc/davinci/davinci-mcasp.h | 2 +-
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index 63633e9..d54e0d9 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -636,11 +636,12 @@ static int davinci_config_channel_size(struct davinci_audio_dev *dev,
* callback, take it into account here. That allows us to for example
* send 32 bits per channel to the codec, while only 16 of them carry
* audio payload.
- * The clock ratio is given for a full period of data (both left and
- * right channels), so it has to be divided by 2.
+ * The clock ratio is given for a full period of data (for I2S format
+ * both left and right channels), so it has to be divided by number of
+ * tdm-slots (for I2S - divided by 2).
*/
if (dev->bclk_lrclk_ratio)
- word_length = dev->bclk_lrclk_ratio / 2;
+ word_length = dev->bclk_lrclk_ratio / dev->tdm_slots;
/* mapping of the XSSZ bit-field as described in the datasheet */
fmt = (word_length >> 1) - 1;
diff --git a/sound/soc/davinci/davinci-mcasp.h b/sound/soc/davinci/davinci-mcasp.h
index 0edd3b5..a9ac0c1 100644
--- a/sound/soc/davinci/davinci-mcasp.h
+++ b/sound/soc/davinci/davinci-mcasp.h
@@ -38,7 +38,7 @@ struct davinci_audio_dev {
u8 num_serializer;
u8 *serial_dir;
u8 version;
- u8 bclk_lrclk_ratio;
+ u16 bclk_lrclk_ratio;
/* McASP FIFO related */
u8 txnumevt;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [alsa-devel] [PATCH 2/2] ALSA: ASoc: davinci-mcasp: Add Support BCLK-to-LRCLK ratio for TDM modes
2013-04-19 13:28 [PATCH 2/2] ALSA: ASoc: davinci-mcasp: Add Support BCLK-to-LRCLK ratio for TDM modes Michal Bachraty
@ 2013-04-19 17:38 ` Daniel Mack
2013-04-23 13:51 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Daniel Mack @ 2013-04-19 17:38 UTC (permalink / raw)
To: Michal Bachraty
Cc: perex, tiwai, alsa-devel, linux-kernel, marek.belisko, broonie,
lgirdwood
On 19.04.2013 15:28, Michal Bachraty wrote:
> For TDM mode, BCLK-to-LCLK ratio is computed as (tdm_slots) x (word_length).
> I2S mode is only subset of TDM mode with specific tdm_slots = 2 channels.
> Also bclk_lrclk_ratio can be greater than 255, therefore u16 need to be used.
>
> Signed-off-by: Michal Bachraty <michal.bachraty@streamunlimited.com>
Acked-by: Daniel Mack <zonque@gmail.com>
> ---
> sound/soc/davinci/davinci-mcasp.c | 7 ++++---
> sound/soc/davinci/davinci-mcasp.h | 2 +-
> 2 files changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
> index 63633e9..d54e0d9 100644
> --- a/sound/soc/davinci/davinci-mcasp.c
> +++ b/sound/soc/davinci/davinci-mcasp.c
> @@ -636,11 +636,12 @@ static int davinci_config_channel_size(struct davinci_audio_dev *dev,
> * callback, take it into account here. That allows us to for example
> * send 32 bits per channel to the codec, while only 16 of them carry
> * audio payload.
> - * The clock ratio is given for a full period of data (both left and
> - * right channels), so it has to be divided by 2.
> + * The clock ratio is given for a full period of data (for I2S format
> + * both left and right channels), so it has to be divided by number of
> + * tdm-slots (for I2S - divided by 2).
> */
> if (dev->bclk_lrclk_ratio)
> - word_length = dev->bclk_lrclk_ratio / 2;
> + word_length = dev->bclk_lrclk_ratio / dev->tdm_slots;
>
> /* mapping of the XSSZ bit-field as described in the datasheet */
> fmt = (word_length >> 1) - 1;
> diff --git a/sound/soc/davinci/davinci-mcasp.h b/sound/soc/davinci/davinci-mcasp.h
> index 0edd3b5..a9ac0c1 100644
> --- a/sound/soc/davinci/davinci-mcasp.h
> +++ b/sound/soc/davinci/davinci-mcasp.h
> @@ -38,7 +38,7 @@ struct davinci_audio_dev {
> u8 num_serializer;
> u8 *serial_dir;
> u8 version;
> - u8 bclk_lrclk_ratio;
> + u16 bclk_lrclk_ratio;
>
> /* McASP FIFO related */
> u8 txnumevt;
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 2/2] ALSA: ASoc: davinci-mcasp: Add Support BCLK-to-LRCLK ratio for TDM modes
2013-04-19 13:28 [PATCH 2/2] ALSA: ASoc: davinci-mcasp: Add Support BCLK-to-LRCLK ratio for TDM modes Michal Bachraty
2013-04-19 17:38 ` [alsa-devel] " Daniel Mack
@ 2013-04-23 13:51 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2013-04-23 13:51 UTC (permalink / raw)
To: Michal Bachraty
Cc: perex, tiwai, alsa-devel, linux-kernel, lgirdwood, marek.belisko
[-- Attachment #1: Type: text/plain, Size: 318 bytes --]
On Fri, Apr 19, 2013 at 03:28:44PM +0200, Michal Bachraty wrote:
> For TDM mode, BCLK-to-LCLK ratio is computed as (tdm_slots) x (word_length).
> I2S mode is only subset of TDM mode with specific tdm_slots = 2 channels.
> Also bclk_lrclk_ratio can be greater than 255, therefore u16 need to be used.
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-23 13:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-19 13:28 [PATCH 2/2] ALSA: ASoc: davinci-mcasp: Add Support BCLK-to-LRCLK ratio for TDM modes Michal Bachraty
2013-04-19 17:38 ` [alsa-devel] " Daniel Mack
2013-04-23 13:51 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox