mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/10] ASoC: qcom: q6dsp: few fixes and enhancements
@ 2026-02-05 17:14 Srinivas Kandagatla
  2026-02-05 17:14 ` [PATCH 01/10] ASoC: qcom: q6apm: fix array out of bounds on lpass ports Srinivas Kandagatla
                   ` (9 more replies)
  0 siblings, 10 replies; 22+ messages in thread
From: Srinivas Kandagatla @ 2026-02-05 17:14 UTC (permalink / raw)
  To: broonie
  Cc: lgirdwood, robh, krzk+dt, cnor+dt, srini, perex, tiwai,
	alexey.klimov, mohammad.rafi.shaik, quic_wcheng, johan,
	dmitry.baryshkov, konrad.dybcio, linux-arm-msm, linux-sound,
	devicetree, linux-kernel, Srinivas Kandagatla

This patchset contains few fixes for the bugs hit during testing with
Monza EVK platform
- around array out of bounds access on dai ids which keep extending but
  the drivers seems to have hardcoded some numbers, fix this and clean
the mess up.
- flooding rpmsg with write requests due to not resetting queue pointer,
  fix this resetting the pointer in trigger stop.
- possible multiple graph opens which can result in open failures.

Apart from this few new enhancements to the dsp side
- add new LPI MI2S and senary dai entires
- handle pipewire and Displayport issues by moving graph start to
  trigger level, which should fix outstanding pipewire and DP issues on
Qualcomm SoCs.
- remove some unnessary loops in hot path
- support early memory map on DSP.


Thanks,
Srini

Mohammad Rafi Shaik (2):
  ASoC: dt-bindings: qcom,q6dsp-lpass-ports: Add Senary MI2S port
  ASoC: qcom: q6dsp: Add Senary MI2S audio interface support

Srinivas Kandagatla (8):
  ASoC: qcom: q6apm: fix array out of bounds on lpass ports
  ASoC: qcom: q6apm-lpass-dai: Fix multiple graph opens
  ASoC: qcom: q6apm-dai: reset queue ptr on trigger stop
  ASoC: qcom: qdapm-lpass-dai: correct the error message
  ASoC: qcom: q6dsp: add support for LPASS LPI MI2S dais
  ASoC: qcom: q6apm-lpass-dai: move graph start to trigger
  ASoC: qcom: qdsp6: remove search for module iid in hot path
  ASoC: qcom: q6apm: Add support for early buffer mapping on DSP

 .../sound/qcom,q6dsp-lpass-ports.h            |  13 ++
 sound/soc/qcom/lpass.h                        |   2 +-
 sound/soc/qcom/qdsp6/audioreach.c             |  60 ------
 sound/soc/qcom/qdsp6/audioreach.h             |   5 +-
 sound/soc/qcom/qdsp6/q6afe-dai.c              |   6 +
 sound/soc/qcom/qdsp6/q6afe.c                  |   6 +
 sound/soc/qcom/qdsp6/q6afe.h                  |   3 +-
 sound/soc/qcom/qdsp6/q6apm-dai.c              | 105 +++++++++--
 sound/soc/qcom/qdsp6/q6apm-lpass-dais.c       |  47 +++--
 sound/soc/qcom/qdsp6/q6apm.c                  | 175 ++++++++++++------
 sound/soc/qcom/qdsp6/q6apm.h                  |  20 +-
 sound/soc/qcom/qdsp6/q6dsp-lpass-ports.c      |  76 ++++++++
 12 files changed, 361 insertions(+), 157 deletions(-)

-- 
2.47.3


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

end of thread, other threads:[~2026-02-09  8:28 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-05 17:14 [PATCH 00/10] ASoC: qcom: q6dsp: few fixes and enhancements Srinivas Kandagatla
2026-02-05 17:14 ` [PATCH 01/10] ASoC: qcom: q6apm: fix array out of bounds on lpass ports Srinivas Kandagatla
2026-02-05 17:46   ` Mark Brown
2026-02-06  9:52     ` Srinivas Kandagatla
2026-02-06  8:01   ` Krzysztof Kozlowski
2026-02-05 17:14 ` [PATCH 02/10] ASoC: qcom: q6apm-lpass-dai: Fix multiple graph opens Srinivas Kandagatla
2026-02-07  9:17   ` Dmitry Baryshkov
2026-02-05 17:14 ` [PATCH 03/10] ASoC: qcom: q6apm-dai: reset queue ptr on trigger stop Srinivas Kandagatla
2026-02-05 17:14 ` [PATCH 04/10] ASoC: qcom: qdapm-lpass-dai: correct the error message Srinivas Kandagatla
2026-02-05 17:14 ` [PATCH 05/10] ASoC: qcom: q6dsp: add support for LPASS LPI MI2S dais Srinivas Kandagatla
2026-02-06  8:00   ` Krzysztof Kozlowski
2026-02-06 10:02     ` Srinivas Kandagatla
2026-02-06 10:52       ` Krzysztof Kozlowski
2026-02-05 17:14 ` [PATCH 06/10] ASoC: dt-bindings: qcom,q6dsp-lpass-ports: Add Senary MI2S port Srinivas Kandagatla
2026-02-06  8:03   ` Krzysztof Kozlowski
2026-02-07  9:19   ` Dmitry Baryshkov
2026-02-09  8:28     ` Konrad Dybcio
2026-02-05 17:14 ` [PATCH 07/10] ASoC: qcom: q6dsp: Add Senary MI2S audio interface support Srinivas Kandagatla
2026-02-05 17:14 ` [PATCH 08/10] ASoC: qcom: q6apm-lpass-dai: move graph start to trigger Srinivas Kandagatla
2026-02-07  9:20   ` Dmitry Baryshkov
2026-02-05 17:14 ` [PATCH 09/10] ASoC: qcom: qdsp6: remove search for module iid in hot path Srinivas Kandagatla
2026-02-05 17:14 ` [PATCH 10/10] ASoC: qcom: q6apm: Add support for early buffer mapping on DSP Srinivas Kandagatla

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

all inboxes | Powered by JetHome®