diff options
| author | Nishank Aggarwal <naggar@codeaurora.org> | 2016-11-02 20:30:55 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-11-11 19:48:11 +0530 |
| commit | fbc476df55e4b5c370e7b504bcbee818934675ad (patch) | |
| tree | 7517902fc1e66b6e5dbb85bd904140479fe3341a | |
| parent | 96e04ee0bc0c65408baed37f78d6206188d60570 (diff) | |
qcacld-2.0: CL 1686562 - update fw common interface files
NAN NDP channel config type and NAN20 responder policy defs
Change-Id: I0a2415ad0651ea93c3907e0a7fa2f59d2cb7ed05
CRs-Fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 15 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 32354268aacc..eae3aefdf925 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -12039,6 +12039,17 @@ typedef enum { #define wmi_ndp_rsp_code wmi_ndp_rsp_code_PROTOTYPE /** +* NDP Channel configuration type +*/ +typedef enum { + WMI_NDP_CHANNEL_NOT_REQUESTED = 0, /* Channel will not configured */ + WMI_NDP_REQUEST_CHANNEL_SETUP = 1, /* Channel will be provided and is optional/hint */ + WMI_NDP_FORCE_CHANNEL_SETUP = 2/* NDP must start on the provided channel */ +} wmi_ndp_channel_cfg_PROTOTYPE; + +#define wmi_ndp_channel_cfg wmi_ndp_channel_cfg_PROTOTYPE + +/** * NDP Initiator requesting a data session */ typedef struct { @@ -12056,6 +12067,8 @@ typedef struct { A_UINT32 ndp_cfg_len; /** Actual number of bytes in TLV ndp_app_info */ A_UINT32 ndp_app_info_len; + /** NDP channel configuration type defined in wmi_ndp_channel_cfg */ + A_UINT32 ndp_channel_cfg; /** * TLV (tag length value ) parameters follow the ndp_initiator_req * structure. The TLV's are: @@ -12224,6 +12237,8 @@ typedef struct { A_UINT32 ndp_instance_id; /** NDI mac address of the peer */ wmi_mac_addr peer_ndi_mac_addr; + /** Host can create peer if this entry is TRUE */ + A_UINT32 create_peer; } wmi_ndp_responder_rsp_event_fixed_param_PROTOTYPE; #define wmi_ndp_responder_rsp_event_fixed_param wmi_ndp_responder_rsp_event_fixed_param_PROTOTYPE diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 10abb9b26db9..b9ed16de8daf 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_ 307 +#define __WMI_REVISION_ 308 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
