|
@@ -2256,6 +2256,23 @@ static void hdd_extract_fw_version_info(struct hdd_context *hdd_ctx)
|
|
|
(defined(CFG80211_SBAND_IFTYPE_DATA_BACKPORT) || \
|
|
|
(LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 0)))
|
|
|
|
|
|
+static void
|
|
|
+hdd_update_wiphy_he_mcs(struct ieee80211_sband_iftype_data *iftype_data,
|
|
|
+ tDot11fIEhe_cap *he_cap_cfg)
|
|
|
+{
|
|
|
+ if (!iftype_data || !he_cap_cfg) {
|
|
|
+ hdd_err("Unable to update wiphy he_mcs");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ iftype_data->he_cap.he_mcs_nss_supp.tx_mcs_80 =
|
|
|
+ he_cap_cfg->tx_he_mcs_map_lt_80;
|
|
|
+ iftype_data->he_cap.he_mcs_nss_supp.tx_mcs_160 =
|
|
|
+ *((uint16_t *)he_cap_cfg->tx_he_mcs_map_160);
|
|
|
+ iftype_data->he_cap.he_mcs_nss_supp.tx_mcs_80p80 =
|
|
|
+ *((uint16_t *)he_cap_cfg->tx_he_mcs_map_80_80);
|
|
|
+}
|
|
|
+
|
|
|
#if defined(CONFIG_BAND_6GHZ) && (defined(IEEE80211_HE_6GHZ_CAP_MIN_MPDU_START))
|
|
|
static void hdd_update_wiphy_he_6ghz_capa(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
@@ -2333,6 +2350,8 @@ hdd_update_wiphy_he_caps_6ghz(struct hdd_context *hdd_ctx,
|
|
|
|
|
|
hdd_update_wiphy_he_6ghz_capa(hdd_ctx);
|
|
|
|
|
|
+ hdd_update_wiphy_he_mcs(hdd_ctx->iftype_data_6g, he_cap_cfg);
|
|
|
+
|
|
|
band_6g->iftype_data = hdd_ctx->iftype_data_6g;
|
|
|
}
|
|
|
#else
|
|
@@ -2372,6 +2391,7 @@ static void hdd_update_wiphy_he_cap(struct hdd_context *hdd_ctx)
|
|
|
(BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP));
|
|
|
hdd_ctx->iftype_data_2g->he_cap.has_he = he_cap_cfg.present;
|
|
|
band_2g->n_iftype_data = 1;
|
|
|
+ hdd_update_wiphy_he_mcs(hdd_ctx->iftype_data_2g, &he_cap_cfg);
|
|
|
band_2g->iftype_data = hdd_ctx->iftype_data_2g;
|
|
|
|
|
|
ucfg_mlme_get_channel_bonding_24ghz(hdd_ctx->psoc,
|
|
@@ -2391,7 +2411,9 @@ static void hdd_update_wiphy_he_cap(struct hdd_context *hdd_ctx)
|
|
|
(BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP));
|
|
|
hdd_ctx->iftype_data_5g->he_cap.has_he = he_cap_cfg.present;
|
|
|
band_5g->n_iftype_data = 1;
|
|
|
+ hdd_update_wiphy_he_mcs(hdd_ctx->iftype_data_5g, &he_cap_cfg);
|
|
|
band_5g->iftype_data = hdd_ctx->iftype_data_5g;
|
|
|
+
|
|
|
if (max_fw_bw >= WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ)
|
|
|
phy_info_5g[0] |=
|
|
|
IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G;
|