Browse Source

qcacmn: Set max BW for each valid channel and send to FW

Configuration for Issue:-
DUT configuration:-
1. Configure DUT's country as US where channel 165 does
not support channel bandwidth of 40 mhz.
AP Configuration:-
1 Configure the AP in a country where channel 165
supports channel bandwidth 40MHZ.
Scenario of the issue:-
1.Connect to a diff AP on some channel x with same SSID,
and then roam to this AP.
Observation:-
The DUT would connect in 40 mhz to this AP instead of 20Mhz,
which violates the DUT's country reg rules.
Expectation:-
The DUT should re-connect only in 20Mhz on channel 165, or
only in max BW supported by reg in that country.
Issue:-
The DUT does not consider the max bandwidth allowed for the channel
in the country configured, and allow the re-association only
in the respective bandwidth.
Fix:-
Send the max BW supported by the channels in the current
reg domain to the FW so that it considers the max BW of the
channel and AP capability and then roam in the respective BW
only.

Change-Id: I977090c58e378e83cb5a3ee84a72afd018e8c428
CRs-Fixed: 2508187
gaurank kathpalia 5 years ago
parent
commit
f47b162435
2 changed files with 4 additions and 1 deletions
  1. 2 0
      wmi/inc/wmi_unified_param.h
  2. 2 1
      wmi/src/wmi_unified_tlv.c

+ 2 - 0
wmi/inc/wmi_unified_param.h

@@ -621,6 +621,7 @@ typedef enum {
  * @maxreqpower: Max regulatory power
  * @antennamac: Max antenna
  * @reg_class_id: Regulatory class id.
+ * @max_bw_supported: max BW supported
  */
 
 struct channel_param {
@@ -644,6 +645,7 @@ struct channel_param {
 	int8_t   maxregpower;
 	uint8_t  antennamax;
 	uint8_t  reg_class_id;
+	wmi_host_channel_width max_bw_supported;
 };
 
 #ifdef FEATURE_OEM_DATA

+ 2 - 1
wmi/src/wmi_unified_tlv.c

@@ -3073,7 +3073,8 @@ static QDF_STATUS send_scan_chan_list_cmd_tlv(wmi_unified_t wmi_handle,
 					    tchan_info->reg_class_id);
 		WMI_SET_CHANNEL_MAX_TX_POWER(chan_info,
 					     tchan_info->maxregpower);
-
+		WMI_SET_CHANNEL_MAX_BANDWIDTH(chan_info,
+					      tchan_info->max_bw_supported);
 		WMI_LOGD("chan[%d] = %u", i, chan_info->mhz);
 
 		tchan_info++;