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

Change-Id: I2976d7603580145d8bba5aa1364db99af8b8e849
WMI: define VDEV_BSS_MAX_IDLE_TIME_CMD msg
CRs-Fixed: 2262693
Cette révision appartient à :
spuligil
2019-09-24 06:00:42 -07:00
révisé par nshrivas
Parent 94cf30005c
révision 350aa6f83a
4 fichiers modifiés avec 42 ajouts et 1 suppressions

Voir le fichier

@@ -414,6 +414,7 @@ typedef enum {
*/
WMI_SERVICE_QMI_STATS_SUPPORT = 225,
WMI_SERVICE_CFR_CAPTURE_FILTER_SUPPORT = 226, /* Indicate FW Supports Channel Frequency Response (CFR) via WMI_CFR_CAPTURE_FILTER_CMDID */
WMI_SERVICE_STA_BSS_MAX_IDLE_TIME = 227, /* Indicate FW supports BSS Max Idle time feature via WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID */
/******* ADD NEW SERVICES HERE *******/

Voir le fichier

@@ -1011,6 +1011,7 @@ typedef enum {
WMITLV_TAG_STRUC_wmi_cfr_capture_filter_cmd_fixed_param,
WMITLV_TAG_STRUC_wmi_cfr_filter_group_config,
WMITLV_TAG_STRUC_wmi_fd_tmpl_cmd_fixed_param,
WMITLV_TAG_STRUC_wmi_vdev_bss_max_idle_time_cmd_fixed_param,
} WMITLV_TAG_ID;
/*
@@ -1425,6 +1426,7 @@ typedef enum {
OP(WMI_AUDIO_AGGR_SET_GROUP_RETRY_CMDID) \
OP(WMI_CFR_CAPTURE_FILTER_CMDID) \
OP(WMI_FD_TMPL_CMDID) \
OP(WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID) \
/* add new CMD_LIST elements above this line */
@@ -2153,6 +2155,12 @@ WMITLV_CREATE_PARAM_STRUC(WMI_ADD_BCN_FILTER_CMDID);
WMITLV_CREATE_PARAM_STRUC(WMI_STA_KEEPALIVE_CMDID);
/* Bss Max idle time cmd */
#define WMITLV_TABLE_WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID(id,op,buf,len) \
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_vdev_bss_max_idle_time_cmd_fixed_param, wmi_vdev_bss_max_idle_time_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID);
/* ARP NS offload Cmd */
#define WMITLV_TABLE_WMI_SET_ARP_NS_OFFLOAD_CMDID(id,op,buf,len) \
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_WMI_SET_ARP_NS_OFFLOAD_CMD_fixed_param, WMI_SET_ARP_NS_OFFLOAD_CMD_fixed_param, fixed_param, WMITLV_SIZE_FIX) \

Voir le fichier

@@ -484,6 +484,8 @@ typedef enum {
WMI_VDEV_GET_MWS_COEX_INFO_CMDID,
/** delete all peer (excluding bss peer) */
WMI_VDEV_DELETE_ALL_PEER_CMDID,
/* To set bss max idle time related parameters */
WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID,
/* peer specific commands */
@@ -3217,6 +3219,12 @@ typedef struct {
#define WMI_RSRC_CFG_FLAG_PACKET_CAPTURE_SUPPORT_S 27
#define WMI_RSRC_CFG_FLAG_PACKET_CAPTURE_SUPPORT_M 0x8000000
/*
* If this BIT is set, then target should support BSS Max Idle period.
*/
#define WMI_RSRC_CFG_FLAG_BSS_MAX_IDLE_TIME_SUPPORT_S 28
#define WMI_RSRC_CFG_FLAG_BSS_MAX_IDLE_TIME_SUPPORT_M 0x10000000
A_UINT32 flag1;
/** @brief smart_ant_cap - Smart Antenna capabilities information
@@ -3563,6 +3571,11 @@ typedef struct {
#define WMI_RSRC_CFG_FLAG_PACKET_CAPTURE_SUPPORT_GET(word32) \
WMI_RSRC_CFG_FLAG_GET((word32), PACKET_CAPTURE_SUPPORT)
#define WMI_RSRC_CFG_FLAG_BSS_MAX_IDLE_TIME_SUPPORT_SET(word32, value) \
WMI_RSRC_CFG_FLAG_SET((word32), BSS_MAX_IDLE_TIME_SUPPORT, (value))
#define WMI_RSRC_CFG_FLAG_BSS_MAX_IDLE_TIME_SUPPORT_GET(word32) \
WMI_RSRC_CFG_FLAG_GET((word32), BSS_MAX_IDLE_TIME_SUPPORT)
typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_init_cmd_fixed_param */
@@ -10566,6 +10579,23 @@ typedef struct {
A_UINT32 vdev_id;
} wmi_vdev_simple_event_fixed_param;
/* Commands for getting and setting protected bit : bss max idle time */
#define WMI_BSS_MAX_IDLE_TIME_PROTECTED_GET(idle_options) \
WMI_GET_BITS(idle_options, 0, 1)
#define WMI_BSS_MAX_IDLE_TIME_PROTECTED_SET(idle_options, val) \
WMI_SET_BITS(idle_options, 0, 1, val)
typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_WMI_VDEV_BSS_MAX_IDLE_TIME_fixed_param */
A_UINT32 vdev_id; /** unique id identifying the VDEV, generated by the caller */
A_UINT32 max_idle_period; /* time interval in seconds */
/* idle_options:
* bit 0 - Protected bit
* Refer to WMI_BSS_MAX_IDLE_TIME_PROTECTED_GET,SET macros.
* bit 31:1 - Reserved bits
*/
A_UINT32 idle_options;
} wmi_vdev_bss_max_idle_time_cmd_fixed_param;
/** VDEV start response status codes */
#define WMI_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0 /** VDEV succesfully started */
@@ -24089,6 +24119,8 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
/* set a key (used for setting per peer unicast
* and per vdev multicast) */
WMI_RETURN_STRING(WMI_VDEV_INSTALL_KEY_CMDID);
/* Set bss max idle time */
WMI_RETURN_STRING(WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID);
/* wnm sleep mode command */
WMI_RETURN_STRING(WMI_VDEV_WNM_SLEEPMODE_CMDID);

Voir le fichier

@@ -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_ 724
#define __WMI_REVISION_ 725
/** The Version Namespace should not be normally changed. Only
* host and firmware of the same WMI namespace will work