Browse Source

qcacld-3.0: Add 6Ghz band HE capabilities for TDLS frames

Add 6Ghz band HE capabilities for TDLS setup request and
setup response frames.

Change-Id: I02e8da12acc6832ad39d7166961c1c6546c8ad49
CRs-Fixed: 2994066
Utkarsh Bhatnagar 3 years ago
parent
commit
4f49019b64

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

@@ -4710,6 +4710,7 @@ FRAME TDLSSetupReq
     OPTIE  AID;
     OPTIE  VHTCaps;
     OPTIE  he_cap;
+    OPTIE  he_6ghz_band_cap;
 }
 
 FRAME TDLSSetupRsp
@@ -4738,6 +4739,7 @@ FRAME TDLSSetupRsp
     OPTIE  VHTCaps;
     OPTIE  OperatingMode;
     OPTIE  he_cap;
+    OPTIE  he_6ghz_band_cap;
 }
 
 FRAME TDLSSetupCnf

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

@@ -26,7 +26,7 @@
  *
  *
  * This file was automatically generated by 'framesc'
- * Sun Jul 11 23:02:19 2021 from the following file(s):
+ * Wed Jul 14 02:14:16 2021 from the following file(s):
  *
  * dot11f.frms
  *
@@ -11968,6 +11968,7 @@ typedef struct sDot11fTDLSSetupReq{
 	tDot11fIEAID                           AID;
 	tDot11fIEVHTCaps                       VHTCaps;
 	tDot11fIEhe_cap                        he_cap;
+	tDot11fIEhe_6ghz_band_cap              he_6ghz_band_cap;
 } tDot11fTDLSSetupReq;
 
 #define DOT11F_TDLSSETUPREQ (36)
@@ -12015,6 +12016,7 @@ typedef struct sDot11fTDLSSetupRsp{
 	tDot11fIEVHTCaps                       VHTCaps;
 	tDot11fIEOperatingMode                 OperatingMode;
 	tDot11fIEhe_cap                        he_cap;
+	tDot11fIEhe_6ghz_band_cap              he_6ghz_band_cap;
 } tDot11fTDLSSetupRsp;
 
 #define DOT11F_TDLSSETUPRSP (37)

+ 9 - 1
core/mac/src/sys/legacy/src/utils/src/dot11f.c

@@ -24,7 +24,7 @@
  *
  *
  * This file was automatically generated by 'framesc'
- * Sun Jul 11 23:02:19 2021 from the following file(s):
+ * Wed Jul 14 02:14:16 2021 from the following file(s):
  *
  * dot11f.frms
  *
@@ -13676,6 +13676,10 @@ static const tIEDefn IES_TDLSSetupReq[] = {
 	{ offsetof(tDot11fTDLSSetupReq, he_cap), offsetof(tDot11fIEhe_cap,
 	present), 0, "he_cap", 0, 23, 56, SigIehe_cap, {0, 0, 0, 0, 0},
 	0, DOT11F_EID_HE_CAP, 35, 0, },
+	{ offsetof(tDot11fTDLSSetupReq, he_6ghz_band_cap),
+	offsetof(tDot11fIEhe_6ghz_band_cap, present), 0, "he_6ghz_band_cap",
+	0, 4, 4, SigIehe_6ghz_band_cap, {0, 0, 0, 0, 0},
+	0, DOT11F_EID_HE_6GHZ_BAND_CAP, 59, 0, },
 	{0, 0, 0, NULL, 0, 0, 0, 0, {0, 0, 0, 0, 0}, 0, 0xff, 0, },};
 
 uint32_t dot11f_unpack_tdls_setup_req(tpAniSirGlobal pCtx,
@@ -13772,6 +13776,10 @@ static const tIEDefn IES_TDLSSetupRsp[] = {
 	{ offsetof(tDot11fTDLSSetupRsp, he_cap), offsetof(tDot11fIEhe_cap,
 	present), 0, "he_cap", 0, 23, 56, SigIehe_cap, {0, 0, 0, 0, 0},
 	0, DOT11F_EID_HE_CAP, 35, 0, },
+	{ offsetof(tDot11fTDLSSetupRsp, he_6ghz_band_cap),
+	offsetof(tDot11fIEhe_6ghz_band_cap, present), 0, "he_6ghz_band_cap",
+	0, 4, 4, SigIehe_6ghz_band_cap, {0, 0, 0, 0, 0},
+	0, DOT11F_EID_HE_6GHZ_BAND_CAP, 59, 0, },
 	{0, 0, 0, NULL, 0, 0, 0, 0, {0, 0, 0, 0, 0}, 0, 0xff, 0, },};
 
 uint32_t dot11f_unpack_tdls_setup_rsp(tpAniSirGlobal pCtx,