mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +00:00
b33bfcf9fa
Synchronize the ath11k backports with the current ath-next tree. All of the changes are various bugfixes, there is no new major feature. Signed-off-by: Robert Marko <robimarko@gmail.com>
101 lines
3.8 KiB
Diff
101 lines
3.8 KiB
Diff
From 7791487cd16cafd018cba0bf73789111a9f16843 Mon Sep 17 00:00:00 2001
|
|
From: Muna Sinada <quic_msinada@quicinc.com>
|
|
Date: Sat, 26 Aug 2023 08:42:46 +0300
|
|
Subject: [PATCH] wifi: ath11k: fix tid bitmap is 0 in peer rx mu stats
|
|
|
|
Correct parsing of reading offset for rx tid 16 bit bitmap. Incorrect
|
|
offset caused peer rx mu stats tid bitmap to always be zero. This
|
|
correction is in the software context and does not affect the
|
|
firmware interface.
|
|
|
|
Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.4.0.1-00356-QCAHKSWPL_SILICONZ-1
|
|
|
|
Signed-off-by: Muna Sinada <quic_msinada@quicinc.com>
|
|
Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com>
|
|
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
|
|
Link: https://lore.kernel.org/r/1692827868-15667-2-git-send-email-quic_msinada@quicinc.com
|
|
---
|
|
drivers/net/wireless/ath/ath11k/hal_rx.c | 10 +++++-----
|
|
drivers/net/wireless/ath/ath11k/hal_rx.h | 17 +++++++++--------
|
|
2 files changed, 14 insertions(+), 13 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/hal_rx.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/hal_rx.c
|
|
@@ -814,7 +814,7 @@ ath11k_hal_rx_handle_ofdma_info(void *rx
|
|
|
|
rx_user_status->ul_ofdma_user_v0_word0 = __le32_to_cpu(ppdu_end_user->info6);
|
|
|
|
- rx_user_status->ul_ofdma_user_v0_word1 = __le32_to_cpu(ppdu_end_user->info9);
|
|
+ rx_user_status->ul_ofdma_user_v0_word1 = __le32_to_cpu(ppdu_end_user->info10);
|
|
}
|
|
|
|
static inline void
|
|
@@ -826,10 +826,10 @@ ath11k_hal_rx_populate_byte_count(void *
|
|
|
|
rx_user_status->mpdu_ok_byte_count =
|
|
FIELD_GET(HAL_RX_PPDU_END_USER_STATS_INFO8_MPDU_OK_BYTE_COUNT,
|
|
- __le32_to_cpu(ppdu_end_user->info7));
|
|
+ __le32_to_cpu(ppdu_end_user->info8));
|
|
rx_user_status->mpdu_err_byte_count =
|
|
FIELD_GET(HAL_RX_PPDU_END_USER_STATS_INFO9_MPDU_ERR_BYTE_COUNT,
|
|
- __le32_to_cpu(ppdu_end_user->info8));
|
|
+ __le32_to_cpu(ppdu_end_user->info9));
|
|
}
|
|
|
|
static inline void
|
|
@@ -903,8 +903,8 @@ ath11k_hal_rx_parse_mon_status_tlv(struc
|
|
FIELD_GET(HAL_RX_PPDU_END_USER_STATS_INFO2_AST_INDEX,
|
|
__le32_to_cpu(eu_stats->info2));
|
|
ppdu_info->tid =
|
|
- ffs(FIELD_GET(HAL_RX_PPDU_END_USER_STATS_INFO6_TID_BITMAP,
|
|
- __le32_to_cpu(eu_stats->info6))) - 1;
|
|
+ ffs(FIELD_GET(HAL_RX_PPDU_END_USER_STATS_INFO7_TID_BITMAP,
|
|
+ __le32_to_cpu(eu_stats->info7))) - 1;
|
|
ppdu_info->tcp_msdu_count =
|
|
FIELD_GET(HAL_RX_PPDU_END_USER_STATS_INFO4_TCP_MSDU_CNT,
|
|
__le32_to_cpu(eu_stats->info4));
|
|
--- a/drivers/net/wireless/ath/ath11k/hal_rx.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/hal_rx.h
|
|
@@ -149,7 +149,7 @@ struct hal_rx_mon_ppdu_info {
|
|
u8 beamformed;
|
|
u8 rssi_comb;
|
|
u8 rssi_chain_pri20[HAL_RX_MAX_NSS];
|
|
- u8 tid;
|
|
+ u16 tid;
|
|
u16 ht_flags;
|
|
u16 vht_flags;
|
|
u16 he_flags;
|
|
@@ -219,11 +219,11 @@ struct hal_rx_ppdu_start {
|
|
#define HAL_RX_PPDU_END_USER_STATS_INFO5_OTHER_MSDU_CNT GENMASK(15, 0)
|
|
#define HAL_RX_PPDU_END_USER_STATS_INFO5_TCP_ACK_MSDU_CNT GENMASK(31, 16)
|
|
|
|
-#define HAL_RX_PPDU_END_USER_STATS_INFO6_TID_BITMAP GENMASK(15, 0)
|
|
-#define HAL_RX_PPDU_END_USER_STATS_INFO6_TID_EOSP_BITMAP GENMASK(31, 16)
|
|
+#define HAL_RX_PPDU_END_USER_STATS_INFO7_TID_BITMAP GENMASK(15, 0)
|
|
+#define HAL_RX_PPDU_END_USER_STATS_INFO7_TID_EOSP_BITMAP GENMASK(31, 16)
|
|
|
|
-#define HAL_RX_PPDU_END_USER_STATS_INFO7_MPDU_OK_BYTE_COUNT GENMASK(24, 0)
|
|
-#define HAL_RX_PPDU_END_USER_STATS_INFO8_MPDU_ERR_BYTE_COUNT GENMASK(24, 0)
|
|
+#define HAL_RX_PPDU_END_USER_STATS_INFO8_MPDU_OK_BYTE_COUNT GENMASK(24, 0)
|
|
+#define HAL_RX_PPDU_END_USER_STATS_INFO9_MPDU_ERR_BYTE_COUNT GENMASK(24, 0)
|
|
|
|
struct hal_rx_ppdu_end_user_stats {
|
|
__le32 rsvd0[2];
|
|
@@ -236,12 +236,13 @@ struct hal_rx_ppdu_end_user_stats {
|
|
__le32 info4;
|
|
__le32 info5;
|
|
__le32 info6;
|
|
- __le32 rsvd2[5];
|
|
__le32 info7;
|
|
- __le32 rsvd3;
|
|
+ __le32 rsvd2[4];
|
|
__le32 info8;
|
|
- __le32 rsvd3[2];
|
|
+ __le32 rsvd3;
|
|
__le32 info9;
|
|
+ __le32 rsvd4[2];
|
|
+ __le32 info10;
|
|
} __packed;
|
|
|
|
struct hal_rx_ppdu_end_user_stats_ext {
|