diff options
| author | spuligil <spuligil@codeaurora.org> | 2019-01-09 18:00:52 -0800 |
|---|---|---|
| committer | spuligil <spuligil@codeaurora.org> | 2019-01-09 18:00:52 -0800 |
| commit | 07fffb33dd71dcc6ced10887b19ff5f524d892f4 (patch) | |
| tree | 439a50594daf49f4b0e0ee810d9df57dfcf884d9 | |
| parent | 0205bf450dc35431832c989089e6c2aa9e440010 (diff) | |
fw-api: CL 6251667 - update fw common interface files
Change-Id: I1e37ee500c7137abcaed48ca8c71112d240cf378
WMI: add max_ast_index to READY_EVENT msg; add WMI_PEER_ENABLE_FT def
CRs-Fixed: 2262693
| -rwxr-xr-x | fw/wmi_unified.h | 10 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index bc7bcb74727a..663e461aad5a 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -2552,6 +2552,14 @@ typedef struct { * Peer ID can be up to num_total_peers + num_extra_peers. */ A_UINT32 num_extra_peers; + /* + * max_ast_index - max AST index that Firmware can generate + * max_ast_index = (ast_table_size-1), ast_table_size is dynamically chosen + * based on num_peers configutation from Host. Hence Host needs to know the + * max_ast_index that Firmware can generate. + * A 0x0 value for max_ast_index means the target has not specified a limit. + */ + A_UINT32 max_ast_index; /* * This fixed_param TLV is followed by these additional TLVs: @@ -10662,6 +10670,8 @@ typedef struct { /* Disable burst and assist */ #define WMI_PEER_PARAM_DISABLE_AGGRESSIVE_TX 0x1d +/* Enable 11r FT Roaming */ +#define WMI_PEER_PARAM_ENABLE_FT 0x1e /** mimo ps values for the parameter WMI_PEER_MIMO_PS_STATE */ #define WMI_PEER_MIMO_PS_NONE 0x0 diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 75b52f903a17..22aa584f23c3 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_ 614 +#define __WMI_REVISION_ 615 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
