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

Change-Id: I168c8269e2f3e39d03df712370481eaab519290a
WMI: expand WMI_CFR_MCS,_GI_TYPE bitfields
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2021-06-18 06:00:52 -07:00
committato da Madan Koyyalamudi
parent 62206deed6
commit 91f738dc22
2 ha cambiato i file con 12 aggiunte e 10 eliminazioni

Vedi File

@@ -33224,33 +33224,35 @@ typedef struct {
* 5: 36 Mbps
* 6: 18 Mbps
* 7: 9 Mbps
* 8: invalid entry
* 8-254: reserved
* 255: invalid entry
*
* GI: For Legacy mode only
* 0: 0.8 us
* 1: 0.4 us
* 2: 1.6 us
* 3: 3.2 us
* 4: invalid entry
* 4-254: reserved
* 255: invalid entry
*
* Bits 0:3 mcs
* Bits 4:6 gi_type
* Bits 7:31 reserved
* Bits 0:7 mcs
* Bits 8:15 gi_type
* Bits 16:31 reserved
*/
A_UINT32 mcs_gi_info;
} wmi_peer_cfr_capture_event_fixed_param;
#define WMI_CFR_MCS_GET(mcs_gi_info) \
WMI_GET_BITS(mcs_gi_info, 0, 4)
WMI_GET_BITS(mcs_gi_info, 0, 8)
#define WMI_CFR_MCS_SET(mcs_gi_info, value) \
WMI_SET_BITS(mcs_gi_info, 0, 4, value)
WMI_SET_BITS(mcs_gi_info, 0, 8, value)
#define WMI_CFR_GI_TYPE_GET(mcs_gi_info) \
WMI_GET_BITS(mcs_gi_info, 4, 3)
WMI_GET_BITS(mcs_gi_info, 8, 8)
#define WMI_CFR_GI_TYPE_SET(mcs_gi_info, value) \
WMI_SET_BITS(mcs_gi_info, 4, 3, value)
WMI_SET_BITS(mcs_gi_info, 8, 8, value)
#define WMI_UNIFIED_CHAIN_PHASE_MASK 0x0000ffff

Vedi File

@@ -36,7 +36,7 @@
#define __WMI_VER_MINOR_ 0
/** WMI revision number has to be incremented when there is a
* change that may or may not break compatibility. */
#define __WMI_REVISION_ 1011
#define __WMI_REVISION_ 1012
/** The Version Namespace should not be normally changed. Only
* host and firmware of the same WMI namespace will work