All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bjorn Andersson <andersson@kernel.org>
To: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Cc: Bjorn Andersson <bjorn.andersson@oss.qualcomm.com>,
	 Srinivas Kandagatla <srini@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	 Vinod Koul <vkoul@kernel.org>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	 linux-arm-msm@vger.kernel.org, linux-sound@vger.kernel.org,
	linux-kernel@vger.kernel.org,  stable@vger.kernel.org
Subject: Re: [PATCH 0/7] slimbus: qcom-ngd-ctrl: Fix some race conditions and deadlocks
Date: Tue, 31 Mar 2026 21:54:05 -0500	[thread overview]
Message-ID: <acyEDJK4nkqsOHvM@baldur> (raw)
In-Reply-To: <noodhyin3en2l5xravmt5l6dslcz74na5akin24zod2zhmsevo@pqtxi5ydbidx>

On Wed, Mar 11, 2026 at 03:40:46AM +0200, Dmitry Baryshkov wrote:
> On Mon, Mar 09, 2026 at 11:09:01PM -0500, Bjorn Andersson wrote:
> > When the qcom-ngd-ctrl driver is probed after the ADSP remoteproc, the
> > SSR notifier will fire immediately, which results in
> > qcom_slim_ngd_ssr_pdr_notify() attempting to schedule_work() on an
> > unitialized work_struct.
> > 
> > The concrete result of this is that my db845c/RB3 now fails to boot 100%
> > of the time.
> > 
> > In reviewing the problematic code, a few other problems where
> > discovered, such that platform_driver_unregister() is used to unregister
> > the child device.
> > 
> > Lastly, with the db845c booting, it was determined that attempting to
> > stop the ADSP remoteproc causes the slimbus driver to deadlock.
> > 
> > Note that while this solves the problems described above, and unblock
> > boot as well as restart of the remoteproc, this stack needs more love.
> > 
> > Upon tearing down the slimbus controller (when the ADSP goes down), the
> > slimbus devices attempts to access their slimbus devices - which is
> > prevented by the controller being runtime suspended. This results in a
> > wall of errors in the log, about failing transactions.
> > 
> > Signed-off-by: Bjorn Andersson <bjorn.andersson@oss.qualcomm.com>
> > ---
> > Bjorn Andersson (7):
> >       slimbus: qcom-ngd-ctrl: Fix up platform_driver registration
> >       slimbus: qcom-ngd-ctrl: Fix probe error path ordering
> >       slimbus: qcom-ngd-ctrl: Correct PDR and SSR cleanup ownership
> >       slimbus: qcom-ngd-ctrl: Register callbacks after creating the ngd
> >       slimbus: qcom-ngd-ctrl: Initialize controller resources in controller
> >       slimbus: qcom-ngd-ctrl: Balance pm_runtime enablement for NGD
> >       slimbus: qcom-ngd-ctrl: Avoid ABBA on tx_lock/ctrl->lock
> > 
> >  drivers/slimbus/qcom-ngd-ctrl.c | 127 +++++++++++++++++++++++++---------------
> >  1 file changed, 80 insertions(+), 47 deletions(-)
> > ---
> > base-commit: a0ae2a256046c0c5d3778d1a194ff2e171f16e5f
> > change-id: 20260211-slim-ngd-dev-74166f29f035
> > 
> > Best regards,
> > -- 
> > Bjorn Andersson <bjorn.andersson@oss.qualcomm.com>
> 
> Bjorn,
> 
> While you are at it, it looks like there is another possible issue:
> ngd->base is set after platform_device_add(), possibly letting NGD
> driver to use uninitialized base.
> 

ngd->base is only dereferences from qcom_slim_ngd_up_worker() and
qcom_slim_ngd_runtime_resume(), so at this time there's no concrete
problem here.

I'll keep it in mind as I continue to poke at the driver.

Regards,
Bjorn

> -- 
> With best wishes
> Dmitry

      reply	other threads:[~2026-04-01  2:54 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-10  4:09 [PATCH 0/7] slimbus: qcom-ngd-ctrl: Fix some race conditions and deadlocks Bjorn Andersson
2026-03-10  4:09 ` [PATCH 1/7] slimbus: qcom-ngd-ctrl: Fix up platform_driver registration Bjorn Andersson
2026-03-10  7:33   ` Mukesh Ojha
2026-04-01  3:06     ` Bjorn Andersson
2026-03-11  1:30   ` Dmitry Baryshkov
2026-03-10  4:09 ` [PATCH 2/7] slimbus: qcom-ngd-ctrl: Fix probe error path ordering Bjorn Andersson
2026-03-10  7:36   ` Mukesh Ojha
2026-03-11  1:30   ` Dmitry Baryshkov
2026-03-10  4:09 ` [PATCH 3/7] slimbus: qcom-ngd-ctrl: Correct PDR and SSR cleanup ownership Bjorn Andersson
2026-03-10  7:39   ` Mukesh Ojha
2026-03-24  2:36     ` Bjorn Andersson
2026-03-24  6:32       ` Mukesh Ojha
2026-03-11  1:32   ` Dmitry Baryshkov
2026-03-10  4:09 ` [PATCH 4/7] slimbus: qcom-ngd-ctrl: Register callbacks after creating the ngd Bjorn Andersson
2026-03-10  7:49   ` Mukesh Ojha
2026-03-11  1:45   ` Dmitry Baryshkov
2026-03-10  4:09 ` [PATCH 5/7] slimbus: qcom-ngd-ctrl: Initialize controller resources in controller Bjorn Andersson
2026-03-10  7:54   ` Mukesh Ojha
2026-03-11  1:34   ` Dmitry Baryshkov
2026-03-10  4:09 ` [PATCH 6/7] slimbus: qcom-ngd-ctrl: Balance pm_runtime enablement for NGD Bjorn Andersson
2026-03-10  8:00   ` Mukesh Ojha
2026-03-31 22:59     ` Bjorn Andersson
2026-03-11  1:34   ` Dmitry Baryshkov
2026-03-31 22:54     ` Bjorn Andersson
2026-03-10  4:09 ` [PATCH 7/7] slimbus: qcom-ngd-ctrl: Avoid ABBA on tx_lock/ctrl->lock Bjorn Andersson
2026-03-10 10:03   ` Mukesh Ojha
2026-03-11  0:06     ` Bjorn Andersson
2026-03-11  1:37   ` Dmitry Baryshkov
2026-03-31 22:45     ` Bjorn Andersson
2026-03-11  1:40 ` [PATCH 0/7] slimbus: qcom-ngd-ctrl: Fix some race conditions and deadlocks Dmitry Baryshkov
2026-04-01  2:54   ` Bjorn Andersson [this message]

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=acyEDJK4nkqsOHvM@baldur \
    --to=andersson@kernel.org \
    --cc=bjorn.andersson@oss.qualcomm.com \
    --cc=dmitry.baryshkov@oss.qualcomm.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=krzk@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=srini@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vkoul@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.