Explorar o código

qcacld-3.0: Add support for EHT information elements

As part of 11be enhancements, new information elements were added to
advertise the EHT capabilities in management frames. current driver
implementation supports generation and parsing of information
elements only till 11ax. Update the driver implementation to support
generation and parsing of information elements corresponding to EHT.

Change-Id: I3fd4067dc830b9fb5d603ae119fbb7ec6cfebe4e
CRs-Fixed: 2906976
Bapiraju Alla %!s(int64=4) %!d(string=hai) anos
pai
achega
8482de3f61

+ 38 - 0
core/mac/src/cfg/cfgUtil/dot11f.frms

@@ -3150,6 +3150,31 @@ IE he_6ghz_band_cap (EID_EXTN_ID_ELEMENT) OUI (0x3B)
     }
 }
 
+IE eht_cap (EID_EXTN_ID_ELEMENT) OUI (0xFD)
+{
+    eht_mac_cap[6];
+    phy_cap_bytes[11];
+    {
+        reserved: 1;
+        supported_ch_width_set: 7;
+    }
+    rx_mcs_map, 2;
+    tx_mcs_map, 2;
+}
+
+IE eht_op (EID_EXTN_ID_ELEMENT) OUI (0xFE)
+{
+    basic_mcs_nss_set[2];
+    primary_channel, 1;
+    {
+        width: 3;
+	reserved: 5;
+    }
+    chan_freq_seg0, 1;
+    chan_freq_seg1, 1;
+    minimum_rate, 1;
+}
+
 IE mu_edca_param_set (EID_EXTN_ID_ELEMENT) OUI (0x26)
 {
     qos, 1;
@@ -3620,6 +3645,8 @@ FRAME Beacon                              // C.f. Sec. 7.2.3.1
     OPTIE  bss_color_change;
     OPTIE  mu_edca_param_set;
     OPTIE  esp_information;
+    OPTIE  eht_cap;
+    OPTIE  eht_op;
 } // End frame Beacon.
 
 // Ok, here's  the story on  Beacon1 & Beacon2.   We presumably beacon  a lot
@@ -3716,6 +3743,8 @@ FRAME Beacon2
     OPTIE  bss_color_change;
     OPTIE  mu_edca_param_set;
     OPTIE  esp_information;
+    OPTIE  eht_cap;
+    OPTIE  eht_op;
 }
 
 // This frame is just Beacon with its Fixed Fields stripped out.  It's handy
@@ -3789,6 +3818,8 @@ FRAME BeaconIEs
     OPTIE  bss_color_change;
     OPTIE  mu_edca_param_set;
     OPTIE  esp_information;
+    OPTIE  eht_cap;
+    OPTIE  eht_op;
 } // End frame BeaconIEs.
 
 FRAME Disassociation                      // 7.3.3.3
@@ -3841,6 +3872,7 @@ FRAME AssocRequest                        // 7.2.3.4
     OPTIE  he_6ghz_band_cap;
     OPTIE  osen_ie;
     OPTIE roaming_consortium_sel;
+    OPTIE  eht_cap;
 } // End frame AssocRequest.
 
 FRAME AssocResponse                       // 7.2.3.5
@@ -3889,6 +3921,8 @@ FRAME AssocResponse                       // 7.2.3.5
     OPTIE  bss_color_change;
     OPTIE  mu_edca_param_set;
     OPTIE  MBO_IE;
+    OPTIE  eht_cap;
+    OPTIE  eht_op;
 } // End frame AssocResponse.
 
 FRAME ReAssocRequest                      // 7.2.3.6
@@ -3931,6 +3965,7 @@ FRAME ReAssocRequest                      // 7.2.3.6
     OPTIE  hs20vendor_ie;
     OPTIE  he_cap;
     OPTIE  he_6ghz_band_cap;
+    OPTIE  eht_cap;
 } // End frame ReAssocRequest.
 
 FRAME ReAssocResponse                     // 7.2.3.7
@@ -3991,6 +4026,7 @@ FRAME ProbeRequest                        // 7.2.3.8
     OPTIE  qcn_ie;
     OPTIE  he_cap;
     OPTIE  he_6ghz_band_cap;
