diff options
| author | spuligil <spuligil@codeaurora.org> | 2019-07-05 12:01:04 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-07-18 06:21:50 -0700 |
| commit | 35b3551ec53745e2d7aa931963ad0f55725482aa (patch) | |
| tree | 444d2dcb7a53f9f9275b3c43a06ac87047a8c077 | |
| parent | e9e3ebee5967cd22af297b82916c597f30e0a02f (diff) | |
fw-api: CL 7552008 - update fw common interface files
Change-Id: I8e9fa27286e4bb31da098bd2ed896357f4ca35c3
WMI: add freq fields to wmi_dma_buf_release_spectral_meta_data TLV
CRs-Fixed: 2262693
| -rwxr-xr-x | fw/wmi_services.h | 1 | ||||
| -rwxr-xr-x | fw/wmi_unified.h | 12 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
3 files changed, 14 insertions, 1 deletions
diff --git a/fw/wmi_services.h b/fw/wmi_services.h index 473c5dc00bfe..095940f3f522 100755 --- a/fw/wmi_services.h +++ b/fw/wmi_services.h @@ -401,6 +401,7 @@ typedef enum { WMI_SERVICE_MSDU_FLOW_OVERRIDE_BY_HOST = 216, /* target supports flow override feature */ WMI_SERVICE_WMI_CHAN_RF_CHARACTERIZATION_INFO_EVENT= 217, /* target will send WMI_CHAN_RF_CHARACTERIZATION_INFO_EVENT */ WMI_SERVICE_RX_FSE_SUPPORT = 218, /* target supports flow search through RxOLE FSE hw block */ + WMI_SERVICE_FREQINFO_IN_METADATA = 219, /* FW provides freq_info during spectral scan */ /******* ADD NEW SERVICES HERE *******/ diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 3169aea20eea..81c131d1e78a 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -25356,6 +25356,18 @@ typedef struct { * in HOST. */ A_UINT32 reset_delay; + /** + * Current center freq1 (MHz units) + */ + A_UINT32 freq1; + /** + * Current center freq2 (MHz units) + */ + A_UINT32 freq2; + /** + * Channel Width (MHz units) + */ + A_UINT32 ch_width; } wmi_dma_buf_release_spectral_meta_data; typedef enum { diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 9142fc947512..2f9ebbd8c03f 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_ 689 +#define __WMI_REVISION_ 690 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
