mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
fw-api: CL 4962465 - update fw common interface files
Change-Id: Ia17f6ef67da30038abc71b7d906157d9abf6f3f8 WMI: add OBSS_PD_SPATIAL_REUSE_CMD msg def CRs-Fixed: 2262693
This commit is contained in:
parent
c4315d3052
commit
42ba81a7f2
@ -255,6 +255,7 @@ typedef enum {
|
||||
WMI_SERVICE_DUAL_BEACON_ON_SINGLE_MAC_MCC_SUPPORT=159, /* Support dual beacon on different channel on single MAC */
|
||||
WMI_SERVICE_MOTION_DET=160, /* support for motion detection config */
|
||||
WMI_SERVICE_INFRA_MBSSID=161, /* support infra multi-BSSID feature */
|
||||
WMI_SERVICE_OBSS_SPATIAL_REUSE=162, /* support spatial reuse feature */
|
||||
|
||||
|
||||
/******* ADD NEW SERVICES HERE *******/
|
||||
|
@ -923,6 +923,7 @@ typedef enum {
|
||||
WMITLV_TAG_STRUC_wmi_motion_det_event,
|
||||
WMITLV_TAG_STRUC_wmi_motion_det_base_line_event,
|
||||
WMITLV_TAG_STRUC_wmi_ndp_transport_ip_param,
|
||||
WMITLV_TAG_STRUC_wmi_obss_spatial_reuse_set_cmd_fixed_param,
|
||||
} WMITLV_TAG_ID;
|
||||
|
||||
/*
|
||||
@ -1300,6 +1301,7 @@ typedef enum {
|
||||
OP(WMI_MOTION_DET_BASE_LINE_CONFIG_PARAM_CMDID) \
|
||||
OP(WMI_MOTION_DET_START_STOP_CMDID) \
|
||||
OP(WMI_MOTION_DET_BASE_LINE_START_STOP_CMDID) \
|
||||
OP(WMI_PDEV_OBSS_PD_SPATIAL_REUSE_CMDID) \
|
||||
/* add new CMD_LIST elements above this line */
|
||||
|
||||
|
||||
@ -3746,6 +3748,11 @@ WMITLV_CREATE_PARAM_STRUC(WMI_TWT_RESUME_DIALOG_CMDID);
|
||||
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_peer_tid_configurations_cmd_fixed_param, wmi_peer_tid_configurations_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
||||
WMITLV_CREATE_PARAM_STRUC(WMI_PEER_TID_CONFIGURATIONS_CMDID);
|
||||
|
||||
/* OBSS_PD Spatial_Reuse cnmd */
|
||||
#define WMITLV_TABLE_WMI_PDEV_OBSS_PD_SPATIAL_REUSE_CMDID(id,op,buf,len) \
|
||||
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_obss_spatial_reuse_set_cmd_fixed_param, wmi_obss_spatial_reuse_set_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
||||
WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_OBSS_PD_SPATIAL_REUSE_CMDID);
|
||||
|
||||
|
||||
/************************** TLV definitions of WMI events *******************************/
|
||||
|
||||
|
@ -244,6 +244,7 @@ typedef enum {
|
||||
WMI_GRP_11K_OFFLOAD, /* 0x3d */
|
||||
WMI_GRP_TWT, /* 0x3e TWT (Target Wake Time) for STA and AP */
|
||||
WMI_GRP_MOTION_DET, /* 0x3f */
|
||||
WMI_GRP_SPATIAL_REUSE, /* 0x40 */
|
||||
} WMI_GRP_ID;
|
||||
|
||||
#define WMI_CMD_GRP_START_ID(grp_id) (((grp_id) << 12) | 0x1)
|
||||
@ -1139,6 +1140,9 @@ typedef enum {
|
||||
WMI_MOTION_DET_BASE_LINE_CONFIG_PARAM_CMDID,
|
||||
WMI_MOTION_DET_START_STOP_CMDID,
|
||||
WMI_MOTION_DET_BASE_LINE_START_STOP_CMDID,
|
||||
|
||||
/** WMI commands related to OBSS PD Spatial Reuse **/
|
||||
WMI_PDEV_OBSS_PD_SPATIAL_REUSE_CMDID = WMI_CMD_GRP_START_ID(WMI_GRP_SPATIAL_REUSE),
|
||||
} WMI_CMD_ID;
|
||||
|
||||
typedef enum {
|
||||
@ -23162,6 +23166,27 @@ typedef struct {
|
||||
* phase (in %); reserved for future */
|
||||
} wmi_motion_det_base_line_event;
|
||||
|
||||
/* Below structures are related to OBSS_PD_SPATIAL Reuse */
|
||||
typedef struct {
|
||||
/** TLV tag and len; tag equals
|
||||
* WMITLV_TAG_STRUC_wmi_obss_set_cmd_fixed_param */
|
||||
A_UINT32 tlv_header;
|
||||
/** Enable/Disable Spatial Reuse */
|
||||
A_UINT32 enable;
|
||||
/*
|
||||
* In the below fields, "OBSS level" refers to the power of the
|
||||
* signals received from "Other BSS".
|
||||
* Spatial reuse will only be permitted if the Other BSS's signal power
|
||||
* is witin the min to max range specified by the below fields.
|
||||
*/
|
||||
/** Minimum OBSS level to use */
|
||||
A_INT32 obss_min; /* RSSI in dBm */
|
||||
/** Maximum OBSS level to use */
|
||||
A_INT32 obss_max; /* RSSI in dBm */
|
||||
/** Vdev id*/
|
||||
A_UINT32 vdev_id;
|
||||
} wmi_obss_spatial_reuse_set_cmd_fixed_param;
|
||||
|
||||
|
||||
/* ADD NEW DEFS HERE */
|
||||
|
||||
|
@ -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_ 554
|
||||
#define __WMI_REVISION_ 555
|
||||
|
||||
/** The Version Namespace should not be normally changed. Only
|
||||
* host and firmware of the same WMI namespace will work
|
||||
|
Loading…
x
Reference in New Issue
Block a user