Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH v2 0/2] ASoC: Add QCS615 sound card support
@ 2025-10-09  9:06 Le Qi
  2025-10-09  9:06 ` [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card Le Qi
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Le Qi @ 2025-10-09  9:06 UTC (permalink / raw)
  To: Srinivas Kandagatla, Liam Girdwood, Mark Brown, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Jaroslav Kysela, Takashi Iwai
  Cc: linux-sound, linux-arm-msm, devicetree, linux-kernel, kernel,
	Le Qi

This patch series adds support for the QCS615 sound card:
- Updates device tree bindings for SM8250 to include QCS615.
- Adds QCS615 support in the SC8280XP ASoC driver.

---

Changes in v2:
 - Updated Author/Signed-off-by to use "Le Qi" consistently

Le Qi (2):
  ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card
  ASoC: qcom: sc8280xp: Add support for QCS615

 Documentation/devicetree/bindings/sound/qcom,sm8250.yaml | 1 +
 sound/soc/qcom/sc8280xp.c                                | 1 +
 2 files changed, 2 insertions(+)


base-commit: 7c3ba4249a3604477ea9c077e10089ba7ddcaa03
-- 
2.34.1


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

* [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card
  2025-10-09  9:06 [PATCH v2 0/2] ASoC: Add QCS615 sound card support Le Qi
@ 2025-10-09  9:06 ` Le Qi
  2025-10-09  9:15   ` Krzysztof Kozlowski
  2025-10-09  9:06 ` [PATCH v2 2/2] ASoC: qcom: sc8280xp: Add support for QCS615 Le Qi
  2025-10-16 12:41 ` [PATCH v2 0/2] ASoC: Add QCS615 sound card support Mark Brown
  2 siblings, 1 reply; 6+ messages in thread
From: Le Qi @ 2025-10-09  9:06 UTC (permalink / raw)
  To: Srinivas Kandagatla, Liam Girdwood, Mark Brown, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Jaroslav Kysela, Takashi Iwai
  Cc: linux-sound, linux-arm-msm, devicetree, linux-kernel, kernel,
	Le Qi

Add bindings for QCS615 sound card, which looks fully
compatible with existing SM8250.

Signed-off-by: Le Qi <le.qi@oss.qualcomm.com>
---
 Documentation/devicetree/bindings/sound/qcom,sm8250.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml b/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml
index 8ac91625dce5..b49a920af704 100644
--- a/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml
+++ b/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml
@@ -33,6 +33,7 @@ properties:
           - qcom,apq8096-sndcard
           - qcom,glymur-sndcard
           - qcom,qcm6490-idp-sndcard
+          - qcom,qcs615-sndcard
           - qcom,qcs6490-rb3gen2-sndcard
           - qcom,qcs8275-sndcard
           - qcom,qcs9075-sndcard
-- 
2.34.1


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

* [PATCH v2 2/2] ASoC: qcom: sc8280xp: Add support for QCS615
  2025-10-09  9:06 [PATCH v2 0/2] ASoC: Add QCS615 sound card support Le Qi
  2025-10-09  9:06 ` [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card Le Qi
@ 2025-10-09  9:06 ` Le Qi
  2025-10-09  9:15   ` Krzysztof Kozlowski
  2025-10-16 12:41 ` [PATCH v2 0/2] ASoC: Add QCS615 sound card support Mark Brown
  2 siblings, 1 reply; 6+ messages in thread
From: Le Qi @ 2025-10-09  9:06 UTC (permalink / raw)
  To: Srinivas Kandagatla, Liam Girdwood, Mark Brown, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Jaroslav Kysela, Takashi Iwai
  Cc: linux-sound, linux-arm-msm, devicetree, linux-kernel, kernel,
	Le Qi

Add compatible for sound card on QCS615 boards.

Signed-off-by: Le Qi <le.qi@oss.qualcomm.com>
---
 sound/soc/qcom/sc8280xp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/qcom/sc8280xp.c b/sound/soc/qcom/sc8280xp.c
index 78e327bc2f07..187f37ffe328 100644
--- a/sound/soc/qcom/sc8280xp.c
+++ b/sound/soc/qcom/sc8280xp.c
@@ -192,6 +192,7 @@ static int sc8280xp_platform_probe(struct platform_device *pdev)
 
 static const struct of_device_id snd_sc8280xp_dt_match[] = {
 	{.compatible = "qcom,qcm6490-idp-sndcard", "qcm6490"},
+	{.compatible = "qcom,qcs615-sndcard", "qcs615"},
 	{.compatible = "qcom,qcs6490-rb3gen2-sndcard", "qcs6490"},
 	{.compatible = "qcom,qcs8275-sndcard", "qcs8300"},
 	{.compatible = "qcom,qcs9075-sndcard", "sa8775p"},
-- 
2.34.1


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

* Re: [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card
  2025-10-09  9:06 ` [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card Le Qi
@ 2025-10-09  9:15   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-09  9:15 UTC (permalink / raw)
  To: Le Qi, Srinivas Kandagatla, Liam Girdwood, Mark Brown,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jaroslav Kysela,
	Takashi Iwai
  Cc: linux-sound, linux-arm-msm, devicetree, linux-kernel, kernel

On 09/10/2025 18:06, Le Qi wrote:
> Add bindings for QCS615 sound card, which looks fully
> compatible with existing SM8250.
> 
> Signed-off-by: Le Qi <le.qi@oss.qualcomm.com>
> ---

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof

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

* Re: [PATCH v2 2/2] ASoC: qcom: sc8280xp: Add support for QCS615
  2025-10-09  9:06 ` [PATCH v2 2/2] ASoC: qcom: sc8280xp: Add support for QCS615 Le Qi
@ 2025-10-09  9:15   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-09  9:15 UTC (permalink / raw)
  To: Le Qi, Srinivas Kandagatla, Liam Girdwood, Mark Brown,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jaroslav Kysela,
	Takashi Iwai
  Cc: linux-sound, linux-arm-msm, devicetree, linux-kernel, kernel

On 09/10/2025 18:06, Le Qi wrote:
> Add compatible for sound card on QCS615 boards.
> 
> Signed-off-by: Le Qi <le.qi@oss.qualcomm.com>
> ---
>  sound/soc/qcom/sc8280xp.c | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof

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

* Re: [PATCH v2 0/2] ASoC: Add QCS615 sound card support
  2025-10-09  9:06 [PATCH v2 0/2] ASoC: Add QCS615 sound card support Le Qi
  2025-10-09  9:06 ` [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card Le Qi
  2025-10-09  9:06 ` [PATCH v2 2/2] ASoC: qcom: sc8280xp: Add support for QCS615 Le Qi
@ 2025-10-16 12:41 ` Mark Brown
  2 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2025-10-16 12:41 UTC (permalink / raw)
  To: Srinivas Kandagatla, Liam Girdwood, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Jaroslav Kysela, Takashi Iwai,
	Le Qi
  Cc: linux-sound, linux-arm-msm, devicetree, linux-kernel, kernel

On Thu, 09 Oct 2025 17:06:17 +0800, Le Qi wrote:
> This patch series adds support for the QCS615 sound card:
> - Updates device tree bindings for SM8250 to include QCS615.
> - Adds QCS615 support in the SC8280XP ASoC driver.
> 

Applied to

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

Thanks!

[1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card
      commit: 6079165e6e027c03e06556ff3df0ed03a34d68f0
[2/2] ASoC: qcom: sc8280xp: Add support for QCS615
      commit: dee4ef0ebe4dee655657ead30892aeca16462823

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] 6+ messages in thread

end of thread, other threads:[~2025-10-16 12:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-09  9:06 [PATCH v2 0/2] ASoC: Add QCS615 sound card support Le Qi
2025-10-09  9:06 ` [PATCH v2 1/2] ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card Le Qi
2025-10-09  9:15   ` Krzysztof Kozlowski
2025-10-09  9:06 ` [PATCH v2 2/2] ASoC: qcom: sc8280xp: Add support for QCS615 Le Qi
2025-10-09  9:15   ` Krzysztof Kozlowski
2025-10-16 12:41 ` [PATCH v2 0/2] ASoC: Add QCS615 sound card support Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox