fw-api: CL 20771706 - update fw common interface files

Change-Id: I40beff16a980c4003bb3aa204bf8d6b29fb533a6
WMI: add neighbor_report_detail bitfields in roam_neighbor_report_info TLV
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2022-12-15 18:01:03 -08:00
parent 66c50cbaf2
commit 9d4107b507
2 changed files with 17 additions and 1 deletions

View File

@@ -35774,6 +35774,13 @@ typedef struct {
A_UINT32 roam_abort_reason; /* Detail reason for roam scan not start, from WMI_ROAM_FAIL_SUB_REASON_ID */
} wmi_roam_result;
#define WMI_ROAM_NEIGHBOR_REPORT_INFO_REQUEST_TOKEN_GET(detail) WMI_GET_BITS(detail, 0, 8)
#define WMI_ROAM_NEIGHBOR_REPORT_INFO_REQUEST_TOKEN_SET(detail,val) WMI_SET_BITS(detail, 0, 8, val)
#define WMI_ROAM_NEIGHBOR_REPORT_INFO_RESPONSE_TOKEN_GET(detail) WMI_GET_BITS(detail, 8, 8)
#define WMI_ROAM_NEIGHBOR_REPORT_INFO_RESPONSE_TOKEN_SET(detail,val) WMI_SET_BITS(detail, 8, 8, val)
#define WMI_ROAM_NEIGHBOR_REPORT_INFO_NUM_OF_NRIE_GET(detail) WMI_GET_BITS(detail, 16, 8)
#define WMI_ROAM_NEIGHBOR_REPORT_INFO_NUM_OF_NRIE_SET(detail,val) WMI_SET_BITS(detail, 16, 8, val)
typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_neighbor_report_info_tlv_param */
/* request_type:
@@ -35799,6 +35806,15 @@ typedef struct {
* of the 802.11v spec.
*/
A_UINT32 btm_query_reason_code;
/* neighbor_report_detail:
* [7:0] : neighbor report request token
* [15:8] : neighbor report response token
* [23:16] : the number of neighbor report elements in response frame
* [31:24] : reserved
* Refer to the above WMI_ROAM_NEIGHBOR_REPORT_INFO_*_GET,_SET macros for
* reading and writing these bitfields.
*/
A_UINT32 neighbor_report_detail;
} wmi_roam_neighbor_report_info;
typedef struct {