From: Adam Young <adam@younglogic.com>
To: Sudeep Holla <sudeep.holla@kernel.org>,
Jassi Brar <jassisinghbrar@gmail.com>,
linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Huisong Li <lihuisong@huawei.com>,
Cristian Marussi <cristian.marussi@arm.com>
Subject: Re: [PATCH v2 1/3] mailbox: pcc: Notify clients on polled completion
Date: Sun, 26 Jul 2026 01:32:12 -0400 [thread overview]
Message-ID: <c1872aa5-087b-41b8-b65e-53037769edc8@younglogic.com> (raw)
In-Reply-To: <20260723143928.2625970-2-sudeep.holla@kernel.org>
On 7/23/26 10:39, Sudeep Holla wrote:
> PCC channels without a platform interrupt rely on the mailbox
> polling path to detect command completion.
>
> That path currently only reports transmit completion to the mailbox
> core, so clients that wait for their receive callback do not get
> notified when the command completes.
>
> Call mbox_chan_received_data() when polling observes completion on a
> channel without a platform IRQ, matching the interrupt-driven
> completion path.
>
> Reported-by: Cristian Marussi <cristian.marussi@arm.com>
> Acked-by: Huisong Li <lihuisong@huawei.com>
> Signed-off-by: Sudeep Holla <sudeep.holla@kernel.org>
> ---
> drivers/mailbox/pcc.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mailbox/pcc.c b/drivers/mailbox/pcc.c
> index 636879ae1db7..d96b8b54e77e 100644
> --- a/drivers/mailbox/pcc.c
> +++ b/drivers/mailbox/pcc.c
> @@ -449,7 +449,15 @@ static bool pcc_last_tx_done(struct mbox_chan *chan)
> {
> struct pcc_chan_info *pchan = chan->con_priv;
>
> - return pcc_mbox_cmd_complete_check(pchan);
> + if (!(chan->txdone_method & MBOX_TXDONE_BY_POLL))
> + return false;
> +
> + if (!pcc_mbox_cmd_complete_check(pchan))
> + return false;
> +
> + mbox_chan_received_data(chan, NULL);
> +
> + return true;
> }
>
> /**
Reviewed-by: Adam Young <admiyo@os.amperecomputing.com>
next prev parent reply other threads:[~2026-07-26 5:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-23 14:39 [PATCH v2 0/3] mailbox: pcc: Improve completion handling and validation Sudeep Holla
2026-07-23 14:39 ` [PATCH v2 1/3] mailbox: pcc: Notify clients on polled completion Sudeep Holla
2026-07-26 5:32 ` Adam Young [this message]
2026-07-23 14:39 ` [PATCH v2 2/3] mailbox: pcc: Check shared memory signature on request Sudeep Holla
2026-07-26 5:34 ` Adam Young
2026-07-23 14:39 ` [PATCH v2 3/3] mailbox: pcc: Fix command timeout due to missed interrupt Sudeep Holla
2026-07-26 5:33 ` Adam Young
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c1872aa5-087b-41b8-b65e-53037769edc8@younglogic.com \
--to=adam@younglogic.com \
--cc=cristian.marussi@arm.com \
--cc=jassisinghbrar@gmail.com \
--cc=lihuisong@huawei.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sudeep.holla@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox