qcacmn: Add support to send DBS Scan command to firmware

This change adds support to send the DBS Scan command to
the firmware.

Change-Id: I147855690f09af03a43f85f2e57626d7f73998de
CRs-Fixed: 2029402
This commit is contained in:
Nitesh Shah
2017-05-22 15:49:00 +05:30
committed by snandini
parent fdf802601c
commit fb9e88bfa6
3 changed files with 23 additions and 0 deletions

View File

@@ -7285,4 +7285,22 @@ struct tbttoffset_params {
uint32_t tbttoffset;
};
#define WMI_SCAN_CLIENT_MAX 7
/**
* struct wmi_dbs_scan_sel_params - DBS scan selection params
* @num_clients: Number of scan clients dutycycle
* @pdev_id: pdev_id for identifying the MAC
* @module_id: scan client module id
* @num_dbs_scans: number of DBS scans
* @num_non_dbs_scans: number of non-DBS scans
*/
struct wmi_dbs_scan_sel_params {
uint32_t num_clients;
uint32_t pdev_id;
uint32_t module_id[WMI_SCAN_CLIENT_MAX];
uint32_t num_dbs_scans[WMI_SCAN_CLIENT_MAX];
uint32_t num_non_dbs_scans[WMI_SCAN_CLIENT_MAX];
};
#endif /* _WMI_UNIFIED_PARAM_H_ */