Browse Source

qcacld-3.0: Update SNOC voting for NAN case

In case of NAN, if the tput levels are between mid to high range then
apply next SNOC voting level.

Change-Id: Ifb77c8f627b5fc565767aac4baa3629b12a37582
CRs-Fixed: 3611715
Srinivas Girigowda 1 year ago
parent
commit
67a72fb6cd
1 changed files with 8 additions and 1 deletions
  1. 8 1
      components/dp/core/src/wlan_dp_bus_bandwidth.c

+ 8 - 1
components/dp/core/src/wlan_dp_bus_bandwidth.c

@@ -225,13 +225,20 @@ bbm_get_bus_bw_level_vote(struct wlan_dp_intf *dp_intf,
 			break;
 
 		/*
+		 * If the tput levels are between mid to high range, then
+		 * apply next SNOC voting level BUS_BW_LEVEL_5 which maps
+		 * to PLD_BUS_WIDTH_LOW_LATENCY.
+		 *
 		 * NDI dot11mode is currently hardcoded to 11AC in driver and
 		 * since the bus bw levels in table do not differ between 11AC
 		 * and 11AX, using max supported mode instead. Dot11mode of the
 		 * peers are not saved in driver and legacy modes are not
 		 * supported in NAN.
 		 */
-		return (*lkp_table)[QCA_WLAN_802_11_MODE_11AX][tput_level];
+		if (tput_level <= TPUT_LEVEL_HIGH)
+			return BUS_BW_LEVEL_5;
+		else
+			return (*lkp_table)[QCA_WLAN_802_11_MODE_11AX][tput_level];
 	default:
 		break;
 	}