linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Updates for Atmel SSC DAI
@ 2024-09-16 13:19 Andrei Simion
  2024-09-16 13:19 ` [PATCH v2 1/2] ASoC: atmel: atmel_ssc_dai: Add stream names Andrei Simion
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Andrei Simion @ 2024-09-16 13:19 UTC (permalink / raw)
  To: claudiu.beznea, lgirdwood, broonie, perex, tiwai, nicolas.ferre,
	alexandre.belloni
  Cc: alsa-devel, linux-sound, linux-arm-kernel, linux-kernel,
	Andrei Simion

This patch set includes two updates for the Atmel SSC DAI driver:
- Address the limitation with the S24_LE format.
- Add stream names for DPCM and future use-cases.

Codrin Ciubotariu (2):
  ASoC: atmel: atmel_ssc_dai: Add stream names
  ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel
    limitation

 sound/soc/atmel/atmel_ssc_dai.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)


base-commit: 7083504315d64199a329de322fce989e1e10f4f7
-- 
2.34.1



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 1/2] ASoC: atmel: atmel_ssc_dai: Add stream names
  2024-09-16 13:19 [PATCH v2 0/2] Updates for Atmel SSC DAI Andrei Simion
@ 2024-09-16 13:19 ` Andrei Simion
  2024-09-16 13:19 ` [PATCH v2 2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation Andrei Simion
  2024-10-01 17:53 ` [PATCH v2 0/2] Updates for Atmel SSC DAI Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Andrei Simion @ 2024-09-16 13:19 UTC (permalink / raw)
  To: claudiu.beznea, lgirdwood, broonie, perex, tiwai, nicolas.ferre,
	alexandre.belloni
  Cc: alsa-devel, linux-sound, linux-arm-kernel, linux-kernel,
	Codrin Ciubotariu, Andrei Simion

From: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>

Add required stream names for DPCM and future use-cases.

[andrei.simion@microchip.com: Adjust commit title. Reword commit message.]

Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
Signed-off-by: Andrei Simion <andrei.simion@microchip.com>
---
v1 -> v2:
- add Reviewed-by tag
---
 sound/soc/atmel/atmel_ssc_dai.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
