소스 검색

qcacld-3.0: Enable notify-frame feature in FW

Enable bits in WMI_INIT command to let the FW know about host's
capability to support notify frame feature. If the feature is enabled,
host can mark certain TX frames as "notify frames" for hardware and they
need not be sent to FW. FW depends on this capability exchange to decide
whether to install HW rules for frames to be sent to HW.

Change-Id: I53b729acc938bc5877de5a872632dd9a2d58845a
CRs-Fixed: 3210693
Mohit Khanna 2 년 전
부모
커밋
37c6a523a0
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      configs/kiwi_v2_defconfig
  2. 2 0
      core/wma/src/wma_main.c

+ 2 - 0
configs/kiwi_v2_defconfig

@@ -24,3 +24,5 @@ CONFIG_WLAN_DP_DISABLE_TCL_STATUS_SRNG := y
 
 # Enable seprate FW iamge
 CONFIG_GET_DRIVER_MODE := y
+
+CONFIG_QCA_SUPPORT_TX_MIN_RATES_FOR_SPECIAL_FRAMES := y

+ 2 - 0
core/wma/src/wma_main.c

@@ -404,6 +404,8 @@ static void wma_set_default_tgt_config(tp_wma_handle wma_handle,
 
 	wma_set_ipa_disable_config(tgt_cfg);
 	wma_set_peer_map_unmap_v2_config(wma_handle->psoc, tgt_cfg);
+
+	tgt_cfg->notify_frame_support = DP_MARK_NOTIFY_FRAME_SUPPORT;
 }
 
 /**