Linux kernel -stable discussions
 help / color / mirror / Atom feed
* [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch
       [not found] <20260506204142.659778-1-val@packett.cool>
@ 2026-05-06 20:33 ` Val Packett
  2026-05-07  0:02   ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Val Packett @ 2026-05-06 20:33 UTC (permalink / raw)
  To: Srinivas Kandagatla, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai
  Cc: Val Packett, Srinivas Kandagatla, Bhushan Shah, Luca Weiss,
	Antoine Bernard, ~postmarketos/upstreaming, phone-devel,
	linux-arm-msm, linux-sound, linux-kernel, stable

The response sent by the firmware when requesting a clock vote (opcode
AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST) does not actually have
the same opcode + status payload as APR_BASIC_RSP_RESULT. Rather, it
returns one single u32 which is the client_handle that must be used in
future unvote requests for the same clock.

As a result of this type confusion, the status returned by the callback
to q6afe_vote_lpass_core_hw was actually an out-of-bounds read. It was
only interpreted as success (0) most of the time due to luck, but there
are some reports of random errors such as:

[   20.961100] qcom-q6afe aprsvc:service:4:4: AFE failed to vote (3)
[   20.961131] Failed to prepare clk 'core': -110

Fix by correctly interpreting the response as a single u32, and actually
store it as the client_handle to ensure unvote would work correctly.

Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/all/5976946.DvuYhMxLoT@antlia/
Fixes: 55e07531d922 ("ASoC: q6dsp: q6afe: add lpass hw voting support")
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
Signed-off-by: Val Packett <val@packett.cool>
---
 sound/soc/qcom/qdsp6/q6afe.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/sound/soc/qcom/qdsp6/q6afe.c b/sound/soc/qcom/qdsp6/q6afe.c
index 40237267fda0..28b5b6b91897 100644
--- a/sound/soc/qcom/qdsp6/q6afe.c
+++ b/sound/soc/qcom/qdsp6/q6afe.c
@@ -379,6 +379,7 @@ struct q6afe {
 	struct q6core_svc_api_info ainfo;
 	struct mutex lock;
 	struct aprv2_ibasic_rsp_result_t result;
+	uint32_t vote_result;
 	wait_queue_head_t wait;
 	struct list_head port_list;
 	spinlock_t port_list_lock;
@@ -968,13 +969,14 @@ static int q6afe_callback(struct apr_device *adev, const struct apr_resp_pkt *da
 	const struct aprv2_ibasic_rsp_result_t *res;
 	const struct apr_hdr *hdr = &data->hdr;
 	struct q6afe_port *port;
+	uint32_t *vote_res;
 
 	if (!data->payload_size)
 		return 0;
 
-	res = data->payload;
 	switch (hdr->opcode) {
 	case APR_BASIC_RSP_RESULT: {
+		res = data->payload;
 		if (res->status) {
 			dev_err(afe->dev, "cmd = 0x%x returned error = 0x%x\n",
 				res->opcode, res->status);
@@ -1001,8 +1003,10 @@ static int q6afe_callback(struct apr_device *adev, const struct apr_resp_pkt *da
 	}
 		break;
 	case AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST:
+		vote_res = data->payload;
 		afe->result.opcode = hdr->opcode;
-		afe->result.status = res->status;
+		afe->result.status = 0;
+		afe->vote_result = *vote_res;
 		wake_up(&afe->wait);
 		break;
 	default:
@@ -1899,6 +1903,8 @@ int q6afe_vote_lpass_core_hw(struct device *dev, uint32_t hw_block_id,
 			       AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST);
 	if (ret)
 		dev_err(afe->dev, "AFE failed to vote (%d)\n", hw_block_id);
+	else
+		*client_handle = afe->vote_result;
 
 	return ret;
 }
-- 
2.53.0


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

* Re: [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch
  2026-05-06 20:33 ` [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch Val Packett
@ 2026-05-07  0:02   ` Mark Brown
  2026-05-07  1:46     ` Val Packett
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2026-05-07  0:02 UTC (permalink / raw)
  To: Val Packett
  Cc: Srinivas Kandagatla, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
	Srinivas Kandagatla, Bhushan Shah, Luca Weiss, Antoine Bernard,
	~postmarketos/upstreaming, phone-devel, linux-arm-msm,
	linux-sound, linux-kernel, stable

[-- Attachment #1: Type: text/plain, Size: 505 bytes --]

On Wed, May 06, 2026 at 05:33:02PM -0300, Val Packett wrote:
> The response sent by the firmware when requesting a clock vote (opcode
> AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST) does not actually have
> the same opcode + status payload as APR_BASIC_RSP_RESULT. Rather, it
> returns one single u32 which is the client_handle that must be used in
> future unvote requests for the same clock.

Please send cover letters for your serieses, it helps tooling.  Please
also supply inter version changelogs.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch
  2026-05-07  0:02   ` Mark Brown
@ 2026-05-07  1:46     ` Val Packett
  2026-05-07  2:16       ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Val Packett @ 2026-05-07  1:46 UTC (permalink / raw)
  To: Mark Brown
  Cc: Srinivas Kandagatla, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
	Srinivas Kandagatla, Bhushan Shah, Luca Weiss, Antoine Bernard,
	~postmarketos/upstreaming, phone-devel, linux-arm-msm,
	linux-sound, linux-kernel, stable


On 5/6/26 9:02 PM, Mark Brown wrote:
> On Wed, May 06, 2026 at 05:33:02PM -0300, Val Packett wrote:
>> The response sent by the firmware when requesting a clock vote (opcode
>> AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST) does not actually have
>> the same opcode + status payload as APR_BASIC_RSP_RESULT. Rather, it
>> returns one single u32 which is the client_handle that must be used in
>> future unvote requests for the same clock.
> Please send cover letters for your serieses, it helps tooling.  Please
> also supply inter version changelogs.

ummm:

https://lore.kernel.org/all/20260506204142.659778-1-val@packett.cool/

I even Cc'd all(?) the lists, as usual.. Oh, sorry- not stable@ I guess.

I didn't even realize the Cc from the sign-off section would actually 
immediately be used by git send-email, I thought it would only get sent 
to stable when merged.

~val


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

* Re: [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch
  2026-05-07  1:46     ` Val Packett
@ 2026-05-07  2:16       ` Mark Brown
  2026-05-07  8:03         ` Konrad Dybcio
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2026-05-07  2:16 UTC (permalink / raw)
  To: Val Packett
  Cc: Srinivas Kandagatla, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
	Srinivas Kandagatla, Bhushan Shah, Luca Weiss, Antoine Bernard,
	~postmarketos/upstreaming, phone-devel, linux-arm-msm,
	linux-sound, linux-kernel, stable

[-- Attachment #1: Type: text/plain, Size: 583 bytes --]

On Wed, May 06, 2026 at 10:46:33PM -0300, Val Packett wrote:
> On 5/6/26 9:02 PM, Mark Brown wrote:

> > Please send cover letters for your serieses, it helps tooling.  Please
> > also supply inter version changelogs.

> ummm:

> https://lore.kernel.org/all/20260506204142.659778-1-val@packett.cool/

> I even Cc'd all(?) the lists, as usual.. Oh, sorry- not stable@ I guess.

Nor me, if the mail doesn't end up in my inbox then I'm going to have no
idea that it exists.  You need to not only write a cover letter, but
also send it to the relevant maintainers just like the patches.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch
  2026-05-07  2:16       ` Mark Brown
@ 2026-05-07  8:03         ` Konrad Dybcio
  2026-05-07  8:23           ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Konrad Dybcio @ 2026-05-07  8:03 UTC (permalink / raw)
  To: Mark Brown, Val Packett
  Cc: Srinivas Kandagatla, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
	Srinivas Kandagatla, Bhushan Shah, Luca Weiss, Antoine Bernard,
	~postmarketos/upstreaming, phone-devel, linux-arm-msm,
	linux-sound, linux-kernel, stable

On 5/7/26 4:16 AM, Mark Brown wrote:
> On Wed, May 06, 2026 at 10:46:33PM -0300, Val Packett wrote:
>> On 5/6/26 9:02 PM, Mark Brown wrote:
> 
>>> Please send cover letters for your serieses, it helps tooling.  Please
>>> also supply inter version changelogs.
> 
>> ummm:
> 
>> https://lore.kernel.org/all/20260506204142.659778-1-val@packett.cool/
> 
>> I even Cc'd all(?) the lists, as usual.. Oh, sorry- not stable@ I guess.
> 
> Nor me, if the mail doesn't end up in my inbox then I'm going to have no
> idea that it exists.  You need to not only write a cover letter, but
> also send it to the relevant maintainers just like the patches.

(which the b4 tool will do for you)

https://b4.docs.kernel.org/

Konrad

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

* Re: [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch
  2026-05-07  8:03         ` Konrad Dybcio
@ 2026-05-07  8:23           ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2026-05-07  8:23 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: Val Packett, Srinivas Kandagatla, Liam Girdwood, Jaroslav Kysela,
	Takashi Iwai, Srinivas Kandagatla, Bhushan Shah, Luca Weiss,
	Antoine Bernard, ~postmarketos/upstreaming, phone-devel,
	linux-arm-msm, linux-sound, linux-kernel, stable

[-- Attachment #1: Type: text/plain, Size: 463 bytes --]

On Thu, May 07, 2026 at 10:03:29AM +0200, Konrad Dybcio wrote:
> On 5/7/26 4:16 AM, Mark Brown wrote:

> > Nor me, if the mail doesn't end up in my inbox then I'm going to have no
> > idea that it exists.  You need to not only write a cover letter, but
> > also send it to the relevant maintainers just like the patches.

> (which the b4 tool will do for you)

> https://b4.docs.kernel.org/

TBH so will git send-email - it's a pretty unusual flow won't do this.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2026-05-07  8:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20260506204142.659778-1-val@packett.cool>
2026-05-06 20:33 ` [PATCH v2 1/6] ASoC: qcom: qdsp6: q6afe: fix clk vote response type mismatch Val Packett
2026-05-07  0:02   ` Mark Brown
2026-05-07  1:46     ` Val Packett
2026-05-07  2:16       ` Mark Brown
2026-05-07  8:03         ` Konrad Dybcio
2026-05-07  8:23           ` Mark Brown

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