Przeglądaj źródła

qcacld-3.0: CL 1483121 - update fw common interface files

qcacld-2.0 to qcacld-3.0 propagation.

Provide backward compatibility with host using MAC ID and FW using MAC ID
and Increase physical address from 32 to 64 bits in MGMT TX send command.

Change-Id: Idef6994468f2d34a0a3581531f228e2a7efd7883
CRs-Fixed: 865207
Krishna Kumaar Natarajan 9 lat temu
rodzic
commit
7dde8c7108
2 zmienionych plików z 11 dodań i 2 usunięć
  1. 10 1
      target/inc/wmi_unified.h
  2. 1 1
      target/inc/wmi_version.h

+ 10 - 1
target/inc/wmi_unified.h

@@ -2314,6 +2314,11 @@ typedef struct {
 	 * Value 0 means host doesn't given any limit to FW.
 	 */
 	A_UINT32 max_bssid_rx_filters;
+	/**
+	 * Use PDEV ID instead of MAC ID, added for backward compatibility with
+	 * older host which is using MAC ID. 1 means PDEV ID, 0 means MAC ID.
+	 */
+	A_UINT32 use_pdev_id;
 } wmi_resource_config;
 
 #define WMI_RSRC_CFG_FLAG_SET(word32, flag, value) \
@@ -7312,10 +7317,14 @@ typedef struct wmi_bcn_send_from_host {
 	A_UINT32 tlv_header;            /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_bcn_send_from_host_cmd_fixed_param  */
 	A_UINT32 vdev_id;
 	A_UINT32 data_len;
-	A_UINT32 frag_ptr;              /* Physical address of the frame */
+	union {
+		A_UINT32 frag_ptr; /* Physical address of the frame */
+		A_UINT32 frag_ptr_lo; /* LSB of physical address of the frame */
+	};
 	A_UINT32 frame_ctrl;            /* farme ctrl to setup PPDU desc */
 	A_UINT32 dtim_flag;             /* to control CABQ traffic */
 	A_UINT32 bcn_antenna;   /* Antenna for beacon transmission */
+	A_UINT32 frag_ptr_hi; /* MSBs of physical address of the frame */
 } wmi_bcn_send_from_host_cmd_fixed_param;
 
 /* cmd to support bcn snd for all vaps at once */

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