|
@@ -1141,6 +1141,85 @@ static struct ieee80211_iface_combination
|
|
|
#endif /* !WLAN_FEATURE_NO_SAP_NAN_CONCURRENCY */
|
|
|
#endif /* WLAN_FEATURE_NAN */
|
|
|
};
|
|
|
+
|
|
|
+static struct ieee80211_iface_combination
|
|
|
+ wlan_hdd_non_dbs_iface_combination[] = {
|
|
|
+#ifndef WLAN_FEATURE_NO_P2P_CONCURRENCY
|
|
|
+ /* P2P */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_p2p_iface_limit,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_p2p_iface_limit),
|
|
|
+ },
|
|
|
+
|
|
|
+ /* SAP + P2P */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_sap_p2p_iface_limit,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ /* 1-SAP + 1-P2P */
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_sap_p2p_iface_limit),
|
|
|
+ .beacon_int_infra_match = true,
|
|
|
+ },
|
|
|
+ /* P2P + P2P */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_p2p_p2p_iface_limit,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ /* 2-P2P */
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_p2p_p2p_iface_limit),
|
|
|
+ .beacon_int_infra_match = true,
|
|
|
+ },
|
|
|
+#endif
|
|
|
+ /* STA + P2P */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_sta_p2p_iface_limit,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_sta_p2p_iface_limit),
|
|
|
+ .beacon_int_infra_match = true,
|
|
|
+ },
|
|
|
+#ifndef WLAN_FEATURE_NO_STA_SAP_CONCURRENCY
|
|
|
+ /* STA + SAP */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_sta_ap_iface_limit,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_sta_ap_iface_limit),
|
|
|
+ .beacon_int_infra_match = true,
|
|
|
+ },
|
|
|
+#endif /* WLAN_FEATURE_NO_STA_SAP_CONCURRENCY */
|
|
|
+ /* Monitor */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_mon_iface_limit,
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_mon_iface_limit),
|
|
|
+ },
|
|
|
+#if defined(WLAN_FEATURE_NAN) && \
|
|
|
+ (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0))
|
|
|
+#ifndef WLAN_FEATURE_NO_STA_NAN_CONCURRENCY
|
|
|
+ /* NAN + STA */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_sta_nan_iface_limit,
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_sta_nan_iface_limit),
|
|
|
+ },
|
|
|
+#endif /* WLAN_FEATURE_NO_STA_NAN_CONCURRENCY */
|
|
|
+#ifndef WLAN_FEATURE_NO_SAP_NAN_CONCURRENCY
|
|
|
+ /* NAN + SAP */
|
|
|
+ {
|
|
|
+ .limits = wlan_hdd_sap_nan_iface_limit,
|
|
|
+ .num_different_channels = 2,
|
|
|
+ .max_interfaces = 2,
|
|
|
+ .n_limits = ARRAY_SIZE(wlan_hdd_sap_nan_iface_limit),
|
|
|
+ .beacon_int_infra_match = true,
|
|
|
+ },
|
|
|
+#endif /* !WLAN_FEATURE_NO_SAP_NAN_CONCURRENCY */
|
|
|
+#endif /* WLAN_FEATURE_NAN */
|
|
|
+};
|
|
|
static struct cfg80211_ops wlan_hdd_cfg80211_ops;
|
|
|
|
|
|
#ifdef WLAN_NL80211_TESTMODE
|
|
@@ -22058,12 +22137,19 @@ void wlan_hdd_update_wiphy(struct hdd_context *hdd_ctx)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!ucfg_policy_mgr_is_fw_supports_dbs(hdd_ctx->psoc) ||
|
|
|
- (dbs_one_by_one && !dbs_two_by_two)) {
|
|
|
+ if (!ucfg_policy_mgr_is_fw_supports_dbs(hdd_ctx->psoc)) {
|
|
|
+ /* Update IFACE combination for non-DBS target */
|
|
|
+ wiphy->iface_combinations =
|
|
|
+ wlan_hdd_non_dbs_iface_combination;
|
|
|
+ iface_num =
|
|
|
+ ARRAY_SIZE(wlan_hdd_non_dbs_iface_combination);
|
|
|
+ } else if (dbs_one_by_one && !dbs_two_by_two) {
|
|
|
+ /* Update IFACE combination for 1x1 DBS target */
|
|
|
wiphy->iface_combinations =
|
|
|
wlan_hdd_derived_combination;
|
|
|
iface_num = ARRAY_SIZE(wlan_hdd_derived_combination);
|
|
|
} else {
|
|
|
+ /* Update IFACE combination for DBS target */
|
|
|
wiphy->iface_combinations = wlan_hdd_iface_combination;
|
|
|
iface_num = ARRAY_SIZE(wlan_hdd_iface_combination);
|
|
|
}
|