Explorar el Código

qcacld-3.0: Send channel list to fw in case of PNO

In case of PNO scan, If firmware supports
WMI_SERVICE_PNO_SCAN_CONFIG_PER_CHANNEL, it uses the
upper-12 bits(bit-20 to bit 32) of channel_list for
flags and lower 20-bits(bit-0 to bit-19) for frequency.
If firmware doesn't support it, then channel_list holds
the frequency value only.

Fix is to fill the flags and frequency accordingly.

Change-Id: I8473072069da4532406ce720a0070a665e29b1af
Crs-Fixed: 3103939
abhinav kumar hace 3 años
padre
commit
f653ddf2fa
Se han modificado 1 ficheros con 11 adiciones y 10 borrados
  1. 11 10
      core/hdd/src/wlan_hdd_wext.c

+ 11 - 10
core/hdd/src/wlan_hdd_wext.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -8675,10 +8675,10 @@ static int __iw_set_pno(struct net_device *dev,
 		ptr += req.networks_list[i].ssid.length;
 
 		params = sscanf(ptr, " %u %u %hhu %n",
-				  &(req.networks_list[i].authentication),
-				  &(req.networks_list[i].encryption),
-				  &(req.networks_list[i].channel_cnt),
-				  &offset);
+				&(req.networks_list[i].authentication),
+				&(req.networks_list[i].encryption),
+				&(req.networks_list[i].pno_chan_list.num_chan),
+				&offset);
 
 		if (3 != params) {
 			hdd_err("Incorrect cmd %s", ptr);
@@ -8692,20 +8692,21 @@ static int __iw_set_pno(struct net_device *dev,
 			  req.networks_list[i].ssid.ssid,
 			  req.networks_list[i].authentication,
 			  req.networks_list[i].encryption,
-			  req.networks_list[i].channel_cnt, offset);
+			  req.networks_list[i].pno_chan_list.num_chan, offset);
 
 		/* Advance to channel list */
 		ptr += offset;
 
 		if (SCAN_PNO_MAX_NETW_CHANNELS_EX <
-		    req.networks_list[i].channel_cnt) {
+		    req.networks_list[i].pno_chan_list.num_chan) {
 			hdd_err("Incorrect number of channels");
 			ret = -EINVAL;
 			goto exit;
 		}
 
-		if (0 != req.networks_list[i].channel_cnt) {
-			for (j = 0; j < req.networks_list[i].channel_cnt;
+		if (0 != req.networks_list[i].pno_chan_list.num_chan) {
+			for (j = 0;
+			     j < req.networks_list[i].pno_chan_list.num_chan;
 			     j++) {
 				if (1 != sscanf(ptr, " %hhu %n", &value,
 				   &offset)) {
@@ -8719,7 +8720,7 @@ static int __iw_set_pno(struct net_device *dev,
 					ret = -EINVAL;
 					goto exit;
 				}
-				req.networks_list[i].channels[j] =
+				req.networks_list[i].pno_chan_list.chan[j].freq =
 					cds_chan_to_freq(value);
 				/* Advance to next channel number */
 				ptr += offset;