Ver código fonte

qcacmn: Add function pointer to enable STADFS in DFS component

Add function pointer to set/get STADFS in DFS component.

Change-Id: Ib20ca02952632fb7089f74067b955f8bf35dd875
CRs-Fixed: 2323831
Shashikala Prabhu 6 anos atrás
pai
commit
a38c0cd7c8

+ 4 - 0
umac/global_umac_dispatcher/lmac_if/inc/wlan_lmac_if_def.h

@@ -1094,6 +1094,8 @@ struct wlan_lmac_if_nan_rx_ops {
  * @dfs_process_radar_ind:            Process radar found indication.
  * @dfs_dfs_cac_complete_ind:         Process cac complete indication.
  * @dfs_stop:                         Clear dfs timers.
+ * @dfs_enable_stadfs:                Enable/Disable STADFS capability.
+ * @dfs_is_stadfs_enabled:            Get STADFS capability value.
  * @dfs_process_phyerr_filter_offload:Process radar event.
  * @dfs_is_phyerr_filter_offload:     Check whether phyerr filter is offload.
  * @dfs_action_on_status:             Trigger the action to be taken based on
@@ -1175,6 +1177,8 @@ struct wlan_lmac_if_dfs_rx_ops {
 			uint32_t vdev_id);
 #endif
 	QDF_STATUS (*dfs_stop)(struct wlan_objmgr_pdev *pdev);
+	void (*dfs_enable_stadfs)(struct wlan_objmgr_pdev *pdev, bool val);
+	bool (*dfs_is_stadfs_enabled)(struct wlan_objmgr_pdev *pdev);
 	QDF_STATUS (*dfs_process_phyerr_filter_offload)(
 			struct wlan_objmgr_pdev *pdev,
 			struct radar_event_info *wlan_radar_info);

+ 2 - 0
umac/global_umac_dispatcher/lmac_if/src/wlan_lmac_if.c

@@ -366,6 +366,8 @@ wlan_lmac_if_umac_dfs_rx_ops_register(struct wlan_lmac_if_rx_ops *rx_ops)
 	dfs_rx_ops->dfs_process_radar_ind = tgt_dfs_process_radar_ind;
 	dfs_rx_ops->dfs_dfs_cac_complete_ind = tgt_dfs_cac_complete;
 	dfs_rx_ops->dfs_stop = tgt_dfs_stop;
+	dfs_rx_ops->dfs_enable_stadfs = tgt_dfs_enable_stadfs;
+	dfs_rx_ops->dfs_is_stadfs_enabled = tgt_dfs_is_stadfs_enabled;
 	dfs_rx_ops->dfs_process_phyerr_filter_offload =
 		tgt_dfs_process_phyerr_filter_offload;
 	dfs_rx_ops->dfs_is_phyerr_filter_offload =