* [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
@ 2024-03-09 12:11 Lingbo Kong
2024-03-11 18:18 ` Jeff Johnson
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Lingbo Kong @ 2024-03-09 12:11 UTC (permalink / raw)
To: ath11k; +Cc: linux-wireless, quic_lingbok
Currently, the calculation of the average signal strength in station mode
is incorrect.
This is because before calculating the average signal strength, ath11k need
to determine whether the hardware and firmware support db2dbm, if the
hardware and firmware support db2dbm, do not need to add noise floor,
otherwise, need to add noise floor.
Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
---
drivers/net/wireless/ath/ath11k/mac.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/ath/ath11k/mac.c b/drivers/net/wireless/ath/ath11k/mac.c
index a6a37d67a50a..1f9cf7a42ba8 100644
--- a/drivers/net/wireless/ath/ath11k/mac.c
+++ b/drivers/net/wireless/ath/ath11k/mac.c
@@ -8976,8 +8976,11 @@ static void ath11k_mac_op_sta_statistics(struct ieee80211_hw *hw,
sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL);
}
- sinfo->signal_avg = ewma_avg_rssi_read(&arsta->avg_rssi) +
- ATH11K_DEFAULT_NOISE_FLOOR;
+ sinfo->signal_avg = ewma_avg_rssi_read(&arsta->avg_rssi);
+
+ if (!db2dbm)
+ sinfo->signal_avg += ATH11K_DEFAULT_NOISE_FLOOR;
+
sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG);
}
base-commit: 7a5ed5a3801e9b6cf7bafbb0a05c70cef620b22a
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
2024-03-09 12:11 [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode Lingbo Kong
@ 2024-03-11 18:18 ` Jeff Johnson
2024-03-13 16:20 ` Kalle Valo
2024-06-19 14:00 ` Kalle Valo
2 siblings, 0 replies; 7+ messages in thread
From: Jeff Johnson @ 2024-03-11 18:18 UTC (permalink / raw)
To: Lingbo Kong, ath11k; +Cc: linux-wireless
On 3/9/2024 4:11 AM, Lingbo Kong wrote:
> Currently, the calculation of the average signal strength in station mode
> is incorrect.
>
> This is because before calculating the average signal strength, ath11k need
> to determine whether the hardware and firmware support db2dbm, if the
> hardware and firmware support db2dbm, do not need to add noise floor,
> otherwise, need to add noise floor.
>
> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
>
> Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
2024-03-09 12:11 [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode Lingbo Kong
2024-03-11 18:18 ` Jeff Johnson
@ 2024-03-13 16:20 ` Kalle Valo
2024-03-21 2:55 ` Lingbo Kong
2024-04-14 13:33 ` Lingbo Kong
2024-06-19 14:00 ` Kalle Valo
2 siblings, 2 replies; 7+ messages in thread
From: Kalle Valo @ 2024-03-13 16:20 UTC (permalink / raw)
To: Lingbo Kong; +Cc: ath11k, linux-wireless, quic_lingbok
Lingbo Kong <quic_lingbok@quicinc.com> wrote:
> Currently, the calculation of the average signal strength in station mode
> is incorrect.
>
> This is because before calculating the average signal strength, ath11k need
> to determine whether the hardware and firmware support db2dbm, if the
> hardware and firmware support db2dbm, do not need to add noise floor,
> otherwise, need to add noise floor.
>
> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
>
> Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
What about AP chipsets like QCN9074, do they also work similarly?
--
https://patchwork.kernel.org/project/linux-wireless/patch/20240309121129.5379-1-quic_lingbok@quicinc.com/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
2024-03-13 16:20 ` Kalle Valo
@ 2024-03-21 2:55 ` Lingbo Kong
2024-04-14 13:33 ` Lingbo Kong
1 sibling, 0 replies; 7+ messages in thread
From: Lingbo Kong @ 2024-03-21 2:55 UTC (permalink / raw)
To: Kalle Valo; +Cc: ath11k, linux-wireless
On 2024/3/14 0:20, Kalle Valo wrote:
> Lingbo Kong <quic_lingbok@quicinc.com> wrote:
>
>> Currently, the calculation of the average signal strength in station mode
>> is incorrect.
>>
>> This is because before calculating the average signal strength, ath11k need
>> to determine whether the hardware and firmware support db2dbm, if the
>> hardware and firmware support db2dbm, do not need to add noise floor,
>> otherwise, need to add noise floor.
>>
>> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
>>
>> Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
>> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
>
> What about AP chipsets like QCN9074, do they also work similarly?
>
yes, i asked WIN's colleague Ashok Raj Nagarajan for helping to test
this patch.
they work similarly.
Best regards
Lingbo Kong
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
2024-03-13 16:20 ` Kalle Valo
2024-03-21 2:55 ` Lingbo Kong
@ 2024-04-14 13:33 ` Lingbo Kong
2024-04-15 16:09 ` Kalle Valo
1 sibling, 1 reply; 7+ messages in thread
From: Lingbo Kong @ 2024-04-14 13:33 UTC (permalink / raw)
To: Kalle Valo; +Cc: ath11k, linux-wireless
On 2024/3/14 0:20, Kalle Valo wrote:
> Lingbo Kong <quic_lingbok@quicinc.com> wrote:
>
>> Currently, the calculation of the average signal strength in station mode
>> is incorrect.
>>
>> This is because before calculating the average signal strength, ath11k need
>> to determine whether the hardware and firmware support db2dbm, if the
>> hardware and firmware support db2dbm, do not need to add noise floor,
>> otherwise, need to add noise floor.
>>
>> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
>>
>> Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
>> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
>
> What about AP chipsets like QCN9074, do they also work similarly?
>
Hi, kalle,
I observe this patch's status is deferred.
https://patchwork.kernel.org/project/linux-wireless/patch/20240309121129.5379-1-quic_lingbok@quicinc.com/
I think it belongs to bug-fix, so, could you please merge it? :)
Best regards
Lingbo Kong
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
2024-04-14 13:33 ` Lingbo Kong
@ 2024-04-15 16:09 ` Kalle Valo
0 siblings, 0 replies; 7+ messages in thread
From: Kalle Valo @ 2024-04-15 16:09 UTC (permalink / raw)
To: Lingbo Kong; +Cc: ath11k, linux-wireless
Lingbo Kong <quic_lingbok@quicinc.com> writes:
> On 2024/3/14 0:20, Kalle Valo wrote:
>> Lingbo Kong <quic_lingbok@quicinc.com> wrote:
>>
>>> Currently, the calculation of the average signal strength in station mode
>>> is incorrect.
>>>
>>> This is because before calculating the average signal strength, ath11k need
>>> to determine whether the hardware and firmware support db2dbm, if the
>>> hardware and firmware support db2dbm, do not need to add noise floor,
>>> otherwise, need to add noise floor.
>>>
>>> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
>>>
>>> Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
>>> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
>> What about AP chipsets like QCN9074, do they also work similarly?
>>
> Hi, kalle,
>
> I observe this patch's status is deferred.
> https://patchwork.kernel.org/project/linux-wireless/patch/20240309121129.5379-1-quic_lingbok@quicinc.com/
>
> I think it belongs to bug-fix, so, could you please merge it? :)
I need to test it first which takes time.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode
2024-03-09 12:11 [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode Lingbo Kong
2024-03-11 18:18 ` Jeff Johnson
2024-03-13 16:20 ` Kalle Valo
@ 2024-06-19 14:00 ` Kalle Valo
2 siblings, 0 replies; 7+ messages in thread
From: Kalle Valo @ 2024-06-19 14:00 UTC (permalink / raw)
To: Lingbo Kong; +Cc: ath11k, linux-wireless, quic_lingbok
Lingbo Kong <quic_lingbok@quicinc.com> wrote:
> Currently, the calculation of the average signal strength in station mode
> is incorrect.
>
> This is because before calculating the average signal strength, ath11k need
> to determine whether the hardware and firmware support db2dbm, if the
> hardware and firmware support db2dbm, do not need to add noise floor,
> otherwise, need to add noise floor.
>
> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
>
> Signed-off-by: Lingbo Kong <quic_lingbok@quicinc.com>
> Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Patch applied to ath-next branch of ath.git, thanks.
aadeee47e9d7 wifi: ath11k: modify the calculation of the average signal strength in station mode
--
https://patchwork.kernel.org/project/linux-wireless/patch/20240309121129.5379-1-quic_lingbok@quicinc.com/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-06-19 14:00 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-09 12:11 [PATCH] wifi: ath11k: modify the calculation of the average signal strength in station mode Lingbo Kong
2024-03-11 18:18 ` Jeff Johnson
2024-03-13 16:20 ` Kalle Valo
2024-03-21 2:55 ` Lingbo Kong
2024-04-14 13:33 ` Lingbo Kong
2024-04-15 16:09 ` Kalle Valo
2024-06-19 14:00 ` Kalle Valo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox