diff options
| author | spuligil <spuligil@codeaurora.org> | 2017-12-27 09:01:02 -0800 |
|---|---|---|
| committer | Nandini Suresh <snandini@codeaurora.org> | 2018-01-02 08:33:50 -0800 |
| commit | af2dd00237dc18f74812f4b6d64268efd5cab680 (patch) | |
| tree | 1e6de0cd0e3036def7edd58e7f51ab76a4f69cc5 | |
| parent | 255c170fb7c5f7f60ddc8f4b540088dd6d3f24b2 (diff) | |
fw-api: CL 3952186 - update fw common interface files
WMI: add vdev params for configuring modulated DTIM
Change-Id: I3074e6e87664c2aa1f70fb810a58c24ff1496e80
CRs-Fixed: 1107600
| -rwxr-xr-x | fw/wmi_services.h | 1 | ||||
| -rwxr-xr-x | fw/wmi_tlv_defs.h | 1 | ||||
| -rwxr-xr-x | fw/wmi_unified.h | 13 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
4 files changed, 16 insertions, 1 deletions
diff --git a/fw/wmi_services.h b/fw/wmi_services.h index 50ecbb2f5ee2..1740bd30f01d 100755 --- a/fw/wmi_services.h +++ b/fw/wmi_services.h @@ -242,6 +242,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 *******/ diff --git a/fw/wmi_tlv_defs.h b/fw/wmi_tlv_defs.h index 9bd021501ae7..355ad4790502 100755 --- a/fw/wmi_tlv_defs.h +++ b/fw/wmi_tlv_defs.h @@ -1438,6 +1438,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/fw/wmi_unified.h b/fw/wmi_unified.h index 4a839d606ab6..053eb3c25aa0 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -8100,6 +8100,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 diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 092c050d8cd4..df56726e808b 100755 --- a/fw/wmi_version.h +++ b/fw/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 |
