diff options
| author | CNSS_WLAN Service <cnssbldsw@qualcomm.com> | 2018-02-23 02:10:43 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-02-23 02:10:43 -0800 |
| commit | 982f7489a5d2d4e6deb4c27d11d2e274abbe1bbe (patch) | |
| tree | 39d0823036602ff39deb49869b996b270c81cd89 | |
| parent | 6706207cd708a5f65ae323c244c0b0d0835c0b3d (diff) | |
| parent | bc9f5e14647216cfa04a2d10a86206c7a0f2af1a (diff) | |
Merge "qcacld-2.0: CL 3952186 - update fw commmon interface files" into wlan-cld2.driver.lnx.1.0
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_services.h | 1 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_tlv_defs.h | 1 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 13 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
4 files changed, 16 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_services.h b/CORE/SERVICES/COMMON/wmi_services.h index 7ba1b3e986fd..13509784f606 100644 --- a/CORE/SERVICES/COMMON/wmi_services.h +++ b/CORE/SERVICES/COMMON/wmi_services.h @@ -336,6 +336,7 @@ typedef enum { * host will rely on WMI_DMA_RING_CAPABILITIES to get supported modules */ WMI_SERVICE_AP_OBSS_DETECTION_OFFLOAD=147, /* Support SAP mode OBSS detection offload */ WMI_SERVICE_11K_NEIGHBOUR_REPORT_SUPPORT=148, /* Support for 11k neighbor report */ + WMI_SERVICE_LISTEN_INTERVAL_OFFLOAD_SUPPORT=149, /* Support listen interval offload */ /******* ADD NEW SERVICES HERE *******/ WMI_MAX_EXT_SERVICE diff --git a/CORE/SERVICES/COMMON/wmi_tlv_defs.h b/CORE/SERVICES/COMMON/wmi_tlv_defs.h index 4bc01cbf058f..10d994aff9ba 100644 --- a/CORE/SERVICES/COMMON/wmi_tlv_defs.h +++ b/CORE/SERVICES/COMMON/wmi_tlv_defs.h @@ -1427,6 +1427,7 @@ typedef enum { OP(WMI_PDEV_DMA_RING_CFG_RSP_EVENTID) \ OP(WMI_PDEV_DMA_RING_BUF_RELEASE_EVENTID) \ OP(WMI_SAR_GET_LIMITS_EVENTID) \ + OP(WMI_SAR2_RESULT_EVENTID) \ /* add new EVT_LIST elements above this line */ diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 3d568e465070..7cf8a3321e30 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -8162,6 +8162,19 @@ typedef enum { */ WMI_VDEV_PARAM_RATE_DROPDOWN_BMAP, /* 0x79 */ + /** VDEV parameter to config modulated DTIM count */ + WMI_VDEV_PARAM_MODDTIM_CNT, /* 0x7a */ + + /** + * VDEV parameter to config max listen interval, + * when modulated DTIM is enabled. + * Units are 100TU. + */ + WMI_VDEV_PARAM_MAX_LI_OF_MODDTIM, /* 0x7b */ + + /** VDEV parameter to config dynamic DTIM count */ + WMI_VDEV_PARAM_DYNDTIM_CNT, /* 0x7c */ + /*=== ADD NEW VDEV PARAM TYPES ABOVE THIS LINE === * The below vdev param types are used for prototyping, and are * prone to change. diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index ce980b3899c6..cc965fe1ac5c 100644 --- a/CORE/SERVICES/COMMON/wmi_version.h +++ b/CORE/SERVICES/COMMON/wmi_version.h @@ -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_ 483 +#define __WMI_REVISION_ 484 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
