qcacld-3.0: Add support for STA+NAN+NDI+NDI
Add support for four port concurrency for STA+NAN discovery + NDI + NDI. Change-Id: I7d6d3f482a61bef7f3d0a31eee3fdfe5e5e9d879 CRs-Fixed: 2633982
This commit is contained in:
parent
d6a5f31685
commit
82511bc630
1
Kbuild
1
Kbuild
@ -3279,6 +3279,7 @@ cppflags-$(CONFIG_SLUB_DEBUG_ON) += -DHIF_CONFIG_SLUB_DEBUG_ON
|
||||
cppflags-$(CONFIG_SLUB_DEBUG_ON) += -DHAL_CONFIG_SLUB_DEBUG_ON
|
||||
|
||||
ccflags-$(CONFIG_FOURTH_CONNECTION) += -DFEATURE_FOURTH_CONNECTION
|
||||
ccflags-$(CONFIG_FOURTH_CONNECTION_AUTO) += -DFOURTH_CONNECTION_AUTO
|
||||
ccflags-$(CONFIG_WMI_SEND_RECV_QMI) += -DWLAN_FEATURE_WMI_SEND_RECV_QMI
|
||||
|
||||
cppflags-$(CONFIG_WDI3_STATS_UPDATE) += -DWDI3_STATS_UPDATE
|
||||
|
@ -801,6 +801,14 @@ enum policy_mgr_two_connection_mode {
|
||||
* SCC, SAP on 5 G
|
||||
* @PM_SAP_NDI_SCC_5_NAN_DISC_24_DBS: SAP & NDI/NDP connection on 5 Ghz,
|
||||
* NAN_DISC on 24 Ghz
|
||||
* @PM_NAN_DISC_STA_24_NDI_5_DBS: STA and NAN Disc on 2.4Ghz and NDI on 5ghz DBS
|
||||
* @PM_NAN_DISC_NDI_24_STA_5_DBS: NDI and NAN Disc on 2.4Ghz and STA on 5ghz DBS
|
||||
* @PM_STA_NDI_5_NAN_DISC_24_DBS: STA, NDI on 5ghz and NAN Disc on 2.4Ghz DBS
|
||||
* @PM_STA_NDI_NAN_DISC_24_SMM: STA, NDI, NAN Disc all on 2.4ghz SMM
|
||||
* @PM_NAN_DISC_NDI_24_NDI_5_DBS: NDI and NAN Disc on 2.4Ghz and second NDI in
|
||||
* 5ghz DBS
|
||||
* @PM_NDI_NDI_5_NAN_DISC_24_DBS: Both NDI on 5ghz and NAN Disc on 2.4Ghz DBS
|
||||
* @PM_NDI_NDI_NAN_DISC_24_SMM: Both NDI, NAN Disc on 2.4ghz SMM
|
||||
*/
|
||||
enum policy_mgr_three_connection_mode {
|
||||
PM_STA_SAP_SCC_24_SAP_5_DBS,
|
||||
@ -810,6 +818,13 @@ enum policy_mgr_three_connection_mode {
|
||||
PM_NAN_DISC_SAP_SCC_24_NDI_5_DBS,
|
||||
PM_NAN_DISC_NDI_SCC_24_SAP_5_DBS,
|
||||
PM_SAP_NDI_SCC_5_NAN_DISC_24_DBS,
|
||||
PM_NAN_DISC_STA_24_NDI_5_DBS,
|
||||
PM_NAN_DISC_NDI_24_STA_5_DBS,
|
||||
PM_STA_NDI_5_NAN_DISC_24_DBS,
|
||||
PM_STA_NDI_NAN_DISC_24_SMM,
|
||||
PM_NAN_DISC_NDI_24_NDI_5_DBS,
|
||||
PM_NDI_NDI_5_NAN_DISC_24_DBS,
|
||||
PM_NDI_NDI_NAN_DISC_24_SMM,
|
||||
|
||||
PM_MAX_THREE_CONNECTION_MODE
|
||||
};
|
||||
|
@ -2146,38 +2146,48 @@ static bool policy_mgr_is_concurrency_allowed_4_port(
|
||||
{
|
||||
uint32_t i;
|
||||
struct policy_mgr_psoc_priv_obj *pm_ctx;
|
||||
uint8_t sap_cnt, go_cnt;
|
||||
|
||||
/* new STA may just have ssid, no channel until bssid assigned */
|
||||
if (ch_freq == 0 && mode == PM_STA_MODE)
|
||||
return true;
|
||||
|
||||
pm_ctx = policy_mgr_get_context(psoc);
|
||||
if (!pm_ctx) {
|
||||
policy_mgr_err("context is NULL");
|
||||
sap_cnt = policy_mgr_mode_specific_connection_count(psoc,
|
||||
PM_SAP_MODE, NULL);
|
||||
|
||||
go_cnt = policy_mgr_mode_specific_connection_count(psoc,
|
||||
PM_P2P_GO_MODE, NULL);
|
||||
if (sap_cnt || go_cnt) {
|
||||
pm_ctx = policy_mgr_get_context(psoc);
|
||||
if (!pm_ctx) {
|
||||
policy_mgr_err("context is NULL");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (policy_mgr_get_mcc_to_scc_switch_mode(psoc) !=
|
||||
QDF_MCC_TO_SCC_SWITCH_FORCE_WITHOUT_DISCONNECTION) {
|
||||
policy_mgr_err("couldn't start 4th port for bad force scc cfg");
|
||||
return false;
|
||||
}
|
||||
if (pm_ctx->cfg.dual_mac_feature ||
|
||||
!pm_ctx->cfg.sta_sap_scc_on_dfs_chnl ||
|
||||
!pm_ctx->cfg.sta_sap_scc_on_lte_coex_chnl) {
|
||||
policy_mgr_err(
|
||||
"Couldn't start 4th port for bad cfg of dual mac, dfs scc, lte coex scc");
|
||||
return false;
|
||||
}
|
||||
|
||||
for (i = 0; i < pcl.pcl_len; i++)
|
||||
if (ch_freq == pcl.pcl_list[i])
|
||||
return true;
|
||||
|
||||
policy_mgr_err("4th port failed on ch freq %d with mode %d",
|
||||
ch_freq, mode);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if (policy_mgr_get_mcc_to_scc_switch_mode(psoc) !=
|
||||
QDF_MCC_TO_SCC_SWITCH_FORCE_WITHOUT_DISCONNECTION) {
|
||||
policy_mgr_err("couldn't start 4th port for bad force scc cfg");
|
||||
return false;
|
||||
}
|
||||
if (pm_ctx->cfg.dual_mac_feature ||
|
||||
!pm_ctx->cfg.sta_sap_scc_on_dfs_chnl ||
|
||||
!pm_ctx->cfg.sta_sap_scc_on_lte_coex_chnl) {
|
||||
policy_mgr_err(
|
||||
"Couldn't start 4th port for bad cfg of dual mac, dfs scc, lte coex scc");
|
||||
return false;
|
||||
}
|
||||
|
||||
for (i = 0; i < pcl.pcl_len; i++)
|
||||
if (ch_freq == pcl.pcl_list[i])
|
||||
return true;
|
||||
|
||||
policy_mgr_err("4th port failed on ch freq %d with mode %d",
|
||||
ch_freq, mode);
|
||||
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
#else
|
||||
static inline bool policy_mgr_is_concurrency_allowed_4_port(
|
||||
|
@ -703,7 +703,6 @@ static enum policy_mgr_pcl_type policy_mgr_get_pcl_4_port(
|
||||
{
|
||||
enum policy_mgr_three_connection_mode fourth_index = 0;
|
||||
enum policy_mgr_pcl_type pcl;
|
||||
enum policy_mgr_con_mode pm_mode;
|
||||
|
||||
/* Will be enhanced for other types of 4 port conc (NaN etc.)
|
||||
* in future.
|
||||
@ -715,11 +714,12 @@ static enum policy_mgr_pcl_type policy_mgr_get_pcl_4_port(
|
||||
|
||||
/* SAP and P2P Go have same result in 4th port pcl table */
|
||||
if (mode == PM_SAP_MODE || mode == PM_P2P_GO_MODE) {
|
||||
pm_mode = PM_SAP_MODE;
|
||||
} else if (mode == PM_STA_MODE) {
|
||||
pm_mode = PM_STA_MODE;
|
||||
} else {
|
||||
policy_mgr_err("Can't start 4th port of type: %d", mode);
|
||||
mode = PM_SAP_MODE;
|
||||
}
|
||||
|
||||
if (mode != PM_STA_MODE && mode != PM_SAP_MODE &&
|
||||
mode != PM_NDI_MODE) {
|
||||
policy_mgr_err("Can't start 4th port if not STA, SAP, NDI");
|
||||
return PM_MAX_PCL_TYPE;
|
||||
}
|
||||
|
||||
@ -731,7 +731,7 @@ static enum policy_mgr_pcl_type policy_mgr_get_pcl_4_port(
|
||||
}
|
||||
policy_mgr_debug("Index for 4th port pcl table: %d", fourth_index);
|
||||
|
||||
pcl = fourth_connection_pcl_dbs_table[fourth_index][pm_mode][pref];
|
||||
pcl = fourth_connection_pcl_dbs_table[fourth_index][mode][pref];
|
||||
|
||||
return pcl;
|
||||
}
|
||||
@ -1962,6 +1962,52 @@ enum policy_mgr_three_connection_mode
|
||||
} else {
|
||||
index = PM_MAX_THREE_CONNECTION_MODE;
|
||||
}
|
||||
} else if (count_nan_disc == 1 && count_ndi == 1 && count_sta == 1) {
|
||||
/* Policy mgr only considers NAN Disc ch in 2.4GHz */
|
||||
if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_sta[0]].freq) &&
|
||||
WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_NAN_DISC_STA_24_NDI_5_DBS;
|
||||
} else if (WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_sta[0]].freq) &&
|
||||
WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_NAN_DISC_NDI_24_STA_5_DBS;
|
||||
} else if (WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_sta[0]].freq) &&
|
||||
WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_STA_NDI_5_NAN_DISC_24_DBS;
|
||||
} else if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_sta[0]].freq) &&
|
||||
WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_STA_NDI_NAN_DISC_24_SMM;
|
||||
}
|
||||
} else if (count_nan_disc == 1 && count_ndi == 2) {
|
||||
/* Policy mgr only considers NAN Disc ch in 2.4GHz */
|
||||
if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq) &&
|
||||
WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[1]].freq)) {
|
||||
index = PM_NAN_DISC_NDI_24_NDI_5_DBS;
|
||||
} else if (WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq) &&
|
||||
WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_NAN_DISC_NDI_24_NDI_5_DBS;
|
||||
} else if (WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq) &&
|
||||
WLAN_REG_IS_5GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_NDI_NDI_5_NAN_DISC_24_DBS;
|
||||
} else if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq) &&
|
||||
WLAN_REG_IS_24GHZ_CH_FREQ(
|
||||
pm_conc_connection_list[list_ndi[0]].freq)) {
|
||||
index = PM_NDI_NDI_NAN_DISC_24_SMM;
|
||||
}
|
||||
}
|
||||
|
||||
policy_mgr_debug(
|
||||
|
@ -2110,8 +2110,9 @@ pm_third_connection_pcl_dbs_2x2_table = {
|
||||
/**
|
||||
* fourth_connection_pcl_dbs_table - table which provides PCL for
|
||||
* the 4th connection, when we have 3 connections already in
|
||||
* the system (with DBS supported by HW)
|
||||
* the system (with DBS supported by HW), this table is for auto products.
|
||||
*/
|
||||
#ifdef FOURTH_CONNECTION_AUTO
|
||||
const enum policy_mgr_pcl_type
|
||||
fourth_connection_pcl_dbs_table
|
||||
[PM_MAX_THREE_CONNECTION_MODE][PM_MAX_NUM_OF_MODE]
|
||||
@ -2131,6 +2132,35 @@ fourth_connection_pcl_dbs_table
|
||||
[PM_SAP_NDI_SCC_5_NAN_DISC_24_DBS] = {
|
||||
[PM_SAP_MODE] = { PM_24G, PM_24G, PM_24G } }
|
||||
};
|
||||
#else
|
||||
/**
|
||||
* fourth_connection_pcl_dbs_table - table which provides PCL for
|
||||
* the 4th connection, when we have 3 connections already in
|
||||
* the system (with DBS supported by HW), this table is for mobile products
|
||||
* If you want to support any 4 port other than the below in MCL add below as
|
||||
* other concurrencies supported by auto may not be PORed for mobile products
|
||||
* and vice-versa.
|
||||
*/
|
||||
const enum policy_mgr_pcl_type
|
||||
fourth_connection_pcl_dbs_table
|
||||
[PM_MAX_THREE_CONNECTION_MODE][PM_MAX_NUM_OF_MODE]
|
||||
[PM_MAX_CONC_PRIORITY_MODE] = {
|
||||
[PM_NAN_DISC_STA_24_NDI_5_DBS] = {
|
||||
[PM_NDI_MODE] = { PM_5G, PM_5G, PM_5G } },
|
||||
[PM_NAN_DISC_NDI_24_STA_5_DBS] = {
|
||||
[PM_NDI_MODE] = { PM_5G, PM_5G, PM_5G } },
|
||||
[PM_STA_NDI_5_NAN_DISC_24_DBS] = {
|
||||
[PM_NDI_MODE] = { PM_5G, PM_5G, PM_5G } },
|
||||
[PM_STA_NDI_NAN_DISC_24_SMM] = {
|
||||
[PM_NDI_MODE] = { PM_5G, PM_5G, PM_5G } },
|
||||
[PM_NAN_DISC_NDI_24_NDI_5_DBS] = {
|
||||
[PM_STA_MODE] = { PM_5G, PM_5G, PM_5G } },
|
||||
[PM_NDI_NDI_5_NAN_DISC_24_DBS] = {
|
||||
[PM_STA_MODE] = { PM_5G, PM_5G, PM_5G } },
|
||||
[PM_NDI_NDI_NAN_DISC_24_SMM] = {
|
||||
[PM_STA_MODE] = { PM_5G, PM_5G, PM_5G } }
|
||||
};
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -806,6 +806,8 @@ struct wlan_nan_rx_ops {
|
||||
* @nan_sap_supported: Target supports NAN Discovery with SAP concurrency
|
||||
* @ndi_sap_supported: Target supports NAN Datapth with SAP concurrency
|
||||
* @nan_vdev_allowed: Allow separate vdev creation for NAN discovery
|
||||
* @sta_nan_ndi_ndi_allowed: 4 port concurrency of STA+NAN+NDI+NDI is supported
|
||||
* by Fw or not.
|
||||
*/
|
||||
struct nan_tgt_caps {
|
||||
uint32_t nan_disable_supported:1;
|
||||
@ -814,6 +816,7 @@ struct nan_tgt_caps {
|
||||
uint32_t nan_sap_supported:1;
|
||||
uint32_t ndi_sap_supported:1;
|
||||
uint32_t nan_vdev_allowed:1;
|
||||
uint32_t sta_nan_ndi_ndi_allowed:1;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -369,6 +369,15 @@ bool ucfg_nan_is_sta_ndp_concurrency_allowed(struct wlan_objmgr_psoc *psoc,
|
||||
*/
|
||||
bool ucfg_nan_is_vdev_creation_allowed(struct wlan_objmgr_psoc *psoc);
|
||||
|
||||
/**
|
||||
* ucfg_nan_is_sta_nan_ndi_4_port_allowed- Get support for 4 port (STA +
|
||||
* NAN Disc + NDI + NDI)
|
||||
* @psoc: pointer to psoc object
|
||||
*
|
||||
* Return: True if 4 port concurrency allowed or not.
|
||||
*/
|
||||
bool ucfg_nan_is_sta_nan_ndi_4_port_allowed(struct wlan_objmgr_psoc *psoc);
|
||||
|
||||
/**
|
||||
* ucfg_nan_get_is_separate_nan_iface() - get is_separate_nan_iface value
|
||||
* @psoc: pointer to psoc object
|
||||
@ -450,6 +459,12 @@ bool ucfg_nan_is_vdev_creation_allowed(struct wlan_objmgr_psoc *psoc)
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline
|
||||
bool ucfg_nan_is_sta_nan_ndi_4_port_allowed(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline
|
||||
bool ucfg_nan_get_is_separate_nan_iface(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
|
@ -1072,7 +1072,13 @@ bool ucfg_nan_is_sta_ndp_concurrency_allowed(struct wlan_objmgr_psoc *psoc,
|
||||
if (wlan_vdev_get_id(vdev) == vdev_id_list[id])
|
||||
return true;
|
||||
|
||||
return false;
|
||||
/* If the flow reaches here then it is 4th NDI with STA */
|
||||
if (!ucfg_nan_is_sta_nan_ndi_4_port_allowed(psoc))
|
||||
return false;
|
||||
|
||||
/* The final freq would be provided by FW, it is not known now */
|
||||
return policy_mgr_allow_concurrency(psoc, PM_NDI_MODE, 0,
|
||||
HW_MODE_20_MHZ);
|
||||
}
|
||||
|
||||
bool ucfg_nan_is_vdev_creation_allowed(struct wlan_objmgr_psoc *psoc)
|
||||
@ -1088,6 +1094,20 @@ bool ucfg_nan_is_vdev_creation_allowed(struct wlan_objmgr_psoc *psoc)
|
||||
return psoc_nan_obj->nan_caps.nan_vdev_allowed;
|
||||
}
|
||||
|
||||
bool
|
||||
ucfg_nan_is_sta_nan_ndi_4_port_allowed(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
struct nan_psoc_priv_obj *psoc_nan_obj;
|
||||
|
||||
psoc_nan_obj = nan_get_psoc_priv_obj(psoc);
|
||||
if (!psoc_nan_obj) {
|
||||
nan_err("psoc_nan_obj is null");
|
||||
return false;
|
||||
}
|
||||
|
||||
return psoc_nan_obj->nan_caps.sta_nan_ndi_ndi_allowed;
|
||||
}
|
||||
|
||||
bool ucfg_nan_get_is_separate_nan_iface(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
struct nan_psoc_priv_obj *nan_obj = nan_get_psoc_priv_obj(psoc);
|
||||
|
@ -875,6 +875,7 @@ CONFIG_WLAN_PMO_ENABLE := y
|
||||
CONFIG_CONVERGED_P2P_ENABLE := y
|
||||
CONFIG_WLAN_POLICY_MGR_ENABLE := y
|
||||
CONFIG_FEATURE_BLACKLIST_MGR := y
|
||||
CONFIG_FOURTH_CONNECTION := y
|
||||
CONFIG_SUPPORT_11AX := y
|
||||
CONFIG_HDD_INIT_WITH_RTNL_LOCK := y
|
||||
CONFIG_WLAN_CONV_SPECTRAL_ENABLE := y
|
||||
|
@ -789,6 +789,7 @@ CONFIG_WLAN_FEATURE_DP_BUS_BANDWIDTH := y
|
||||
endif
|
||||
|
||||
CONFIG_FOURTH_CONNECTION := y
|
||||
CONFIG_FOURTH_CONNECTION_AUTO := y
|
||||
CONFIG_SAP_DHCP_FW_IND := y
|
||||
|
||||
#Enable FW Offload
|
||||
|
@ -19951,9 +19951,12 @@ static int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
|
||||
}
|
||||
/*
|
||||
* STA+NDI concurrency gets preference over NDI+NDI. Disable
|
||||
* first NDI in case an NDI+NDI concurrency exists.
|
||||
* first NDI in case an NDI+NDI concurrency exists if FW does
|
||||
* not support 4 port concurrency of two NDI + NAN with STA.
|
||||
*/
|
||||
ucfg_nan_check_and_disable_unsupported_ndi(hdd_ctx->psoc, false);
|
||||
if (!ucfg_nan_is_sta_nan_ndi_4_port_allowed(hdd_ctx->psoc))
|
||||
ucfg_nan_check_and_disable_unsupported_ndi(hdd_ctx->psoc,
|
||||
false);
|
||||
|
||||
/*
|
||||
* In STA + STA roaming scenario, connection to same ssid but different
|
||||
|
@ -5291,6 +5291,10 @@ static void wma_update_nan_target_caps(tp_wma_handle wma_handle,
|
||||
|
||||
if (wmi_service_enabled(wma_handle->wmi_handle, wmi_service_nan_vdev))
|
||||
tgt_cfg->nan_caps.nan_vdev_allowed = 1;
|
||||
|
||||
if (wmi_service_enabled(wma_handle->wmi_handle,
|
||||
wmi_service_sta_nan_ndi_four_port))
|
||||
tgt_cfg->nan_caps.sta_nan_ndi_ndi_allowed = 1;
|
||||
}
|
||||
#else
|
||||
static void wma_update_nan_target_caps(tp_wma_handle wma_handle,
|
||||
|
Loading…
Reference in New Issue
Block a user