|
@@ -9555,3 +9555,32 @@ QDF_STATUS wma_config_bmiss_bcnt_params(uint32_t vdev_id, uint32_t first_cnt,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+QDF_STATUS wma_get_rx_chainmask(uint8_t pdev_id, uint32_t *chainmask_2g,
|
|
|
+ uint32_t *chainmask_5g)
|
|
|
+{
|
|
|
+ struct wlan_psoc_host_mac_phy_caps *mac_phy_cap;
|
|
|
+ uint8_t total_mac_phy_cnt;
|
|
|
+ struct target_psoc_info *tgt_hdl;
|
|
|
+ tp_wma_handle wma_handle = cds_get_context(QDF_MODULE_ID_WMA);
|
|
|
+
|
|
|
+ tgt_hdl = wlan_psoc_get_tgt_if_handle(wma_handle->psoc);
|
|
|
+ if (!tgt_hdl) {
|
|
|
+ WMA_LOGE("%s: target psoc info is NULL", __func__);
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ total_mac_phy_cnt = target_psoc_get_total_mac_phy_cnt(tgt_hdl);
|
|
|
+ if (total_mac_phy_cnt <= pdev_id) {
|
|
|
+ WMA_LOGE("%s: mac phy cnt %d, pdev id %d", __func__,
|
|
|
+ total_mac_phy_cnt, pdev_id);
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ mac_phy_cap = target_psoc_get_mac_phy_cap(tgt_hdl);
|
|
|
+ *chainmask_2g = mac_phy_cap[pdev_id].rx_chain_mask_2G;
|
|
|
+ *chainmask_5g = mac_phy_cap[pdev_id].rx_chain_mask_5G;
|
|
|
+ WMA_LOGD("%s, pdev id: %d, rx chainmask 2g:%d, rx chainmask 5g:%d",
|
|
|
+ __func__, pdev_id, *chainmask_2g, *chainmask_5g);
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|