Browse Source

fw-api: CL 9382833 - update fw common interface files

Change-Id: I7f285baddc912f2abdbc57c897841ef9fb933b92
WMI: add HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT flag in wmi_resourse_config
CRs-Fixed: 2262693
spuligil 5 years ago
parent
commit
65143e2505
2 changed files with 20 additions and 1 deletions
  1. 19 0
      fw/wmi_unified.h
  2. 1 1
      fw/wmi_version.h

+ 19 - 0
fw/wmi_unified.h

@@ -3494,6 +3494,20 @@ typedef struct {
      *  Bits 31:4 - Reserved
      */
     A_UINT32 flags2;
+    /** @brief host_service_flags - can be used by Host to indicate
+     * services that host can support.
+     *
+     *  @details
+     *  Bit 0
+     *      The bit will be set when Host HDD supports seperate iface creation
+     *      for NAN.  More specifically Host can support creation of NAN vdev
+     *      in firmware.
+     *
+     *      Refer to WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_GET/SET
+     *      macros defined below.
+     *  Bits 31:1 - Reserved
+     */
+    A_UINT32 host_service_flags;
 } wmi_resource_config;
 
 #define WMI_MSDU_FLOW_AST_ENABLE_GET(msdu_flow_config0, ast_x) \
@@ -3693,6 +3707,11 @@ typedef struct {
 #define WMI_RSRC_CFG_FLAGS2_RE_ULRESP_PDEV_CFG_SET(flags2, pdev_id, value) \
     WMI_SET_BITS(flags2, pdev_id, 1, value)
 
+#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_GET(host_service_flags) \
+    WMI_GET_BITS(host_service_flags, 0, 1)
+#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_SET(host_service_flags, val) \
+    WMI_SET_BITS(host_service_flags, 0, 1, val)
+
 typedef struct {
     A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_init_cmd_fixed_param */
 

+ 1 - 1
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_ 765
+#define __WMI_REVISION_ 766
 
 /** The Version Namespace should not be normally changed. Only
  *  host and firmware of the same WMI namespace will work