|
@@ -227,195 +227,10 @@ enum eWniMsgTypes {
|
|
|
|
|
|
#define WNI_CFG_MSG_TYPES_BEGIN 0x1200
|
|
|
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* CFG Module Definitions */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* CFG message definitions */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-#define WNI_CFG_MSG_HDR_MASK 0xffff0000
|
|
|
-#define WNI_CFG_MSG_LEN_MASK 0x0000ffff
|
|
|
-#define WNI_CFG_MB_HDR_LEN 4
|
|
|
-#define WNI_CFG_MAX_PARAM_NUM 32
|
|
|
-
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
/* CFG to HDD message types */
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
-#define WNI_CFG_PARAM_UPDATE_IND (WNI_CFG_MSG_TYPES_BEGIN | 0x00)
|
|
|
#define WNI_CFG_DNLD_REQ (WNI_CFG_MSG_TYPES_BEGIN | 0x01)
|
|
|
-#define WNI_CFG_DNLD_CNF (WNI_CFG_MSG_TYPES_BEGIN | 0x02)
|
|
|
-#define WNI_CFG_GET_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x03)
|
|
|
-#define WNI_CFG_SET_CNF (WNI_CFG_MSG_TYPES_BEGIN | 0x04)
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x05)
|
|
|
-#define WNI_CFG_ADD_GRP_ADDR_CNF (WNI_CFG_MSG_TYPES_BEGIN | 0x06)
|
|
|
-#define WNI_CFG_DEL_GRP_ADDR_CNF (WNI_CFG_MSG_TYPES_BEGIN | 0x07)
|
|
|
-
|
|
|
-#define ANI_CFG_GET_RADIO_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x08)
|
|
|
-#define ANI_CFG_GET_PER_STA_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x09)
|
|
|
-#define ANI_CFG_GET_AGG_STA_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x0a)
|
|
|
-#define ANI_CFG_CLEAR_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x0b)
|
|
|
-
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* CFG to HDD message parameter indices */
|
|
|
-
|
|
|
-/* The followings are word indices starting from the message body */
|
|
|
-
|
|
|
-/* WNI_CFG_xxxx_xxxx_xxxx: index of parameter */
|
|
|
-/* WNI_CFG_xxxx_xxxx_NUM: number of parameters in message */
|
|
|
-
|
|
|
-/* WNI_CFG_xxxx_xxxx_LEN: byte length of message including */
|
|
|
-/* MB header */
|
|
|
-/* */
|
|
|
-/* WNI_CFG_xxxx_xxxx_PARTIAL_LEN: byte length of message including */
|
|
|
-/* parameters and MB header but */
|
|
|
-/* excluding variable data length */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-
|
|
|
-/* Parameter update indication */
|
|
|
-#define WNI_CFG_PARAM_UPDATE_IND_PID 0
|
|
|
-
|
|
|
-#define WNI_CFG_PARAM_UPDATE_IND_NUM 1
|
|
|
-#define WNI_CFG_PARAM_UPDATE_IND_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_PARAM_UPDATE_IND_NUM << 2))
|
|
|
-
|
|
|
-/* Configuration download request */
|
|
|
-#define WNI_CFG_DNLD_REQ_NUM 0
|
|
|
-#define WNI_CFG_DNLD_REQ_LEN WNI_CFG_MB_HDR_LEN
|
|
|
-
|
|
|
-/* Configuration download confirm */
|
|
|
-#define WNI_CFG_DNLD_CNF_RES 0
|
|
|
-
|
|
|
-#define WNI_CFG_DNLD_CNF_NUM 1
|
|
|
-#define WNI_CFG_DNLD_CNF_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_DNLD_CNF_NUM << 2))
|
|
|
-/* Get response */
|
|
|
-#define WNI_CFG_GET_RSP_RES 0
|
|
|
-#define WNI_CFG_GET_RSP_PID 1
|
|
|
-#define WNI_CFG_GET_RSP_PLEN 2
|
|
|
-
|
|
|
-#define WNI_CFG_GET_RSP_NUM 3
|
|
|
-#define WNI_CFG_GET_RSP_PARTIAL_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_RSP_NUM << 2))
|
|
|
-/* Set confirm */
|
|
|
-#define WNI_CFG_SET_CNF_RES 0
|
|
|
-#define WNI_CFG_SET_CNF_PID 1
|
|
|
-
|
|
|
-#define WNI_CFG_SET_CNF_NUM 2
|
|
|
-#define WNI_CFG_SET_CNF_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_SET_CNF_NUM << 2))
|
|
|
-/* Get attribute response */
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_RES 0
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_PID 1
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_TYPE 2
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_PLEN 3
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_RW 4
|
|
|
-
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_NUM 5
|
|
|
-#define WNI_CFG_GET_ATTRIB_RSP_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_ATTRIB_RSP_NUM << 2))
|
|
|
-
|
|
|
-/* Add group address confirm */
|
|
|
-#define WNI_CFG_ADD_GRP_ADDR_CNF_RES 0
|
|
|
-
|
|
|
-#define WNI_CFG_ADD_GRP_ADDR_CNF_NUM 1
|
|
|
-#define WNI_CFG_ADD_GRP_ADDR_CNF_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_ADD_GRP_ADDR_CNF_NUM << 2))
|
|
|
-
|
|
|
-/* Delete group address confirm */
|
|
|
-#define WNI_CFG_DEL_GRP_ADDR_CNF_RES 0
|
|
|
-
|
|
|
-#define WNI_CFG_DEL_GRP_ADDR_CNF_NUM 1
|
|
|
-#define WNI_CFG_DEL_GRP_ADDR_CNF_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_DEL_GRP_ADDR_CNF_NUM << 2))
|
|
|
-
|
|
|
-#define IS_CFG_MSG(msg) ((msg & 0xff00) == WNI_CFG_MSG_TYPES_BEGIN)
|
|
|
-
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* HDD to CFG message types */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-#define WNI_CFG_DNLD_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x80)
|
|
|
-#define WNI_CFG_GET_REQ (WNI_CFG_MSG_TYPES_BEGIN | 0x81)
|
|
|
-
|
|
|
-/* Shall be removed after stats integration */
|
|
|
-
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* HDD to CFG message parameter indices */
|
|
|
-/* */
|
|
|
-/* The followings are word indices starting from the message body */
|
|
|
-/* */
|
|
|
-/* WNI_CFG_xxxx_xxxx_xxxx: index of parameter */
|
|
|
-/* */
|
|
|
-/* WNI_CFG_xxxx_xxxx_NUM: number of parameters in message */
|
|
|
-/* */
|
|
|
-/* WNI_CFG_xxxx_xxxx_LEN: byte length of message including */
|
|
|
-/* MB header */
|
|
|
-/* */
|
|
|
-/* WNI_CFG_xxxx_xxxx_PARTIAL_LEN: byte length of message including */
|
|
|
-/* parameters and MB header but */
|
|
|
-/* excluding variable data length */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-
|
|
|
-/* Download response */
|
|
|
-#define WNI_CFG_DNLD_RSP_BIN_LEN 0
|
|
|
-
|
|
|
-#define WNI_CFG_DNLD_RSP_NUM 1
|
|
|
-#define WNI_CFG_DNLD_RSP_PARTIAL_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_DNLD_RSP_NUM << 2))
|
|
|
-
|
|
|
-/* Set parameter request */
|
|
|
-#define WNI_CFG_SET_REQ_PID 0
|
|
|
-#define WNI_CFG_SET_REQ_PLEN 1
|
|
|
-
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* CFG return values */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-#define WNI_CFG_SUCCESS 1
|
|
|
-#define WNI_CFG_NOT_READY 2
|
|
|
-#define WNI_CFG_INVALID_PID 3
|
|
|
-#define WNI_CFG_INVALID_LEN 4
|
|
|
-#define WNI_CFG_RO_PARAM 5
|
|
|
-#define WNI_CFG_WO_PARAM 6
|
|
|
-#define WNI_CFG_INVALID_STAID 7
|
|
|
-#define WNI_CFG_OTHER_ERROR 8
|
|
|
-#define WNI_CFG_NEED_RESTART 9
|
|
|
-#define WNI_CFG_NEED_RELOAD 10
|
|
|
-
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-/* CFG definitions */
|
|
|
-/*---------------------------------------------------------------------*/
|
|
|
-
|
|
|
-/* Shall be removed after integration of stats. */
|
|
|
-/* Get statistic response */
|
|
|
-#define WNI_CFG_GET_STAT_RSP_RES 0
|
|
|
-#define WNI_CFG_GET_STAT_RSP_PARAMID 1
|
|
|
-#define WNI_CFG_GET_STAT_RSP_VALUE 2
|
|
|
-
|
|
|
-#define WNI_CFG_GET_STAT_RSP_NUM 3
|
|
|
-#define WNI_CFG_GET_STAT_RSP_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_STAT_RSP_NUM << 2))
|
|
|
-/* Get per station statistic response */
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_RSP_RES 0
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_RSP_STAID 1
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_RSP_FIRST_PARAM 2
|
|
|
-
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_RSP_NUM 23
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_RSP_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_PER_STA_STAT_RSP_NUM << 2))
|
|
|
-
|
|
|
-/* Shall be removed after integrating stats. */
|
|
|
-#define WNI_CFG_GET_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x08)
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x09)
|
|
|
-#define WNI_CFG_GET_AGG_STA_STAT_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x0a)
|
|
|
-#define WNI_CFG_GET_TX_RATE_CTR_RSP (WNI_CFG_MSG_TYPES_BEGIN | 0x0b)
|
|
|
-
|
|
|
-#define WNI_CFG_GET_AGG_STA_STAT_RSP_NUM 21
|
|
|
-#define WNI_CFG_GET_AGG_STA_STAT_RSP_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_AGG_STA_STAT_RSP_NUM << 2))
|
|
|
-#define WNI_CFG_GET_AGG_STA_STAT_RSP_RES 0
|
|
|
-
|
|
|
-/* Get TX rate based stats */
|
|
|
-#define WNI_CFG_GET_TX_RATE_CTR_RSP_RES 0
|
|
|
|
|
|
typedef struct sAniCfgTxRateCtrs {
|
|
|
/* add the rate counters here */
|
|
@@ -436,27 +251,4 @@ typedef struct sAniCfgTxRateCtrs {
|
|
|
unsigned long TxFrames_108Mbps;
|
|
|
|
|
|
} tAniCfgTxRateCtrs, *tpAniCfgTxRateCtrs;
|
|
|
-
|
|
|
-#define WNI_CFG_GET_STAT_REQ (WNI_CFG_MSG_TYPES_BEGIN | 0x86)
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_REQ (WNI_CFG_MSG_TYPES_BEGIN | 0x87)
|
|
|
-#define WNI_CFG_GET_AGG_STA_STAT_REQ (WNI_CFG_MSG_TYPES_BEGIN | 0x88)
|
|
|
-#define WNI_CFG_GET_TX_RATE_CTR_REQ (WNI_CFG_MSG_TYPES_BEGIN | 0x89)
|
|
|
-
|
|
|
-/* Get statistic request */
|
|
|
-#define WNI_CFG_GET_STAT_REQ_PARAMID 0
|
|
|
-
|
|
|
-#define WNI_CFG_GET_STAT_REQ_NUM 1
|
|
|
-#define WNI_CFG_GET_STAT_REQ_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_STAT_REQ_NUM << 2))
|
|
|
-
|
|
|
-/* Get per station statistic request */
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_REQ_STAID 0
|
|
|
-
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_REQ_NUM 1
|
|
|
-#define WNI_CFG_GET_PER_STA_STAT_REQ_LEN (WNI_CFG_MB_HDR_LEN + \
|
|
|
- (WNI_CFG_GET_PER_STA_STAT_REQ_NUM << 2))
|
|
|
-
|
|
|
-#define DYNAMIC_CFG_TYPE_SELECTED_REGISTRAR (0)
|
|
|
-#define DYNAMIC_CFG_TYPE_WPS_STATE (1)
|
|
|
-
|
|
|
#endif /* __WNI_API_H */
|