From: "Sverdlin, Alexander" <alexander.sverdlin@siemens.com>
To: "linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"jerome.pouiller@silabs.com" <jerome.pouiller@silabs.com>
Cc: "linux-devel@silabs.com" <linux-devel@silabs.com>,
"johannes@sipsolutions.net" <johannes@sipsolutions.net>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH wireless-next v2 1/2] wifi: wfx: fix possible device hang during init
Date: Tue, 1 Sep 2026 12:40:09 +0000 [thread overview]
Message-ID: <ae1623bbf3e0945b37f39c031f65810b2cbf9f89.camel@siemens.com> (raw)
In-Reply-To: <cc4de4e40e3ca50e7288be2b9067802576567c25.camel@siemens.com>
Hi Jérôme!
On Tue, 2026-09-01 at 12:43 +0200, Alexander Sverdlin wrote:
> Thanks for the patch! Just one pre-existing issue below:
>
> On Tue, 2026-09-01 at 10:33 +0200, Jérôme Pouiller wrote:
> > The WFxxx device provides an SDIO interface. In addition to the usual
> > in-band SDIO IRQ, the device also supports out-of-band IRQ line. OOB IRQ
> > requires a specific initialization described in commit f00dc1d789e1c
> > ("staging: wfx: poll IRQ during init"):
> >
> > When the chip starts in SDIO mode, the external IRQ (aka Out-Of-Band
> > IRQ) cannot be used before to configure it. Therefore, the first
> > exchanges with the chip have to be done without the OOB IRQ.
> >
> > This patch allow to poll the data until the OOB IRQ is correctly
> > setup. In order to keep the code simpler, this patch also poll data
> > even if OOB IRQ is not used.
> >
> > Commit 57aa557f110d9 ("staging: wfx: introduce a way to poll IRQ")
> > announce some limitation about the data polling mechanism:
> >
> > This function [wfx_bh_poll_irq()] must used with care: if an IRQ
> > fires while the host reads control register, the IRQ can be lost.
> >
> > However, with last analysis, it seems it does not only impact the IRQ.
> > When this condition happen the hardware is lost and won't reply the next
> > commands. The only way to recover the error is to pull the reset pin and
> > bind the device again.
> >
> > Currently wfx_bh_poll_irq() is only used during the two first exchanges
> > with the hardware. Therefore, it has been reported to only happen after
> > a few hours of bind/rebind in a loop. This explain why it has not been
> > reported before.
> >
> > Fortunately, wfx_bh_poll_irq() is only required for OOB IRQ, which is
> > probably very marginal. The In-Band IRQ case also uses this function,
> > but only to simplify the code.
> >
> > This patch limits the use of wfx_bh_poll_irq() to the OOB IRQ. The bus
> > driver now tells wfx_probe() whether polling is necessary. When it is
> > not (in-band SDIO IRQ and SPI), the IRQ is subscribed before the first
> > exchange with the device and wfx_bh_poll_irq() is never called. When it
> > is (SDIO with OOB IRQ), the behavior is unchanged: the control register
> > is polled until the PDS file has configured the IRQ line.
> >
> > To conclude, In-Band users are now safe. Users of OOB IRQ will be still
> > impacted by the bug, but there is nothing we can do (and nobody
> > complained during the last 6 years).
> >
> > Fixes: f00dc1d789e1c ("staging: wfx: poll IRQ during init")
> > Reported-by: Gerard Salvatella <gerard.salvatella@siemens.com>
> > Reported-by: Lukas Stockmann <lukas.stockmann@siemens.com>
> > Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
> > ---
> > drivers/net/wireless/silabs/wfx/bh.c | 6 ++--
> > drivers/net/wireless/silabs/wfx/bus_sdio.c | 1 +
> > drivers/net/wireless/silabs/wfx/main.c | 34 ++++++++++++++--------
> > 3 files changed, 26 insertions(+), 15 deletions(-)
>
> []
>
> > diff --git a/drivers/net/wireless/silabs/wfx/main.c b/drivers/net/wireless/silabs/wfx/main.c
> > index dda36e41eed13..4e99fe7e5bb78 100644
> > --- a/drivers/net/wireless/silabs/wfx/main.c
> > +++ b/drivers/net/wireless/silabs/wfx/main.c
> > @@ -399,12 +406,12 @@ int wfx_probe(struct wfx_dev *wdev)
> > dev_err(wdev->dev, "unsupported firmware API version (expect 1 while firmware returns %d)\n",
> > wdev->hw_caps.api_version_major);
> > err = -EOPNOTSUPP;
> > - goto bh_unregister;
> > + goto irq_unsubscribe;
> > }
> >
> > if (wdev->hw_caps.link_mode == SEC_LINK_ENFORCED) {
> > dev_err(wdev->dev, "chip require secure_link, but can't negotiate it\n");
> > - goto bh_unregister;
> > + goto irq_unsubscribe;
> > }
> >
> > if (wdev->hw_caps.region_sel_mode) {
>
> At this point err still holds the (positive) return value from wait_for_completion_timeout,
> so wfx_probe() would return a positive value (as failure).
>
> But maybe it deserves a separate patch.
I was able to carry out a short regression test in the meanwhile and at least
I didn't see any regression on a system with SDIO and inband IRQs.
Reviewed-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Tested-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
My colleagues will give you a feedback from a long-term test run.
Thank you!
--
Alexander Sverdlin
Siemens AG
www.siemens.com
next prev parent reply other threads:[~2026-09-01 12:40 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-01 8:33 [PATCH wireless-next v2 0/2] wifi: wfx: fix possible device hang during init Jérôme Pouiller
2026-09-01 8:33 ` [PATCH wireless-next v2 1/2] " Jérôme Pouiller
2026-09-01 8:50 ` sashiko-bot
2026-09-01 10:02 ` Jérôme Pouiller
2026-09-01 10:43 ` Sverdlin, Alexander
2026-09-01 12:40 ` Sverdlin, Alexander [this message]
2026-09-01 14:15 ` Jérôme Pouiller
2026-09-01 8:33 ` [PATCH wireless-next v2 2/2] dt-bindings: net: wireless: wfx: discourage OOB IRQ with SDIO Jérôme Pouiller
2026-09-03 10:29 ` Krzysztof Kozlowski
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=ae1623bbf3e0945b37f39c031f65810b2cbf9f89.camel@siemens.com \
--to=alexander.sverdlin@siemens.com \
--cc=devicetree@vger.kernel.org \
--cc=jerome.pouiller@silabs.com \
--cc=johannes@sipsolutions.net \
--cc=linux-devel@silabs.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.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