|
@@ -3407,7 +3407,6 @@ void wlan_set_srng_cfg(struct wlan_srng_cfg **wlan_cfg)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-
|
|
|
static const uint8_t rx_fst_toeplitz_key[WLAN_CFG_RX_FST_TOEPLITZ_KEYLEN] = {
|
|
|
0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2,
|
|
|
0x41, 0x67, 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0,
|
|
@@ -4088,9 +4087,6 @@ wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *psoc)
|
|
|
cfg_get(psoc, CFG_DP_RX_MON_PROTOCOL_FLOW_TAG_ENABLE);
|
|
|
wlan_cfg_ctx->mon_drop_thresh =
|
|
|
cfg_get(psoc, CFG_DP_RXDMA_MONITOR_RX_DROP_THRESHOLD);
|
|
|
- wlan_cfg_ctx->is_rx_fisa_enabled = cfg_get(psoc, CFG_DP_RX_FISA_ENABLE);
|
|
|
- wlan_cfg_ctx->is_rx_fisa_lru_del_enabled =
|
|
|
- cfg_get(psoc, CFG_DP_RX_FISA_LRU_DEL_ENABLE);
|
|
|
/* TODO: add INI item for RX RINGS MAPPING in RHINE */
|
|
|
wlan_cfg_ctx->rx_rings_mapping = 0x7;
|
|
|
wlan_cfg_ctx->pext_stats_enabled = cfg_get(psoc, CFG_DP_PEER_EXT_STATS);
|
|
@@ -4312,9 +4308,6 @@ wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *psoc)
|
|
|
cfg_get(psoc, CFG_DP_RX_MON_PROTOCOL_FLOW_TAG_ENABLE);
|
|
|
wlan_cfg_ctx->mon_drop_thresh =
|
|
|
cfg_get(psoc, CFG_DP_RXDMA_MONITOR_RX_DROP_THRESHOLD);
|
|
|
- wlan_cfg_ctx->is_rx_fisa_enabled = cfg_get(psoc, CFG_DP_RX_FISA_ENABLE);
|
|
|
- wlan_cfg_ctx->is_rx_fisa_lru_del_enabled =
|
|
|
- cfg_get(psoc, CFG_DP_RX_FISA_LRU_DEL_ENABLE);
|
|
|
wlan_cfg_ctx->reo_rings_mapping = cfg_get(psoc, CFG_DP_REO_RINGS_MAP);
|
|
|
wlan_cfg_ctx->pext_stats_enabled = cfg_get(psoc, CFG_DP_PEER_EXT_STATS);
|
|
|
wlan_cfg_ctx->jitter_stats_enabled =
|
|
@@ -5351,28 +5344,6 @@ bool wlan_cfg_is_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
|
|
|
|
|
|
qdf_export_symbol(wlan_cfg_is_rx_flow_tag_enabled);
|
|
|
|
|
|
-#ifdef WLAN_SUPPORT_RX_FISA
|
|
|
-bool wlan_cfg_is_rx_fisa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
|
|
|
-{
|
|
|
- return (bool)(cfg->is_rx_fisa_enabled);
|
|
|
-}
|
|
|
-
|
|
|
-bool wlan_cfg_is_rx_fisa_lru_del_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
|
|
|
-{
|
|
|
- return cfg->is_rx_fisa_lru_del_enabled;
|
|
|
-}
|
|
|
-#else
|
|
|
-bool wlan_cfg_is_rx_fisa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
|
|
|
-{
|
|
|
- return false;
|
|
|
-}
|
|
|
-
|
|
|
-bool wlan_cfg_is_rx_fisa_lru_del_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
|
|
|
-{
|
|
|
- return false;
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
bool wlan_cfg_is_poll_mode_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
|
|
|
{
|
|
|
return (bool)(cfg->is_poll_mode_enabled);
|