|
@@ -3223,6 +3223,33 @@ enum mlme_bcn_tx_rate_code wma_get_bcn_rate_code(uint16_t rate)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+#ifdef WLAN_BCN_RATECODE_ENABLE
|
|
|
+/**
|
|
|
+ * wma_update_beacon_tx_rate_code() - Update bcn_tx_rate_code
|
|
|
+ * @mlme_obj: pointer to mlme object
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+static void wma_update_beacon_tx_rate_code(struct vdev_mlme_obj *mlme_obj)
|
|
|
+{
|
|
|
+ uint8_t preamble, nss, rix;
|
|
|
+ uint32_t rate_code;
|
|
|
+
|
|
|
+ rate_code = mlme_obj->mgmt.rate_info.bcn_tx_rate;
|
|
|
+
|
|
|
+ rix = rate_code & RATECODE_V1_RIX_MASK;
|
|
|
+ nss = (rate_code >> RATECODE_V1_NSS_OFFSET) & RATECODE_V1_NSS_MASK;
|
|
|
+ preamble = rate_code >> RATECODE_V1_PREAMBLE_OFFSET;
|
|
|
+
|
|
|
+ mlme_obj->mgmt.rate_info.bcn_tx_rate_code =
|
|
|
+ wlan_mlme_assemble_rate_code(preamble, nss, rix);
|
|
|
+}
|
|
|
+#else
|
|
|
+static void wma_update_beacon_tx_rate_code(struct vdev_mlme_obj *mlme_obj)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
QDF_STATUS wma_vdev_pre_start(uint8_t vdev_id, bool restart)
|
|
|
{
|
|
|
tp_wma_handle wma = cds_get_context(QDF_MODULE_ID_WMA);
|
|
@@ -3313,6 +3340,7 @@ QDF_STATUS wma_vdev_pre_start(uint8_t vdev_id, bool restart)
|
|
|
*/
|
|
|
mlme_obj->mgmt.rate_info.bcn_tx_rate =
|
|
|
wma_get_bcn_rate_code(mlme_obj->mgmt.rate_info.bcn_tx_rate);
|
|
|
+ wma_update_beacon_tx_rate_code(mlme_obj);
|
|
|
}
|
|
|
|
|
|
if (!restart) {
|