|
@@ -3600,6 +3600,7 @@ static struct cdp_vdev *dp_vdev_attach_wifi3(struct cdp_pdev *txrx_pdev,
|
|
|
vdev->rx_decap_type = wlan_cfg_pkt_type(soc->wlan_cfg_ctx);
|
|
|
vdev->dscp_tid_map_id = 0;
|
|
|
vdev->mcast_enhancement_en = 0;
|
|
|
+ vdev->raw_mode_war = wlan_cfg_get_raw_mode_war(soc->wlan_cfg_ctx);
|
|
|
|
|
|
/* TODO: Initialize default HTT meta data that will be used in
|
|
|
* TCL descriptors for packets transmitted from this VDEV
|
|
@@ -8113,11 +8114,17 @@ void *dp_soc_attach_wifi3(void *ctrl_psoc, void *hif_handle,
|
|
|
#endif
|
|
|
wlan_cfg_set_reo_dst_ring_size(soc->wlan_cfg_ctx,
|
|
|
REO_DST_RING_SIZE_QCA6290);
|
|
|
+ wlan_cfg_set_raw_mode_war(soc->wlan_cfg_ctx, true);
|
|
|
break;
|
|
|
case TARGET_TYPE_QCA8074:
|
|
|
+ wlan_cfg_set_reo_dst_ring_size(soc->wlan_cfg_ctx,
|
|
|
+ REO_DST_RING_SIZE_QCA8074);
|
|
|
+ wlan_cfg_set_raw_mode_war(soc->wlan_cfg_ctx, true);
|
|
|
+ break;
|
|
|
case TARGET_TYPE_QCA8074V2:
|
|
|
wlan_cfg_set_reo_dst_ring_size(soc->wlan_cfg_ctx,
|
|
|
REO_DST_RING_SIZE_QCA8074);
|
|
|
+ wlan_cfg_set_raw_mode_war(soc->wlan_cfg_ctx, false);
|
|
|
break;
|
|
|
default:
|
|
|
qdf_print("%s: Unknown tgt type %d\n", __func__, target_type);
|