* [PATCH] power: sequencing: qcom-wcn: explain why we need the WLAN_EN GPIO hack
@ 2024-12-17 13:07 Bartosz Golaszewski
2024-12-17 14:03 ` Manivannan Sadhasivam
0 siblings, 1 reply; 3+ messages in thread
From: Bartosz Golaszewski @ 2024-12-17 13:07 UTC (permalink / raw)
To: Manivannan Sadhasivam, Stephan Gerhold
Cc: linux-pm, linux-kernel, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
With the recent rework of the PCI power control code, the workaround for
the wlan-enable GPIO - where we don't set a default (low) state in the
power sequencing driver, but instead request the pin as-is - should no
longer be needed but some platforms still fail to probe the WLAN
controller. This is caused by the Qcom PCIe controller and needs a
workaround in the controller driver so add a FIXME to eventually remove
the hack from this driver once this is done.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
drivers/power/sequencing/pwrseq-qcom-wcn.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
index cc03b5aaa8f2..9d6a68ac719f 100644
--- a/drivers/power/sequencing/pwrseq-qcom-wcn.c
+++ b/drivers/power/sequencing/pwrseq-qcom-wcn.c
@@ -396,6 +396,14 @@ static int pwrseq_qcom_wcn_probe(struct platform_device *pdev)
return dev_err_probe(dev, PTR_ERR(ctx->bt_gpio),
"Failed to get the Bluetooth enable GPIO\n");
+ /*
+ * FIXME: This should actually be GPIOD_OUT_LOW. The driver model can
+ * correctly handle provider <-> consumer dependencies but there is a
+ * known issue with Qcom PCIe controllers where, if the device is
+ * powered off abrubtly (without controller driver noticing), the PCIe
+ * link moves to link down state. Until the link-down handling is
+ * addressed in the controller driver, we need to keep this workaround.
+ */
ctx->wlan_gpio = devm_gpiod_get_optional(dev, "wlan-enable",
GPIOD_ASIS);
if (IS_ERR(ctx->wlan_gpio))
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] power: sequencing: qcom-wcn: explain why we need the WLAN_EN GPIO hack
2024-12-17 13:07 [PATCH] power: sequencing: qcom-wcn: explain why we need the WLAN_EN GPIO hack Bartosz Golaszewski
@ 2024-12-17 14:03 ` Manivannan Sadhasivam
2024-12-17 15:09 ` Bartosz Golaszewski
0 siblings, 1 reply; 3+ messages in thread
From: Manivannan Sadhasivam @ 2024-12-17 14:03 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Stephan Gerhold, linux-pm, linux-kernel, Bartosz Golaszewski
On Tue, Dec 17, 2024 at 02:07:14PM +0100, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> With the recent rework of the PCI power control code, the workaround for
> the wlan-enable GPIO - where we don't set a default (low) state in the
> power sequencing driver, but instead request the pin as-is - should no
> longer be needed but some platforms still fail to probe the WLAN
> controller. This is caused by the Qcom PCIe controller and needs a
> workaround in the controller driver so add a FIXME to eventually remove
> the hack from this driver once this is done.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---
> drivers/power/sequencing/pwrseq-qcom-wcn.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
> index cc03b5aaa8f2..9d6a68ac719f 100644
> --- a/drivers/power/sequencing/pwrseq-qcom-wcn.c
> +++ b/drivers/power/sequencing/pwrseq-qcom-wcn.c
> @@ -396,6 +396,14 @@ static int pwrseq_qcom_wcn_probe(struct platform_device *pdev)
> return dev_err_probe(dev, PTR_ERR(ctx->bt_gpio),
> "Failed to get the Bluetooth enable GPIO\n");
>
> + /*
> + * FIXME: This should actually be GPIOD_OUT_LOW. The driver model can
> + * correctly handle provider <-> consumer dependencies but there is a
> + * known issue with Qcom PCIe controllers where, if the device is
> + * powered off abrubtly (without controller driver noticing), the PCIe
> + * link moves to link down state. Until the link-down handling is
> + * addressed in the controller driver, we need to keep this workaround.
Maybe we should add some info on how GPIOD_OUT_LOW causes link down. Like,
/*
* FIXME: This should actually be GPIOD_OUT_LOW. But doing so would
* cause the WLAN power to be toggled, resulting in PCIe link down.
* Since the PCIe controller driver is not handling link down currently,
* the device becomes unusable. So we need to keep this workaround until
* the link down handling is implemented in the controller driver.
*/
But the comment applies to gpiod_direction_output() call as well, right?
- Mani
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] power: sequencing: qcom-wcn: explain why we need the WLAN_EN GPIO hack
2024-12-17 14:03 ` Manivannan Sadhasivam
@ 2024-12-17 15:09 ` Bartosz Golaszewski
0 siblings, 0 replies; 3+ messages in thread
From: Bartosz Golaszewski @ 2024-12-17 15:09 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: Stephan Gerhold, linux-pm, linux-kernel, Bartosz Golaszewski
On Tue, Dec 17, 2024 at 3:03 PM Manivannan Sadhasivam
<manivannan.sadhasivam@linaro.org> wrote:
>
> On Tue, Dec 17, 2024 at 02:07:14PM +0100, Bartosz Golaszewski wrote:
> > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> >
> > With the recent rework of the PCI power control code, the workaround for
> > the wlan-enable GPIO - where we don't set a default (low) state in the
> > power sequencing driver, but instead request the pin as-is - should no
> > longer be needed but some platforms still fail to probe the WLAN
> > controller. This is caused by the Qcom PCIe controller and needs a
> > workaround in the controller driver so add a FIXME to eventually remove
> > the hack from this driver once this is done.
> >
> > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> > ---
> > drivers/power/sequencing/pwrseq-qcom-wcn.c | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
> > diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
> > index cc03b5aaa8f2..9d6a68ac719f 100644
> > --- a/drivers/power/sequencing/pwrseq-qcom-wcn.c
> > +++ b/drivers/power/sequencing/pwrseq-qcom-wcn.c
> > @@ -396,6 +396,14 @@ static int pwrseq_qcom_wcn_probe(struct platform_device *pdev)
> > return dev_err_probe(dev, PTR_ERR(ctx->bt_gpio),
> > "Failed to get the Bluetooth enable GPIO\n");
> >
> > + /*
> > + * FIXME: This should actually be GPIOD_OUT_LOW. The driver model can
> > + * correctly handle provider <-> consumer dependencies but there is a
> > + * known issue with Qcom PCIe controllers where, if the device is
> > + * powered off abrubtly (without controller driver noticing), the PCIe
> > + * link moves to link down state. Until the link-down handling is
> > + * addressed in the controller driver, we need to keep this workaround.
>
> Maybe we should add some info on how GPIOD_OUT_LOW causes link down. Like,
>
Sure.
> /*
> * FIXME: This should actually be GPIOD_OUT_LOW. But doing so would
> * cause the WLAN power to be toggled, resulting in PCIe link down.
> * Since the PCIe controller driver is not handling link down currently,
> * the device becomes unusable. So we need to keep this workaround until
> * the link down handling is implemented in the controller driver.
> */
>
> But the comment applies to gpiod_direction_output() call as well, right?
>
Yes, but there is already a comment above it.
Bartosz
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-12-17 15:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-17 13:07 [PATCH] power: sequencing: qcom-wcn: explain why we need the WLAN_EN GPIO hack Bartosz Golaszewski
2024-12-17 14:03 ` Manivannan Sadhasivam
2024-12-17 15:09 ` Bartosz Golaszewski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox