diff mbox series

wifi: ath12k: Set default beacon mode to burst mode

Message ID 20230830194617.26400-1-quic_sidhanta@quicinc.com
State New
Headers show
Series wifi: ath12k: Set default beacon mode to burst mode | expand

Commit Message

Sidhanta Sahu Aug. 30, 2023, 7:46 p.m. UTC
Currently, firmware does not like when beacon mode is set as staggered
mode for more than one beaconing vifs. Beacon mode for multiple
beaconing (transmitted) vifs are expected to be in burst mode. So set
beacon mode to burst mode by default.

Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.0.1-00029-QCAHKSWPL_SILICONZ-1

Signed-off-by: Sidhanta Sahu <quic_sidhanta@quicinc.com>
---
 drivers/net/wireless/ath/ath12k/mac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Aditya Kumar Singh Aug. 31, 2023, 3:49 a.m. UTC | #1
On 8/31/23 01:16, Sidhanta Sahu wrote:
> Currently, firmware does not like when beacon mode is set as staggered
> mode for more than one beaconing vifs. Beacon mode for multiple
> beaconing (transmitted) vifs are expected to be in burst mode. So set
> beacon mode to burst mode by default.
> 
> Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.0.1-00029-QCAHKSWPL_SILICONZ-1
> 
> Signed-off-by: Sidhanta Sahu <quic_sidhanta@quicinc.com>
> ---
>   drivers/net/wireless/ath/ath12k/mac.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/wireless/ath/ath12k/mac.c b/drivers/net/wireless/ath/ath12k/mac.c
> index 1bb9802ef569..b16cbc3c906d 100644
> --- a/drivers/net/wireless/ath/ath12k/mac.c
> +++ b/drivers/net/wireless/ath/ath12k/mac.c
> @@ -2314,7 +2314,7 @@ static void ath12k_mac_op_bss_info_changed(struct ieee80211_hw *hw,
>   
>   	if (changed & BSS_CHANGED_BEACON) {
>   		param_id = WMI_PDEV_PARAM_BEACON_TX_MODE;
> -		param_value = WMI_BEACON_STAGGERED_MODE;
> +		param_value = WMI_BEACON_BURST_MODE;
>   		ret = ath12k_wmi_pdev_set_param(ar, param_id,
>   						param_value, ar->pdev->pdev_id);
>   		if (ret)
In else part, we have a debug print. IMHO that should be changed too. 
Please check once.

		else
			ath12k_dbg(ar->ab, ATH12K_DBG_MAC,
				   "Set staggered beacon mode for VDEV: %d\n",
				   arvif->vdev_id);

Could you check once?

Aditya
Sidhanta Sahu Sept. 5, 2023, 6:27 p.m. UTC | #2
On 8/30/2023 8:49 PM, Aditya Kumar Singh wrote:
> On 8/31/23 01:16, Sidhanta Sahu wrote:
>> Currently, firmware does not like when beacon mode is set as staggered
>> mode for more than one beaconing vifs. Beacon mode for multiple
>> beaconing (transmitted) vifs are expected to be in burst mode. So set
>> beacon mode to burst mode by default.
>>
>> Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.0.1-00029-QCAHKSWPL_SILICONZ-1
>>
>> Signed-off-by: Sidhanta Sahu <quic_sidhanta@quicinc.com>
>> ---
>>   drivers/net/wireless/ath/ath12k/mac.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/wireless/ath/ath12k/mac.c 
>> b/drivers/net/wireless/ath/ath12k/mac.c
>> index 1bb9802ef569..b16cbc3c906d 100644
>> --- a/drivers/net/wireless/ath/ath12k/mac.c
>> +++ b/drivers/net/wireless/ath/ath12k/mac.c
>> @@ -2314,7 +2314,7 @@ static void 
>> ath12k_mac_op_bss_info_changed(struct ieee80211_hw *hw,
>>         if (changed & BSS_CHANGED_BEACON) {
>>           param_id = WMI_PDEV_PARAM_BEACON_TX_MODE;
>> -        param_value = WMI_BEACON_STAGGERED_MODE;
>> +        param_value = WMI_BEACON_BURST_MODE;
>>           ret = ath12k_wmi_pdev_set_param(ar, param_id,
>>                           param_value, ar->pdev->pdev_id);
>>           if (ret)
> In else part, we have a debug print. IMHO that should be changed too. 
> Please check once.
>
>         else
>             ath12k_dbg(ar->ab, ATH12K_DBG_MAC,
>                    "Set staggered beacon mode for VDEV: %d\n",
>                    arvif->vdev_id);
>
> Could you check once?
Yes, Will change it in next version.
>
> Aditya
diff mbox series

Patch

diff --git a/drivers/net/wireless/ath/ath12k/mac.c b/drivers/net/wireless/ath/ath12k/mac.c
index 1bb9802ef569..b16cbc3c906d 100644
--- a/drivers/net/wireless/ath/ath12k/mac.c
+++ b/drivers/net/wireless/ath/ath12k/mac.c
@@ -2314,7 +2314,7 @@  static void ath12k_mac_op_bss_info_changed(struct ieee80211_hw *hw,
 
 	if (changed & BSS_CHANGED_BEACON) {
 		param_id = WMI_PDEV_PARAM_BEACON_TX_MODE;
-		param_value = WMI_BEACON_STAGGERED_MODE;
+		param_value = WMI_BEACON_BURST_MODE;
 		ret = ath12k_wmi_pdev_set_param(ar, param_id,
 						param_value, ar->pdev->pdev_id);
 		if (ret)