소스 검색

qcacmn: Add new config for BTM offload

Add new parameters into wmi btm config cmd for solicited BTM offload.

Change-Id: I24cc680bbfde3d44a57b1e1ccf644c2bed515a2c
CRs-Fixed: 2168259
Jiachao Wu 7 년 전
부모
커밋
26f55de3a9
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      wmi_unified_param.h

+ 6 - 0
wmi_unified_param.h

@@ -8118,10 +8118,16 @@ struct wmi_mawc_roam_params {
  * struct wmi_btm_config - BSS Transition Management offload params
  * @vdev_id: VDEV on which the parameters should be applied
  * @btm_offload_config: BTM config
+ * @btm_solicited_timeout: Timeout value for waiting BTM request
+ * @btm_max_attempt_cnt: Maximum attempt for sending BTM query to ESS
+ * @btm_sticky_time: Stick time after roaming to new AP by BTM
  */
 struct wmi_btm_config {
 	uint8_t vdev_id;
 	uint32_t btm_offload_config;
+	uint32_t btm_solicited_timeout;
+	uint32_t btm_max_attempt_cnt;
+	uint32_t btm_sticky_time;
 };
 
 /**