+    OPTIE  eht_cap;
 } // End frame ProbeRequest.
 
 FRAME ProbeResponse                       // 7.2.3.9
@@ -4057,6 +4093,8 @@ FRAME ProbeResponse                       // 7.2.3.9
     OPTIE  bss_color_change;
     OPTIE  mu_edca_param_set;
     OPTIE  esp_information;
+    OPTIE  eht_cap;
+    OPTIE  eht_op;
 } // End frame ProbeResponse.
 
 FRAME Authentication                      // 7.2.3.10

+ 103 - 1
core/mac/src/include/dot11f.h

@@ -26,7 +26,7 @@
  *
  *
  * This file was automatically generated by 'framesc'
- * Fri Feb 19 16:37:07 2021 from the following file(s):
+ * Wed Mar 24 20:47:51 2021 from the following file(s):
  *
  * dot11f.frms
  *
@@ -8774,6 +8774,95 @@ uint32_t dot11f_get_packed_ie_dh_parameter_element(
 }; /* End extern "C". */
 #endif /* C++ */
 
+/* EID 255 (0xff) Extended EID 253 (0xfd) */
+typedef struct sDot11fIEeht_cap {
+	uint8_t             present;
+	uint8_t             eht_mac_cap[6];
+	uint8_t             phy_cap_bytes[11];
+	uint8_t             reserved:1;
+	uint8_t supported_ch_width_set:7;
+	uint16_t            rx_mcs_map;
+	uint16_t            tx_mcs_map;
+} tDot11fIEeht_cap;
+
+#define DOT11F_EID_EHT_CAP (255)
+
+/* N.B. These #defines do *not* include the EID & length */
+#define DOT11F_IE_EHT_CAP_MIN_LEN (22)
+
+#define DOT11F_IE_EHT_CAP_MAX_LEN (22)
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* C++ */
+__must_check uint32_t dot11f_unpack_ie_eht_cap(
+	tpAniSirGlobal,
+	uint8_t *,
+	uint8_t,
+	tDot11fIEeht_cap*,
+	bool);
+
+uint32_t dot11f_pack_ie_eht_cap(
+	tpAniSirGlobal,
+	tDot11fIEeht_cap *,
+	uint8_t *,
+	uint32_t,
+	uint32_t*);
+
+uint32_t dot11f_get_packed_ie_eht_cap(
+	tpAniSirGlobal,
+	tDot11fIEeht_cap *,
+	uint32_t*);
+
+#ifdef __cplusplus
+}; /* End extern "C". */
+#endif /* C++ */
+
+/* EID 255 (0xff) Extended EID 254 (0xfe) */
+typedef struct sDot11fIEeht_op {
+	uint8_t             present;
+	uint8_t             basic_mcs_nss_set[2];
+	uint8_t             primary_channel;
+	uint8_t                width:3;
+	uint8_t             reserved:5;
+	uint8_t             chan_freq_seg0;
+	uint8_t             chan_freq_seg1;
+	uint8_t             minimum_rate;
+} tDot11fIEeht_op;
+
+#define DOT11F_EID_EHT_OP (255)
+
+/* N.B. These #defines do *not* include the EID & length */
+#define DOT11F_IE_EHT_OP_MIN_LEN (7)
+
+#define DOT11F_IE_EHT_OP_MAX_LEN (7)
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* C++ */
+__must_check uint32_t dot11f_unpack_ie_eht_op(
+	tpAniSirGlobal,
+	uint8_t *,
+	uint8_t,
+	tDot11fIEeht_op*,
+	bool);
+
+uint32_t dot11f_pack_ie_eht_op(
+	tpAniSirGlobal,
+	tDot11fIEeht_op *,
+	uint8_t *,
+	uint32_t,
+	uint32_t*);
+
+uint32_t dot11f_get_packed_ie_eht_op(
+	tpAniSirGlobal,
+	tDot11fIEeht_op *,
+	uint32_t*);
+
+#ifdef __cplusplus
+}; /* End extern "C". */
+#endif /* C++ */
+
 /* EID 255 (0xff) Extended EID 11 (0x0b) */
 typedef struct sDot11fIEesp_information {
 	uint8_t             present;
@@ -10101,6 +10190,7 @@ typedef struct sDot11fAssocRequest{
 	tDot11fIEhe_6ghz_band_cap              he_6ghz_band_cap;
 	tDot11fIEosen_ie                       osen_ie;
 	tDot11fIEroaming_consortium_sel        roaming_consortium_sel;
+	tDot11fIEeht_cap                       eht_cap;
 } tDot11fAssocRequest;
 
 #define DOT11F_ASSOCREQUEST (3)
@@ -10170,6 +10260,8 @@ typedef struct sDot11fAssocResponse{
 	tDot11fIEbss_color_change             bss_color_change;
 	tDot11fIEmu_edca_param_set            mu_edca_param_set;
 	tDot11fIEMBO_IE                       MBO_IE;
+	tDot11fIEeht_cap                      eht_cap;
+	tDot11fIEeht_op                       eht_op;
 } tDot11fAssocResponse;
 
 #define DOT11F_ASSOCRESPONSE (4)
@@ -10295,6 +10387,8 @@ typedef struct sDot11fBeacon{
 	tDot11fIEbss_color_change            bss_color_change;
 	tDot11fIEmu_edca_param_set           mu_edca_param_set;
 	tDot11fIEesp_information             esp_information;
+	tDot11fIEeht_cap                     eht_cap;
+	tDot11fIEeht_op                      eht_op;
 } tDot11fBeacon;
 
 #define DOT11F_BEACON (6)
@@ -10398,6 +10492,8 @@ typedef struct sDot11fBeacon2{
 	tDot11fIEbss_color_change            bss_color_change;
 	tDot11fIEmu_edca_param_set           mu_edca_param_set;
 	tDot11fIEesp_information             esp_information;
+	tDot11fIEeht_cap                     eht_cap;
+	tDot11fIEeht_op                      eht_op;
 } tDot11fBeacon2;
 
 #define DOT11F_BEACON2 (8)
@@ -10483,6 +10579,8 @@ typedef struct sDot11fBeaconIEs{
 	tDot11fIEbss_color_change            bss_color_change;
 	tDot11fIEmu_edca_param_set           mu_edca_param_set;
 	tDot11fIEesp_information             esp_information;
+	tDot11fIEeht_cap                     eht_cap;
+	tDot11fIEeht_op                      eht_op;
 } tDot11fBeaconIEs;
 
 #define DOT11F_BEACONIES (9)
@@ -10823,6 +10921,7 @@ typedef struct sDot11fProbeRequest{
 	tDot11fIEqcn_ie                  qcn_ie;
 	tDot11fIEhe_cap                  he_cap;
 	tDot11fIEhe_6ghz_band_cap        he_6ghz_band_cap;
+	tDot11fIEeht_cap                 eht_cap;
 } tDot11fProbeRequest;
 
 #define DOT11F_PROBEREQUEST (21)
@@ -10907,6 +11006,8 @@ typedef struct sDot11fProbeResponse{
 	tDot11fIEbss_color_change            bss_color_change;
 	tDot11fIEmu_edca_param_set           mu_edca_param_set;
 	tDot11fIEesp_information             esp_information;
+	tDot11fIEeht_cap                     eht_cap;
+	tDot11fIEeht_op                      eht_op;
 } tDot11fProbeResponse;
 
 #define DOT11F_PROBERESPONSE (22)
@@ -11053,6 +11154,7 @@ typedef struct sDot11fReAssocRequest{
 	tDot11fIEhs20vendor_ie               hs20vendor_ie;
 	tDot11fIEhe_cap                      he_cap;
 	tDot11fIEhe_6ghz_band_cap            he_6ghz_band_cap;
+	tDot11fIEeht_cap                     eht_cap;
 } tDot11fReAssocRequest;
 
 #define DOT11F_REASSOCREQUEST (26)

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 360 - 219
core/mac/src/sys/legacy/src/utils/src/dot11f.c


Algúns arquivos non se mostraron porque demasiados arquivos cambiaron neste cambio