Revert "qcacmn: Propagate config parameters to datapath"
This reverts commit 5a02b1f053
.
Change-Id: I52dcfb50998577df8b2b4807adcd322f91d21e45
Signed-off-by: Kalyan Muddala <kmudda@codeaurora.org>
此提交包含在:
@@ -181,6 +181,11 @@
|
||||
#define WLAN_CFG_HTT_PKT_TYPE 2
|
||||
#define WLAN_CFG_MAX_PEER_ID 64
|
||||
|
||||
#ifdef WLAN_RX_HASH
|
||||
#define WLAN_RX_HASH_ENABLE 1
|
||||
#else
|
||||
#define WLAN_RX_HASH_ENABLE 0
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MCL
|
||||
static const int tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
|
||||
@@ -324,6 +329,9 @@ struct wlan_cfg_dp_soc_ctxt *wlan_cfg_soc_attach()
|
||||
rxdma2host_ring_mask[i];
|
||||
}
|
||||
|
||||
wlan_cfg_ctx->rx_hash = WLAN_RX_HASH_ENABLE;
|
||||
wlan_cfg_ctx->lro_enabled = WLAN_LRO_ENABLE;
|
||||
|
||||
/* This is default mapping and can be overridden by HW config
|
||||
* received from FW */
|
||||
wlan_cfg_set_hw_macid(wlan_cfg_ctx, 0, 1);
|
||||
@@ -667,7 +675,12 @@ int wlan_cfg_get_int_timer_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
|
||||
*/
|
||||
int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg)
|
||||
{
|
||||
return cfg->tx_flow_stop_queue_threshold;
|
||||
#ifdef QCA_WIFI_NAPIER_EMULATION
|
||||
/* TODO remove this hack when INI hookup is ready */
|
||||
return 15;
|
||||
#else
|
||||
return cfg->tx_flow_stop_queue_th;
|
||||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -679,6 +692,11 @@ int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg)
|
||||
*/
|
||||
int wlan_cfg_get_tx_flow_start_queue_offset(struct wlan_cfg_dp_soc_ctxt *cfg)
|
||||
{
|
||||
#ifdef QCA_WIFI_NAPIER_EMULATION
|
||||
/* TODO remove this hack when INI hookup is ready */
|
||||
return 10;
|
||||
#else
|
||||
return cfg->tx_flow_start_queue_offset;
|
||||
#endif
|
||||
}
|
||||
#endif /* QCA_LL_TX_FLOW_CONTROL_V2 */
|
||||
|
新增問題並參考
封鎖使用者