qcacmn: Add WMI API to send beacon offload control

Beacon offload control WMI command is used to control beacon tx in
beacon offload enabled mode. Add WMI API to send this command to FW.

Change-Id: I8b340b69ff508aaf80b9a80de044b0189b947a66
CRs-Fixed: 2140255
This commit is contained in:
Kiran Venkatappa
2017-11-08 19:32:23 +05:30
committed by snandini
parent a40870aef6
commit f9b1de34f9
3 changed files with 25 additions and 0 deletions

View File

@@ -5848,6 +5848,7 @@ typedef enum {
wmi_service_extended_nss_support,
wmi_service_ack_timeout,
wmi_service_widebw_scan,
wmi_service_bcn_offload_start_stop_support,
wmi_services_max,
} wmi_conv_service_ids;
@@ -7951,4 +7952,15 @@ struct wmi_host_ready_ev_param {
uint32_t num_total_peer;
bool agile_capability;
};
/**
* struct bcn_offload_control - Beacon offload control params
* @vdev_id: vdev identifer of VAP to control beacon tx
* @bcn_tx_enable: Enable or Disable beacon TX in offload mode
*/
struct bcn_offload_control {
uint32_t vdev_id;
bool bcn_tx_enable;
};
#endif /* _WMI_UNIFIED_PARAM_H_ */