Преглед изворни кода

qcacld-3.0: Add 11BE wireless mode and NO11BE phybitmap

Extract the 11BE flags advertised by FW in WMI_SERVICE_READY_EXT2_EVENTID
and update the regulatory pdev wireless modes. The wireless mode is
currently represented as 'uint32_t' and all the 32 bits are exhausted.
To accommodate the new 11BE flags, change the data type of wireless_modes
from 'uint32_t' to 'uint64_t'.

Change-Id: I9c137fe4c3d6f28cf0b4e0dcb0ea5aae01b1749e
CRs-Fixed: 2906216
Ashish Kumar Dhanotiya пре 4 година
родитељ
комит
f48276bf56

+ 1 - 1
core/hdd/src/wlan_hdd_main.c

@@ -2165,7 +2165,7 @@ static void hdd_sar_target_config(struct hdd_context *hdd_ctx,
 
 static void hdd_update_vhtcap_2g(struct hdd_context *hdd_ctx)
 {
-	uint32_t chip_mode = 0;
+	uint64_t chip_mode = 0;
 	QDF_STATUS status;
 	bool b2g_vht_cfg = false;
 	bool b2g_vht_target = false;

+ 3 - 0
core/mac/inc/sir_mac_prot_def.h

@@ -1016,6 +1016,9 @@ typedef enum eSirMacHTChannelWidth {
 	eHT_CHANNEL_WIDTH_80MHZ = 2,
 	eHT_CHANNEL_WIDTH_160MHZ = 3,
 	eHT_CHANNEL_WIDTH_80P80MHZ = 4,
+#ifdef WLAN_FEATURE_11BE
+	eHT_CHANNEL_WIDTH_320MHZ = 5,
+#endif
 	eHT_MAX_CHANNEL_WIDTH
 } tSirMacHTChannelWidth;
 

+ 4 - 0
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -2730,6 +2730,10 @@ lim_convert_channel_width_enum(enum phy_ch_width ch_width)
 		return eHT_CHANNEL_WIDTH_160MHZ;
 	case CH_WIDTH_80P80MHZ:
 		return eHT_CHANNEL_WIDTH_80P80MHZ;
+#ifdef WLAN_FEATURE_11BE
+	case CH_WIDTH_320MHZ:
+		return eHT_CHANNEL_WIDTH_320MHZ;
+#endif
 	case CH_WIDTH_MAX:
 		return eHT_MAX_CHANNEL_WIDTH;
 	case CH_WIDTH_5MHZ: