public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/14] ASoC: qcom: q6dsp: few fixes and enhancements
@ 2026-03-04 13:06 Srinivas Kandagatla
  2026-03-04 13:06 ` [PATCH v3 01/14] ASoC: qcom: q6apm: move component registration to unmanaged version Srinivas Kandagatla
                   ` (14 more replies)
  0 siblings, 15 replies; 20+ messages in thread
From: Srinivas Kandagatla @ 2026-03-04 13:06 UTC (permalink / raw)
  To: broonie, robh, krzk+dt, conor+dt
  Cc: mohammad.rafi.shaik, linux-sound, lgirdwood, perex, tiwai, johan,
	dmitry.baryshkov, konrad.dybcio, linux-arm-msm, devicetree,
	linux-kernel, srini, 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
- fix few issues discovered while trying to shut down dsp.
- 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 entries
- 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

Changes since v2:
	- removed non-dt header update in bindings patch.
	- removed some leftover debug statements
	- updated function to void where it did not make sense to
	  return anything.

Changes since v1:
	- removed LPASS MAX PORT define from bindings
	- added few fixes found while testing dsp shutdown usecase on
	  Monaco.
	- replaced tab with space
	- added port range check in place at runtime to catch array out
	  of bounds in future.

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 (12):
  ASoC: qcom: q6apm: move component registration to unmanaged version
  ASoC: qcom: q6apm: remove child devices when apm is removed
  ASoC: qcom: qdsp6: topology: check widget type before accessing data
  ASoC: qcom: q6apm-lpass-dai: Fix multiple graph opens
  ASoC: qcom: q6apm-dai: reset queue ptr on trigger stop
  ASoC: dt-bindings: qcom: add LPASS LPI MI2S dai ids
  ASoC: qcom: qdsp6: lpass-ports: add support for LPASS LPI MI2S dais
  ASoC: qcom: common: validate cpu dai id during parsing
  ASoC: qcom: qdapm-lpass-dai: correct the error message
  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            |  12 ++
 sound/soc/qcom/common.c                       |   6 +
 sound/soc/qcom/common.h                       |   3 +
 sound/soc/qcom/lpass.h                        |   3 +-
 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              | 101 ++++++++--
 sound/soc/qcom/qdsp6/q6apm-lpass-dais.c       |  48 +++--
 sound/soc/qcom/qdsp6/q6apm.c                  | 183 ++++++++++++------
 sound/soc/qcom/qdsp6/q6apm.h                  |  21 +-
 sound/soc/qcom/qdsp6/q6dsp-lpass-ports.c      |  76 ++++++++
 sound/soc/qcom/qdsp6/topology.c               |   8 +-
 15 files changed, 380 insertions(+), 161 deletions(-)

-- 
2.47.3


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

end of thread, other threads:[~2026-03-06 10:54 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-04 13:06 [PATCH v3 00/14] ASoC: qcom: q6dsp: few fixes and enhancements Srinivas Kandagatla
2026-03-04 13:06 ` [PATCH v3 01/14] ASoC: qcom: q6apm: move component registration to unmanaged version Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 02/14] ASoC: qcom: q6apm: remove child devices when apm is removed Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 03/14] ASoC: qcom: qdsp6: topology: check widget type before accessing data Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 04/14] ASoC: qcom: q6apm-lpass-dai: Fix multiple graph opens Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 05/14] ASoC: qcom: q6apm-dai: reset queue ptr on trigger stop Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 06/14] ASoC: dt-bindings: qcom: add LPASS LPI MI2S dai ids Srinivas Kandagatla
2026-03-05  7:21   ` Krzysztof Kozlowski
2026-03-05  7:54   ` Krzysztof Kozlowski
2026-03-04 13:07 ` [PATCH v3 07/14] ASoC: qcom: qdsp6: lpass-ports: add support for LPASS LPI MI2S dais Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 08/14] ASoC: dt-bindings: qcom,q6dsp-lpass-ports: Add Senary MI2S port Srinivas Kandagatla
2026-03-05  7:23   ` Krzysztof Kozlowski
2026-03-04 13:07 ` [PATCH v3 09/14] ASoC: qcom: q6dsp: Add Senary MI2S audio interface support Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 10/14] ASoC: qcom: common: validate cpu dai id during parsing Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 11/14] ASoC: qcom: qdapm-lpass-dai: correct the error message Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 12/14] ASoC: qcom: q6apm-lpass-dai: move graph start to trigger Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 13/14] ASoC: qcom: qdsp6: remove search for module iid in hot path Srinivas Kandagatla
2026-03-04 13:07 ` [PATCH v3 14/14] ASoC: qcom: q6apm: Add support for early buffer mapping on DSP Srinivas Kandagatla
2026-03-05 13:48 ` [PATCH v3 00/14] ASoC: qcom: q6dsp: few fixes and enhancements Richard Acayan
2026-03-06 10:54   ` Srinivas Kandagatla

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