index 3763454436c1..7047f17fe7a8 100644
--- a/sound/soc/atmel/atmel_ssc_dai.c
+++ b/sound/soc/atmel/atmel_ssc_dai.c
@@ -836,6 +836,7 @@ static const struct snd_soc_dai_ops atmel_ssc_dai_ops = {
 
 static struct snd_soc_dai_driver atmel_ssc_dai = {
 		.playback = {
+			.stream_name = "Playback",
 			.channels_min = 1,
 			.channels_max = 2,
 			.rates = SNDRV_PCM_RATE_CONTINUOUS,
@@ -843,6 +844,7 @@ static struct snd_soc_dai_driver atmel_ssc_dai = {
 			.rate_max = 384000,
 			.formats = ATMEL_SSC_FORMATS,},
 		.capture = {
+			.stream_name = "Capture",
 			.channels_min = 1,
 			.channels_max = 2,
 			.rates = SNDRV_PCM_RATE_CONTINUOUS,
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v2 2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation
  2024-09-16 13:19 [PATCH v2 0/2] Updates for Atmel SSC DAI Andrei Simion
  2024-09-16 13:19 ` [PATCH v2 1/2] ASoC: atmel: atmel_ssc_dai: Add stream names Andrei Simion
@ 2024-09-16 13:19 ` Andrei Simion
  2024-09-16 14:31   ` Alexandre Belloni
  2024-10-01 17:53 ` [PATCH v2 0/2] Updates for Atmel SSC DAI Mark Brown
  2 siblings, 1 reply; 5+ messages in thread
From: Andrei Simion @ 2024-09-16 13:19 UTC (permalink / raw)
  To: claudiu.beznea, lgirdwood, broonie, perex, tiwai, nicolas.ferre,
	alexandre.belloni
  Cc: alsa-devel, linux-sound, linux-arm-kernel, linux-kernel,
	Codrin Ciubotariu, Andrei Simion

From: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>

Drop S24_LE format because it is not supported if more than 2 channels
(of TDM slots) are used. This limitation makes it impractical for use cases
requiring more than 2 TDM slots, leading to potential issues in
multi-channel configurations.

[andrei.simion@microchip.com: Reword the commit title and the commit
message. Add code comment to explain the removed code.]

Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
Signed-off-by: Andrei Simion <andrei.simion@microchip.com>
---
v1 -> v2:
- add code comment to explain why S24_LE is dropped.
---
 sound/soc/atmel/atmel_ssc_dai.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
index 7047f17fe7a8..89098f41679c 100644
--- a/sound/soc/atmel/atmel_ssc_dai.c
+++ b/sound/soc/atmel/atmel_ssc_dai.c
@@ -821,8 +821,9 @@ static int atmel_ssc_resume(struct snd_soc_component *component)
 	return 0;
 }
 
+/* S24_LE is not supported if more than 2 channels (of TDM slots) are used. */
 #define ATMEL_SSC_FORMATS (SNDRV_PCM_FMTBIT_S8     | SNDRV_PCM_FMTBIT_S16_LE |\
-			  SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
+			   SNDRV_PCM_FMTBIT_S32_LE)
 
 static const struct snd_soc_dai_ops atmel_ssc_dai_ops = {
 	.startup	= atmel_ssc_startup,
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation
  2024-09-16 13:19 ` [PATCH v2 2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation Andrei Simion
@ 2024-09-16 14:31   ` Alexandre Belloni
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2024-09-16 14:31 UTC (permalink / raw)
  To: Andrei Simion
  Cc: alsa-devel, lgirdwood, linux-kernel, tiwai, linux-sound, perex,
	broonie, claudiu.beznea, Codrin Ciubotariu, linux-arm-kernel

On 16/09/2024 16:19:10+0300, Andrei Simion wrote:
> From: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
> 
> Drop S24_LE format because it is not supported if more than 2 channels
> (of TDM slots) are used. This limitation makes it impractical for use cases
> requiring more than 2 TDM slots, leading to potential issues in
> multi-channel configurations.
> 
> [andrei.simion@microchip.com: Reword the commit title and the commit
> message. Add code comment to explain the removed code.]
> 
Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

> Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
> Signed-off-by: Andrei Simion <andrei.simion@microchip.com>
> ---
> v1 -> v2:
> - add code comment to explain why S24_LE is dropped.
> ---
>  sound/soc/atmel/atmel_ssc_dai.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index 7047f17fe7a8..89098f41679c 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -821,8 +821,9 @@ static int atmel_ssc_resume(struct snd_soc_component *component)
>  	return 0;
>  }
>  
> +/* S24_LE is not supported if more than 2 channels (of TDM slots) are used. */
>  #define ATMEL_SSC_FORMATS (SNDRV_PCM_FMTBIT_S8     | SNDRV_PCM_FMTBIT_S16_LE |\
> -			  SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
> +			   SNDRV_PCM_FMTBIT_S32_LE)
>  
>  static const struct snd_soc_dai_ops atmel_ssc_dai_ops = {
>  	.startup	= atmel_ssc_startup,
> -- 
> 2.34.1
> 

-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 0/2] Updates for Atmel SSC DAI
  2024-09-16 13:19 [PATCH v2 0/2] Updates for Atmel SSC DAI Andrei Simion
  2024-09-16 13:19 ` [PATCH v2 1/2] ASoC: atmel: atmel_ssc_dai: Add stream names Andrei Simion
  2024-09-16 13:19 ` [PATCH v2 2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation Andrei Simion
@ 2024-10-01 17:53 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2024-10-01 17:53 UTC (permalink / raw)
  To: claudiu.beznea, lgirdwood, perex, tiwai, nicolas.ferre,
	alexandre.belloni, Andrei Simion
  Cc: alsa-devel, linux-sound, linux-arm-kernel, linux-kernel

On Mon, 16 Sep 2024 16:19:08 +0300, Andrei Simion wrote:
> This patch set includes two updates for the Atmel SSC DAI driver:
> - Address the limitation with the S24_LE format.
> - Add stream names for DPCM and future use-cases.
> 
> Codrin Ciubotariu (2):
>   ASoC: atmel: atmel_ssc_dai: Add stream names
>   ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel
>     limitation
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/2] ASoC: atmel: atmel_ssc_dai: Add stream names
      commit: 879c9151572317e8ddb6ab6c57a7689bf580efc9
[2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation
      commit: ac8775d7de5a8ccac225a398cbce9fb9fffdbb9f

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-10-01 17:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-16 13:19 [PATCH v2 0/2] Updates for Atmel SSC DAI Andrei Simion
2024-09-16 13:19 ` [PATCH v2 1/2] ASoC: atmel: atmel_ssc_dai: Add stream names Andrei Simion
2024-09-16 13:19 ` [PATCH v2 2/2] ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation Andrei Simion
2024-09-16 14:31   ` Alexandre Belloni
2024-10-01 17:53 ` [PATCH v2 0/2] Updates for Atmel SSC DAI Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).