Explorar el Código

qcacld-3.0: Convert legacy chan ID usage to chan freq

Modify the following API's code and parameters to make
sure it is using frequency instead of channel ID:
   sme_get_connected_roaming_vdev_band

Change enum band_info band field in struct set_pcl_req
to uint32_t band_mask

Change-Id: I8ad6fc2676c2306043aa9415eefb2b89d8c49a4d
CRs-Fixed: 2555041
bings hace 5 años
padre
commit
2e8c62b82d
Se han modificado 3 ficheros con 20 adiciones y 17 borrados
  1. 2 2
      core/mac/inc/sir_api.h
  2. 16 13
      core/sme/src/common/sme_api.c
  3. 2 2
      core/wma/src/wma_main.c

+ 2 - 2
core/mac/inc/sir_api.h

@@ -5682,11 +5682,11 @@ struct sir_sae_msg {
 /**
  * struct set_pcl_req - Request message to set the PCL
  * @chan_weights: PCL channel weights
- * @band: Supported band
+ * @band_mask: Supported band mask
  */
 struct set_pcl_req {
 	struct wmi_pcl_chan_weights chan_weights;
-	enum band_info band;
+	uint32_t band_mask;
 };
 
 #ifdef WLAN_FEATURE_MOTION_DETECTION

+ 16 - 13
core/sme/src/common/sme_api.c

@@ -12214,28 +12214,31 @@ QDF_STATUS sme_reset_rssi_threshold_breached_cb(mac_handle_t mac_handle)
 	return sme_set_rssi_threshold_breached_cb(mac_handle, NULL);
 }
 
-static enum band_info sme_get_connected_roaming_vdev_band(void)
+/**
+ * sme_get_connected_roaming_vdev_band_mask() - get connected vdev band mask
+ *
+ * Return: reg wifi band mask
+ */
+static uint32_t sme_get_connected_roaming_vdev_band_mask(void)
 {
-	enum band_info band = BAND_ALL;
+	uint32_t band_mask = REG_BAND_MASK_ALL;
 	struct mac_context *mac = sme_get_mac_context();
 	struct csr_roam_session *session;
-	uint8_t session_id, channel;
+	uint8_t session_id;
 
 	if (!mac) {
 		sme_debug("MAC Context is NULL");
-		return band;
+		return band_mask;
 	}
 	session_id = csr_get_roam_enabled_sta_sessionid(mac);
 	if (session_id != WLAN_UMAC_VDEV_ID_MAX) {
 		session = CSR_GET_SESSION(mac, session_id);
-		channel = wlan_reg_freq_to_chan(
-					mac->pdev,
-					session->connectedProfile.op_freq);
-		band = csr_get_rf_band(channel);
-		return band;
+		band_mask = BIT(wlan_reg_freq_to_band(
+					session->connectedProfile.op_freq));
+		return band_mask;
 	}
 
-	return band;
+	return band_mask;
 }
 
 /*
@@ -12268,10 +12271,10 @@ QDF_STATUS sme_pdev_set_pcl(struct policy_mgr_pcl_list *msg)
 	if (!req_msg)
 		return QDF_STATUS_E_NOMEM;
 
-	req_msg->band = BAND_ALL;
+	req_msg->band_mask = REG_BAND_MASK_ALL;
 	if (CSR_IS_ROAM_INTRA_BAND_ENABLED(mac)) {
-		req_msg->band = sme_get_connected_roaming_vdev_band();
-		sme_debug("Connected STA band %d", req_msg->band);
+		req_msg->band_mask = sme_get_connected_roaming_vdev_band_mask();
+		sme_debug("Connected STA band mask%d", req_msg->band_mask);
 	}
 	for (i = 0; i < msg->pcl_len; i++) {
 		req_msg->chan_weights.pcl_list[i] =  msg->pcl_list[i];

+ 2 - 2
core/wma/src/wma_main.c

@@ -9079,13 +9079,13 @@ QDF_STATUS wma_send_pdev_set_pcl_cmd(tp_wma_handle wma_handle,
 				msg->chan_weights.weighed_valid_list[i]);
 		/* Dont allow roaming on 2G when 5G_ONLY configured */
 		if (((wma_handle->bandcapability == BAND_5G) ||
-		    (msg->band == BAND_5G)) &&
+		    (msg->band_mask == BIT(REG_BAND_5G))) &&
 		    (WLAN_REG_IS_24GHZ_CH_FREQ(
 		    msg->chan_weights.saved_chan_list[i]))) {
 			msg->chan_weights.weighed_valid_list[i] =
 				WEIGHT_OF_DISALLOWED_CHANNELS;
 		}
-		if ((msg->band == BAND_2G) &&
+		if (msg->band_mask == BIT(REG_BAND_2G) &&
 		    WLAN_REG_IS_5GHZ_CH_FREQ(
 		    msg->chan_weights.saved_chan_list[i]))
 			msg->chan_weights.weighed_valid_list[i] =