|
@@ -7303,7 +7303,8 @@ wlan_mlme_get_adaptive11r_enabled(struct wlan_objmgr_psoc *psoc, bool *val)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_P2P_P2P_STA
|
|
|
+#if defined(WLAN_FEATURE_P2P_P2P_STA) && \
|
|
|
+ !defined(WLAN_FEATURE_NO_P2P_CONCURRENCY)
|
|
|
static bool
|
|
|
wlan_mlme_get_p2p_p2p_host_conc_support(void)
|
|
|
{
|
|
@@ -7317,6 +7318,167 @@ wlan_mlme_get_p2p_p2p_host_conc_support(void)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifndef WLAN_FEATURE_NO_STA_SAP_CONCURRENCY
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#ifndef WLAN_FEATURE_NO_STA_NAN_CONCURRENCY
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_nan_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_nan_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#ifdef FEATURE_WLAN_TDLS
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#if !defined(WLAN_FEATURE_NO_STA_SAP_CONCURRENCY) && \
|
|
|
+ (!defined(WLAN_FEATURE_NO_P2P_CONCURRENCY) || \
|
|
|
+ defined(WLAN_FEATURE_STA_SAP_P2P_CONCURRENCY))
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_p2p_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_p2p_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#if defined(FEATURE_WLAN_TDLS)
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_p2p_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_p2p_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#if defined(FEATURE_WLAN_TDLS) && !defined(WLAN_FEATURE_NO_STA_SAP_CONCURRENCY)
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#if defined(FEATURE_WLAN_TDLS) && \
|
|
|
+ !defined(WLAN_FEATURE_NO_STA_SAP_CONCURRENCY) && \
|
|
|
+ (!defined(WLAN_FEATURE_NO_P2P_CONCURRENCY) || \
|
|
|
+ defined(WLAN_FEATURE_STA_SAP_P2P_CONCURRENCY))
|
|
|
+
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_p2p_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_sap_p2p_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#if defined(FEATURE_WLAN_TDLS) && defined(WLAN_FEATURE_P2P_P2P_STA) && \
|
|
|
+ !defined(WLAN_FEATURE_NO_P2P_CONCURRENCY)
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_p2p_p2p_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return true;
|
|
|
+}
|
|
|
+#else
|
|
|
+static bool
|
|
|
+wlan_mlme_get_sta_p2p_p2p_tdls_host_conc_support(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+/**
|
|
|
+ * wlan_mlme_set_iface_combinations() - Set interface combinations
|
|
|
+ * @mlme_feature_set: Pointer to wlan_mlme_features
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void
|
|
|
+wlan_mlme_set_iface_combinations(struct wlan_mlme_features *mlme_feature_set)
|
|
|
+{
|
|
|
+ mlme_feature_set->iface_combinations = 0;
|
|
|
+ mlme_feature_set->iface_combinations |= MLME_IFACE_STA_P2P_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_sap_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_SAP_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_nan_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_NAN_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_tdls_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_TDLS_SUPPORT;
|
|
|
+ if (wlan_mlme_get_p2p_p2p_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_DUAL_P2P_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_sap_p2p_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_SAP_P2P_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_p2p_tdls_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_P2P_TDLS_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_sap_tdls_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_SAP_TDLS_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_sap_p2p_tdls_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_SAP_P2P_TDLS_SUPPORT;
|
|
|
+ if (wlan_mlme_get_sta_p2p_p2p_tdls_host_conc_support())
|
|
|
+ mlme_feature_set->iface_combinations |=
|
|
|
+ MLME_IFACE_STA_P2P_P2P_TDLS_SUPPORT;
|
|
|
+ mlme_debug("iface combinations = %x",
|
|
|
+ mlme_feature_set->iface_combinations);
|
|
|
+}
|
|
|
+
|
|
|
void wlan_mlme_get_feature_info(struct wlan_objmgr_psoc *psoc,
|
|
|
struct wlan_mlme_features *mlme_feature_set)
|
|
|
{
|
|
@@ -7363,8 +7525,7 @@ void wlan_mlme_get_feature_info(struct wlan_objmgr_psoc *psoc,
|
|
|
|
|
|
mlme_feature_set->vendor_req_2_version =
|
|
|
WMI_HOST_VENDOR1_REQ2_VERSION_3_50;
|
|
|
- mlme_feature_set->sta_dual_p2p_support =
|
|
|
- wlan_mlme_get_p2p_p2p_host_conc_support();
|
|
|
+ wlan_mlme_set_iface_combinations(mlme_feature_set);
|
|
|
wlan_mlme_get_vht_enable2x2(psoc, &mlme_feature_set->enable2x2);
|
|
|
}
|
|
|
#endif
|