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

Change-Id: I46df244651f041467106fb8a7d32bf106f18a3e8
WMI: add TX_SEND_PARAM_RETRY_LIMIT_EXT bit field
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2021-11-23 06:00:52 -08:00
committato da Madan Koyyalamudi
parent b2b30ec21c
commit 8ccc986f75
2 ha cambiato i file con 11 aggiunte e 2 eliminazioni

Vedi File

@@ -5957,6 +5957,9 @@ typedef struct {
#define WMI_TX_SEND_PARAM_BEAMFORM_GET(tx_param_dword1) WMI_GET_BITS(tx_param_dword1, 22, 1)
#define WMI_TX_SEND_PARAM_BEAMFORM_SET(tx_param_dword1, value) WMI_SET_BITS(tx_param_dword1, 22, 1, value)
#define WMI_TX_SEND_PARAM_RETRY_LIMIT_EXT_GET(tx_param_dword1) WMI_GET_BITS(tx_param_dword1, 23, 3)
#define WMI_TX_SEND_PARAM_RETRY_LIMIT_EXT_SET(tx_param_dword1, value) WMI_SET_BITS(tx_param_dword1, 23, 3, value)
/* TX_SEND flags:
* Bit 0: set wrong txkey
@@ -6103,7 +6106,13 @@ typedef struct {
/* Enables Beamforming when bit is set */
en_beamforming: 1,
reserved1_31_23: 9;
/*
* Extra 3 bits of retry limit defined in tx_param_dword0,
* to allow maximum 127 retries for specific frames.
*/
retry_limit_ext: 3,
reserved1_31_26: 6;
};
A_UINT32 tx_param_dword1;
};