linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/1] wcn36xx: Revert firmware link monitoring
@ 2021-10-25  9:30 Bryan O'Donoghue
  2021-10-25  9:30 ` [PATCH v3 1/1] Revert "wcn36xx: Enable firmware link monitoring" Bryan O'Donoghue
  0 siblings, 1 reply; 3+ messages in thread
From: Bryan O'Donoghue @ 2021-10-25  9:30 UTC (permalink / raw)
  To: kvalo, linux-wireless, wcn36xx
  Cc: loic.poulain, benl, daniel.thompson, bryan.odonoghue

V3:
- Remove Ben's SOB
- Drops Fixes tag
- Adds meaningful description of what's being done and why to commit log

V2:
- Adds Fixes tag

V1:
We can get this working with

- Secure APs PS on/off
- Open APs PS on

by setting firmware feature bit WLANACTIVE_OFFLOAD 

Open APs PS off though is non-functional even with the above bit enabled
and three quaters of a wheel is useless.

So unfortunately for now zap it off. 

Bryan O'Donoghue (1):
  Revert "wcn36xx: Enable firmware link monitoring"

 drivers/net/wireless/ath/wcn36xx/main.c | 1 -
 1 file changed, 1 deletion(-)

-- 
2.33.0


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

* [PATCH v3 1/1] Revert "wcn36xx: Enable firmware link monitoring"
  2021-10-25  9:30 [PATCH v3 0/1] wcn36xx: Revert firmware link monitoring Bryan O'Donoghue
@ 2021-10-25  9:30 ` Bryan O'Donoghue
  2021-10-27  7:46   ` Kalle Valo
  0 siblings, 1 reply; 3+ messages in thread
From: Bryan O'Donoghue @ 2021-10-25  9:30 UTC (permalink / raw)
  To: kvalo, linux-wireless, wcn36xx
  Cc: loic.poulain, benl, daniel.thompson, bryan.odonoghue

Firmware link offload monitoring can be made to work in 3/4 cases by
switching on firmware feature bit WLANACTIVE_OFFLOAD

- Secure power-save on
- Secure power-save off
- Open power-save on

However, with an open AP if we switch off power-saving - thus never
entering Beacon Mode Power Save - BMPS, firmware never forwards loss
of beacon upwards.

We had hoped that WLANACTIVE_OFFLOAD and some fixes for sequence numbers
would unblock this but, it hasn't and further investigation is required.

Its possible to have a complete set of Secure power-save on/off and Open
power-save on/off provided we use Linux' link monitoring mechanism.

While we debug the Open AP failure we need to fix upstream.

This reverts commit c973fdad79f6eaf247d48b5fc77733e989eb01e1.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
 drivers/net/wireless/ath/wcn36xx/main.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/wireless/ath/wcn36xx/main.c b/drivers/net/wireless/ath/wcn36xx/main.c
index dd8810fd76a3d..fd8b2753da7dd 100644
--- a/drivers/net/wireless/ath/wcn36xx/main.c
+++ b/drivers/net/wireless/ath/wcn36xx/main.c
@@ -1334,7 +1334,6 @@ static int wcn36xx_init_ieee80211(struct wcn36xx *wcn)
 	ieee80211_hw_set(wcn->hw, HAS_RATE_CONTROL);
 	ieee80211_hw_set(wcn->hw, SINGLE_SCAN_ON_ALL_BANDS);
 	ieee80211_hw_set(wcn->hw, REPORTS_TX_ACK_STATUS);
-	ieee80211_hw_set(wcn->hw, CONNECTION_MONITOR);
 
 	wcn->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
 		BIT(NL80211_IFTYPE_AP) |
-- 
2.33.0


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

* Re: [PATCH v3 1/1] Revert "wcn36xx: Enable firmware link monitoring"
  2021-10-25  9:30 ` [PATCH v3 1/1] Revert "wcn36xx: Enable firmware link monitoring" Bryan O'Donoghue
@ 2021-10-27  7:46   ` Kalle Valo
  0 siblings, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2021-10-27  7:46 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: linux-wireless, wcn36xx, loic.poulain, benl, daniel.thompson,
	bryan.odonoghue

Bryan O'Donoghue <bryan.odonoghue@linaro.org> wrote:

> Firmware link offload monitoring can be made to work in 3/4 cases by
> switching on firmware feature bit WLANACTIVE_OFFLOAD
> 
> - Secure power-save on
> - Secure power-save off
> - Open power-save on
> 
> However, with an open AP if we switch off power-saving - thus never
> entering Beacon Mode Power Save - BMPS, firmware never forwards loss
> of beacon upwards.
> 
> We had hoped that WLANACTIVE_OFFLOAD and some fixes for sequence numbers
> would unblock this but, it hasn't and further investigation is required.
> 
> Its possible to have a complete set of Secure power-save on/off and Open
> power-save on/off provided we use Linux' link monitoring mechanism.
> 
> While we debug the Open AP failure we need to fix upstream.
> 
> This reverts commit c973fdad79f6eaf247d48b5fc77733e989eb01e1.
> 
> Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>

Patch applied to ath-next branch of ath.git, thanks.

43ea9bd84f27 Revert "wcn36xx: Enable firmware link monitoring"

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/20211025093037.3966022-2-bryan.odonoghue@linaro.org/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


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

end of thread, other threads:[~2021-10-27  7:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-25  9:30 [PATCH v3 0/1] wcn36xx: Revert firmware link monitoring Bryan O'Donoghue
2021-10-25  9:30 ` [PATCH v3 1/1] Revert "wcn36xx: Enable firmware link monitoring" Bryan O'Donoghue
2021-10-27  7:46   ` Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).