ソースを参照

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

Change-Id: Ia91aa849642db109dd21a4d948568ac1ebb8d0d9
WMI: add peer_type_bitmap to vdev_delete_all_peer_cmd
CRs-Fixed: 2262693
spuligil 3 年 前
コミット
f725ae710e
4 ファイル変更23 行追加2 行削除
  1. 1 1
      fw/wmi.h
  2. 1 0
      fw/wmi_services.h
  3. 20 0
      fw/wmi_unified.h
  4. 1 1
      fw/wmi_version.h

+ 1 - 1
fw/wmi.h

@@ -145,7 +145,7 @@ typedef enum {
     GROUP_USAGE         = 0x01,
     TX_USAGE            = 0x02,     /* default Tx Key - Static WEP only */
     PMK_USAGE           = 0x04,     /* PMK cache */
-    PASN_USAGE          = 0x08,     /* is PASN based key */
+    LTF_USAGE           = 0x08,     /* LTF key seed */
 } KEY_USAGE;
 /*
  * List of Events (target to host)

+ 1 - 0
fw/wmi_services.h

@@ -578,6 +578,7 @@ typedef  enum  {
     WMI_IS_RADAR_FOUND_CHAN_FREQ_IS_CENTER_FREQ = 325, /* FW Supporting radar event on the actual center frequency radar was detected */
     WMI_SERVICE_BIOS_SAR_SUPPORT = 326, /* FW support for SAR parameter stored in BIOS */
     WMI_SERVICE_REO_QREF_SUPPORT = 327, /* FW supports REO QREF */
+    WMI_SERVICE_DELETE_ALL_PEER_BITMAP_SUPPORT = 328, /* target supports cmd to delete all specific peer type within a vdev */
 
     WMI_MAX_EXT2_SERVICE
 

+ 20 - 0
fw/wmi_unified.h

@@ -15140,10 +15140,27 @@ typedef struct {
     wmi_mac_addr peer_macaddr;
 } wmi_peer_delete_cmd_fixed_param;
 
+#define WMI_VDEV_ALL_PEER_MAX_BITMAP_WORD32 ((WMI_PEER_TYPE_HOST_MAX+31) / 32)
+
+#define WMI_VDEV_DELETE_ALL_PEER_BITMAP_SET(param, peer_type) \
+        WMI_SET_BITS(param[peer_type / 32], (peer_type % 32), 1, 1)
+
+#define WMI_VDEV_DELETE_ALL_PEER_BITMAP_GET(param, peer_type) \
+        WMI_GET_BITS(param[peer_type / 32], (peer_type % 32), 1)
+
 typedef struct {
     A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_delete_all_peer_cmd_fixed_param */
     /** unique id identifying the VDEV, generated by the caller */
     A_UINT32 vdev_id;
+    /**
+     * Host can request for deletion of peers specific to wmi_peer_type
+     * through below bitmap.
+     * Macro's WMI_VDEV_DELETE_ALL_PEER_BITMAP_SET &
+     * WMI_VDEV_DELETE_ALL_PEER_BITMAP_GET are used for accessing purpose.
+     * And if bitmap array is filled with zeros, firmware needs to delete
+     * all peers.
+     */
+     A_UINT32 peer_type_bitmap[WMI_VDEV_ALL_PEER_MAX_BITMAP_WORD32];
 } wmi_vdev_delete_all_peer_cmd_fixed_param;
 
 typedef struct {
@@ -16600,6 +16617,7 @@ enum {
     WMI_AUTH_FT_RSNA_FILS_SHA384,
     WMI_AUTH_WPA3_SAE,
     WMI_AUTH_WPA3_OWE,
+    WMI_AUTH_PASN,
 };
 
 typedef enum {
@@ -37657,6 +37675,8 @@ typedef struct {
     wmi_mac_addr peer_mac_addr;
     /* Return status. 0 for success, non-zero otherwise */
     A_UINT32     status;
+    /* Source address used for doing PASN authentication */
+    wmi_mac_addr source_mac_addr;
 } wmi_rtt_pasn_auth_status_param;
 
 

+ 1 - 1
fw/wmi_version.h

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