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

Change-Id: Ie70c86d654d9d968b809a3f8c2cf313466071539
WMI: add ext_mld_capability p_update_para_support flag, EHTCAP_20MHZ flags
CRs-Fixed: 2262693
Этот коммит содержится в:
spuligil
2023-04-03 03:27:51 -07:00
родитель 0e2a5999b8
Коммит aae9558ff2
2 изменённых файлов: 29 добавлений и 2 удалений

Просмотреть файл

@@ -34581,6 +34581,12 @@ typedef enum wmi_hw_mode_config_type {
#define WMI_SUPPORT_AAR_GET(mld_capability) WMI_GET_BITS(mld_capability, 12, 1) #define WMI_SUPPORT_AAR_GET(mld_capability) WMI_GET_BITS(mld_capability, 12, 1)
#define WMI_SUPPORT_AAR_SET(mld_capability, value) WMI_SET_BITS(mld_capability, 12, 1, value) #define WMI_SUPPORT_AAR_SET(mld_capability, value) WMI_SET_BITS(mld_capability, 12, 1, value)
/*
* 11BE Ext MLD Capability Set and Get macros
*/
#define WMI_EXT_MLD_OPERATION_PARAMETER_UPDATE_SUPP_GET(ext_mld_capability) WMI_GET_BITS(ext_mld_capability, 0, 1)
#define WMI_EXT_MLD_OPERATION_PARAMETER_UPDATE_SUPP_SET(ext_mld_capability, value) WMI_SET_BITS(ext_mld_capability, 0, 1, value)
typedef struct { typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_WMI_MAC_PHY_CAPABILITIES */ A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_WMI_MAC_PHY_CAPABILITIES */
/* hw_mode_id - identify a particular set of HW characteristics, as specified /* hw_mode_id - identify a particular set of HW characteristics, as specified
@@ -34856,6 +34862,14 @@ typedef struct {
}; };
A_UINT32 mld_capability; A_UINT32 mld_capability;
}; };
union {
struct {
A_UINT32
op_update_para_support:1, /* Indicates support of operation parameter update negotiation */
reserved3: 31;
};
A_UINT32 ext_mld_capability;
};
} WMI_MAC_PHY_CAPABILITIES_EXT; } WMI_MAC_PHY_CAPABILITIES_EXT;
typedef struct { typedef struct {
@@ -41408,7 +41422,20 @@ typedef struct {
#define WMI_EHTCAP_PHY_RX4096QAMWIDERBWDLOFDMA_GET(eht_cap_phy) WMI_GET_BITS(eht_cap_phy[2], 1, 1) #define WMI_EHTCAP_PHY_RX4096QAMWIDERBWDLOFDMA_GET(eht_cap_phy) WMI_GET_BITS(eht_cap_phy[2], 1, 1)
#define WMI_EHTCAP_PHY_RX4096QAMWIDERBWDLOFDMA_SET(eht_cap_phy, value) WMI_SET_BITS(eht_cap_phy[2], 1, 1, value) #define WMI_EHTCAP_PHY_RX4096QAMWIDERBWDLOFDMA_SET(eht_cap_phy, value) WMI_SET_BITS(eht_cap_phy[2], 1, 1, value)
/* Bits 66-71: reserved */ /* Bit 66: 20Mhz-only limited capabilities support */
#define WMI_EHTCAP_20MHZ_ONLY_CAPS_GET(eht_cap_phy) WMI_GET_BITS(eht_cap_phy[2], 2, 1)
#define WMI_EHTCAP_20MHZ_ONLY_CAPS_SET(eht_cap_phy, value) WMI_SET_BITS(eht_cap_phy[2], 2, 1, value)
/* Bit 67: 20Mhz-only triggered MU beamforming full BW feedback and DL MU-MIMO */
#define WMI_EHTCAP_20MHZ_ONLY_TRIGGER_MUBF_FULL_BW_FB_AND_DLMUMIMO_GET(eht_cap_phy) WMI_GET_BITS(eht_cap_phy[2], 3, 1)
#define WMI_EHTCAP_20MHZ_ONLY_TRIGGER_MUBF_FULL_BW_FB_AND_DLMUMIMO_SET(eht_cap_phy, value) WMI_SET_BITS(eht_cap_phy[2], 3, 1, value)
/* Bit 68: 20Mhz-only M-RU support */
#define WMI_EHTCAP_20MHZ_ONLY_MRU_SUPP_GET(eht_cap_phy) WMI_GET_BITS(eht_cap_phy[2], 4, 1)
#define WMI_EHTCAP_20MHZ_ONLY_MRU_SUPP_SET(eht_cap_phy, value) WMI_SET_BITS(eht_cap_phy[2], 4, 1, value)
/* Bits 69-71: reserved */
/****** End of 11BE EHT PHY Capabilities Information field ******/ /****** End of 11BE EHT PHY Capabilities Information field ******/

Просмотреть файл

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