瀏覽代碼

qcacld-3.0: Move ifdef CONFIG_VDEV_SM outside functions in sap

Moves ifdef CONFIG_VDEV_SM outside functions in sap module.

Change-Id: I141d86293ca61d29cc2e6d47a7b988eb6e127950
CRs-Fixed: 2363650
Abhishek Singh 6 年之前
父節點
當前提交
f27d517553
共有 4 個文件被更改,包括 333 次插入261 次删除
  1. 299 238
      core/sap/src/sap_fsm.c
  2. 0 2
      core/sap/src/sap_fsm_ext.h
  3. 0 2
      core/sap/src/sap_internal.h
  4. 34 19
      core/sap/src/sap_module.c

+ 299 - 238
core/sap/src/sap_fsm.c

@@ -1903,16 +1903,9 @@ static QDF_STATUS wlansap_update_pre_cac_end(struct sap_context *sap_context,
 	mac->sap.SapDfsInfo.sap_radar_found_status = false;
 	sap_context->fsm_state = SAP_STARTED;
 
-#ifndef CONFIG_VDEV_SM
 	QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-		  "In %s, pre cac end notify on %d: from state %s => %s",
-		  __func__, intf, "SAP_DFS_CAC_WAIT", "SAP_STARTED");
-#else
-	QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-		  "In %s, pre cac end notify on %d: from state %s => %s",
-		  __func__, intf, "SAP_STARTING", "SAP_STARTED");
-#endif
-
+		  "In %s, pre cac end notify on %d: move to state SAP_STARTED",
+		  __func__, intf);
 	qdf_status = sap_signal_hdd_event(sap_context,
 			NULL, eSAP_DFS_PRE_CAC_END,
 			(void *)eSAP_STATUS_SUCCESS);
@@ -2176,6 +2169,56 @@ sap_goto_starting(struct sap_context *sap_ctx,
 	return qdf_status;
 }
 
+/**
+ * sap_fsm_cac_start() - start cac wait timer
+ * @sap_ctx: SAP context
+ * @mac_ctx: global MAC context
+ * @mac_handle: Opaque handle to the global MAC context
+ *
+ * Return: QDF_STATUS
+ */
+#ifdef CONFIG_VDEV_SM
+static QDF_STATUS sap_fsm_cac_start(struct sap_context *sap_ctx,
+				    struct mac_context *mac_ctx,
+				    mac_handle_t mac_handle)
+{
+	sap_ctx->fsm_state = SAP_STARTING;
+
+	QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
+		  FL("Move sap state to SAP_STARTING"));
+	if (!mac_ctx->sap.SapDfsInfo.is_dfs_cac_timer_running) {
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
+			  FL("sapdfs: starting dfs cac timer on sapctx[%pK]"),
+			  sap_ctx);
+		sap_start_dfs_cac_timer(sap_ctx);
+	}
+
+	return sap_cac_start_notify(mac_handle);
+}
+#else
+static QDF_STATUS sap_fsm_cac_start(struct sap_context *sap_ctx,
+				    struct mac_context *mac_ctx,
+				    mac_handle_t mac_handle)
+{
+	/*
+	 * No need of state check here, caller is expected to perform
+	 * the checks before sending the event
+	 */
+	sap_ctx->fsm_state = SAP_DFS_CAC_WAIT;
+
+	QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
+		  FL("Move sap state to SAP_DFS_CAC_WAIT"));
+	if (!mac_ctx->sap.SapDfsInfo.is_dfs_cac_timer_running) {
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
+			  FL("sapdfs: starting dfs cac timer on sapctx[%pK]"),
+			  sap_ctx);
+		sap_start_dfs_cac_timer(sap_ctx);
+	}
+
+	return sap_cac_start_notify(mac_handle);
+}
+#endif
+
 /**
  * sap_fsm_state_init() - utility function called from sap fsm
  * @sap_ctx: SAP context
@@ -2224,39 +2267,141 @@ sap_fsm_state_init(struct sap_context *sap_ctx,
 				  QDF_TRACE_LEVEL_ERROR,
 				  FL("sap_goto_starting failed"));
 	} else if (msg == eSAP_DFS_CHANNEL_CAC_START) {
+		qdf_status = sap_fsm_cac_start(sap_ctx, mac_ctx, mac_handle);
+	} else {
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
+			  FL("in state %s, event msg %d"),
+			  "SAP_INIT", msg);
+	}
+
+exit:
+	return qdf_status;
+}
+
+/**
+ * sap_fsm_handle_radar_during_cac() - uhandle radar event during cac
+ * @sap_ctx: SAP context
+ * @mac_ctx: global MAC context
+ *
+ * Return: QDF_STATUS
+ */
+static QDF_STATUS sap_fsm_handle_radar_during_cac(struct sap_context *sap_ctx,
+						  struct mac_context *mac_ctx)
+{
+	uint8_t intf;
+
+	if (mac_ctx->sap.SapDfsInfo.target_channel) {
+		wlan_reg_set_channel_params(mac_ctx->pdev,
+				    mac_ctx->sap.SapDfsInfo.target_channel, 0,
+				    &sap_ctx->ch_params);
+	} else {
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
+			  FL("Invalid target channel %d"),
+			  mac_ctx->sap.SapDfsInfo.target_channel);
+		return QDF_STATUS_E_FAILURE;
+	}
+
+	for (intf = 0; intf < SAP_MAX_NUM_SESSION; intf++) {
+		struct sap_context *t_sap_ctx;
+		struct csr_roam_profile *profile;
+
+		t_sap_ctx = mac_ctx->sap.sapCtxList[intf].sap_context;
+		if (((QDF_SAP_MODE ==
+		      mac_ctx->sap.sapCtxList[intf].sapPersona) ||
+		     (QDF_P2P_GO_MODE ==
+		      mac_ctx->sap.sapCtxList[intf].sapPersona)) &&
+		    t_sap_ctx && t_sap_ctx->fsm_state != SAP_INIT) {
+			profile = &t_sap_ctx->csr_roamProfile;
+			if (!wlan_reg_is_passive_or_disable_ch(
+				mac_ctx->pdev,
+				profile->operationChannel))
+			continue;
+			t_sap_ctx->is_chan_change_inprogress = true;
+			/*
+			 * eSAP_DFS_CHANNEL_CAC_RADAR_FOUND:
+			 * A Radar is found on current DFS Channel
+			 * while in CAC WAIT period So, do a channel
+			 * switch to randomly selected	target channel.
+			 * Send the Channel change message to SME/PE.
+			 * sap_radar_found_status is set to 1
+			 */
+			wlansap_channel_change_request(t_sap_ctx,
+				mac_ctx->sap.SapDfsInfo.target_channel);
+		}
+	}
+
+	return QDF_STATUS_SUCCESS;
+}
+
 #ifdef CONFIG_VDEV_SM
-		sap_ctx->fsm_state = SAP_STARTING;
-		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
-			  FL("from state SAP_INIT => SAP_STARTING"));
-#else
+static QDF_STATUS sap_fsm_state_dfs_cac_wait(struct sap_context *sap_ctx,
+					     ptWLAN_SAPEvent sap_event,
+					     struct mac_context *mac_ctx,
+					     mac_handle_t mac_handle)
+{
+	return QDF_STATUS_SUCCESS;
+}
+
+/**
+ * sap_fsm_handle_start_failure() - handle start failure or stop during cac wait
+ * @sap_ctx: SAP context
+ * @msg: event msg
+ * @mac_handle: Opaque handle to the global MAC context
+ *
+ * Return: QDF_STATUS
+ */
+static QDF_STATUS sap_fsm_handle_start_failure(struct sap_context *sap_ctx,
+					       uint32_t msg,
+					       mac_handle_t mac_handle)
+{
+	QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
+
+	if (msg == eSAP_HDD_STOP_INFRA_BSS &&
+	    ((wlan_vdev_mlme_get_state(sap_ctx->vdev) ==
+	      WLAN_VDEV_S_DFS_CAC_WAIT) ||
+	     (wlan_vdev_mlme_get_substate(sap_ctx->vdev) ==
+	      WLAN_VDEV_SS_START_RESTART_PROGRESS))) {
+		/* Transition from SAP_STARTING to SAP_STOPPING */
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_HIGH,
+			  FL("In cac wait state from state %s => %s"),
+			  "SAP_STARTING", "SAP_STOPPING");
 		/*
-		 * No need of state check here, caller is expected to perform
-		 * the checks before sending the event
+		 * Stop the CAC timer only in following conditions
+		 * single AP: if there is a single AP then stop timer
+		 * mulitple APs: incase of multiple APs, make sure that
+		 * all APs are down.
 		 */
-		sap_ctx->fsm_state = SAP_DFS_CAC_WAIT;
-
-		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
-			FL("from state SAP_INIT => SAP_DFS_CAC_WAIT"));
-#endif
-		if (mac_ctx->sap.SapDfsInfo.is_dfs_cac_timer_running != true) {
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
-			    FL("sapdfs: starting dfs cac timer on sapctx[%pK]"),
-			    sap_ctx);
-			sap_start_dfs_cac_timer(sap_ctx);
+		if (!sap_find_valid_concurrent_session(mac_handle)) {
+			QDF_TRACE(QDF_MODULE_ID_SAP,
+				  QDF_TRACE_LEVEL_INFO_MED,
+				  FL("sapdfs: no sessions are valid, stopping timer"));
+			sap_stop_dfs_cac_timer(sap_ctx);
 		}
 
-		qdf_status = sap_cac_start_notify(mac_handle);
+		sap_ctx->fsm_state = SAP_STOPPING;
+		qdf_status = sap_goto_stopping(sap_ctx);
 	} else {
-		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-			  FL("in state %s, event msg %d"),
-			  "SAP_INIT", msg);
+		/*
+		 * Transition from SAP_STARTING to SAP_INIT
+		 * (both without substates)
+		 */
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_HIGH,
+			  FL("from state %s => %s"),
+			  "SAP_STARTING", "SAP_INIT");
+
+		/* Advance outer statevar */
+		sap_ctx->fsm_state = SAP_INIT;
+		qdf_status = sap_signal_hdd_event(sap_ctx, NULL,
+						  eSAP_START_BSS_EVENT,
+						  (void *)
+						  eSAP_STATUS_FAILURE);
+		qdf_status = sap_goto_init(sap_ctx);
 	}
 
-exit:
 	return qdf_status;
 }
+#else
 
-#ifndef CONFIG_VDEV_SM
 /**
  * sap_fsm_state_dfs_cac_wait() - utility function called from sap fsm
  * @sap_ctx: SAP context
@@ -2285,49 +2430,7 @@ static QDF_STATUS sap_fsm_state_dfs_cac_wait(struct sap_context *sap_ctx,
 			sap_start_dfs_cac_timer(sap_ctx);
 		qdf_status = sap_cac_start_notify(mac_handle);
 	} else if (msg == eSAP_DFS_CHANNEL_CAC_RADAR_FOUND) {
-		uint8_t intf;
-
-		if (mac_ctx->sap.SapDfsInfo.target_channel) {
-			wlan_reg_set_channel_params(mac_ctx->pdev,
-				mac_ctx->sap.SapDfsInfo.target_channel, 0,
-				&sap_ctx->ch_params);
-		} else {
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-				FL("Invalid target channel %d"),
-				mac_ctx->sap.SapDfsInfo.target_channel);
-			return qdf_status;
-		}
-
-		for (intf = 0; intf < SAP_MAX_NUM_SESSION; intf++) {
-			struct sap_context *t_sap_ctx;
-			struct csr_roam_profile *profile;
-
-			t_sap_ctx = mac_ctx->sap.sapCtxList[intf].sap_context;
-			if (((QDF_SAP_MODE ==
-				 mac_ctx->sap.sapCtxList[intf].sapPersona) ||
-			     (QDF_P2P_GO_MODE ==
-				mac_ctx->sap.sapCtxList[intf].sapPersona)) &&
-			    t_sap_ctx != NULL &&
-			    t_sap_ctx->fsm_state != SAP_INIT) {
-				profile = &t_sap_ctx->csr_roamProfile;
-				if (!wlan_reg_is_passive_or_disable_ch(
-						mac_ctx->pdev,
-						profile->operationChannel))
-					continue;
-				t_sap_ctx->is_chan_change_inprogress = true;
-				/*
-				 * eSAP_DFS_CHANNEL_CAC_RADAR_FOUND:
-				 * A Radar is found on current DFS Channel
-				 * while in CAC WAIT period So, do a channel
-				 * switch to randomly selected  target channel.
-				 * Send the Channel change message to SME/PE.
-				 * sap_radar_found_status is set to 1
-				 */
-				wlansap_channel_change_request(
-					t_sap_ctx,
-					mac_ctx->sap.SapDfsInfo.target_channel);
-			}
-		}
+		qdf_status = sap_fsm_handle_radar_during_cac(sap_ctx, mac_ctx);
 	} else if (msg == eSAP_DFS_CHANNEL_CAC_END) {
 		qdf_status = sap_cac_end_notify(mac_handle, roam_info);
 	} else if (msg == eSAP_HDD_STOP_INFRA_BSS) {
@@ -2359,6 +2462,24 @@ static QDF_STATUS sap_fsm_state_dfs_cac_wait(struct sap_context *sap_ctx,
 
 	return qdf_status;
 }
+
+static QDF_STATUS sap_fsm_handle_start_failure(struct sap_context *sap_ctx,
+					       uint32_t msg,
+					       mac_handle_t mac_handle)
+{
+	/*
+	 * Transition from SAP_STARTING to SAP_INIT
+	 * (both without substates)
+	 */
+	QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_HIGH,
+		  FL("from state %s => %s"),
+		  "SAP_STARTING", "SAP_INIT");
+		/* Advance outer statevar */
+	sap_ctx->fsm_state = SAP_INIT;
+	sap_signal_hdd_event(sap_ctx, NULL, eSAP_START_BSS_EVENT,
+			     (void *)eSAP_STATUS_FAILURE);
+	return sap_goto_init(sap_ctx);
+}
 #endif
 
 /**
@@ -2439,23 +2560,8 @@ static QDF_STATUS sap_fsm_state_starting(struct sap_context *sap_ctx,
 				QDF_TRACE(QDF_MODULE_ID_SAP,
 					  QDF_TRACE_LEVEL_INFO_HIGH,
 					  FL("start cac timer"));
-#ifdef CONFIG_VDEV_SM
-				sap_ctx->fsm_state = SAP_STARTING;
-#else
-				/* Move the device in CAC_WAIT_STATE */
-				sap_ctx->fsm_state = SAP_DFS_CAC_WAIT;
-#endif
-				/*
-				 * Need to stop the OS transmit queues,
-				 * so that no traffic can flow down the stack
-				 */
-
-				/* Start CAC wait timer */
-				if (sap_dfs_info->is_dfs_cac_timer_running !=
-									true)
-					sap_start_dfs_cac_timer(sap_ctx);
-				qdf_status = sap_cac_start_notify(mac_handle);
-
+				qdf_status = sap_fsm_cac_start(sap_ctx, mac_ctx,
+							       mac_handle);
 			} else {
 				QDF_TRACE(QDF_MODULE_ID_SAP,
 					  QDF_TRACE_LEVEL_INFO_HIGH,
@@ -2464,54 +2570,9 @@ static QDF_STATUS sap_fsm_state_starting(struct sap_context *sap_ctx,
 			}
 		}
 	} else if (msg == eSAP_MAC_START_FAILS ||
-			msg == eSAP_HDD_STOP_INFRA_BSS) {
-
-#ifdef CONFIG_VDEV_SM
-		if (msg == eSAP_HDD_STOP_INFRA_BSS &&
-		    ((wlan_vdev_mlme_get_state(sap_ctx->vdev) ==
-		      WLAN_VDEV_S_DFS_CAC_WAIT) ||
-		     (wlan_vdev_mlme_get_substate(sap_ctx->vdev) ==
-		      WLAN_VDEV_SS_START_RESTART_PROGRESS))) {
-
-			/* Transition from SAP_STARTING to SAP_STOPPING */
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_HIGH,
-				  FL("In cac wait state from state %s => %s"),
-				  "SAP_STARTING", "SAP_STOPPING");
-			/*
-			 * Stop the CAC timer only in following conditions
-			 * single AP: if there is a single AP then stop timer
-			 * mulitple APs: incase of multiple APs, make sure that
-			 *               all APs are down.
-			 */
-			if (!sap_find_valid_concurrent_session(mac_handle)) {
-				QDF_TRACE(QDF_MODULE_ID_SAP,
-					  QDF_TRACE_LEVEL_INFO_MED,
-					  FL("sapdfs: no sessions are valid, stopping timer"));
-				sap_stop_dfs_cac_timer(sap_ctx);
-			}
-
-			sap_ctx->fsm_state = SAP_STOPPING;
-			qdf_status = sap_goto_stopping(sap_ctx);
-		} else
-#endif
-		{
-			/*
-			 * Transition from SAP_STARTING to SAP_INIT
-			 * (both without substates)
-			 */
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_HIGH,
-				  FL("from state %s => %s"),
-				  "SAP_STARTING", "SAP_INIT");
-
-			/* Advance outer statevar */
-			sap_ctx->fsm_state = SAP_INIT;
-			qdf_status = sap_signal_hdd_event(sap_ctx, NULL,
-							  eSAP_START_BSS_EVENT,
-							  (void *)
-							  eSAP_STATUS_FAILURE);
-			qdf_status = sap_goto_init(sap_ctx);
-		}
-		/* Close the SME session */
+		 msg == eSAP_HDD_STOP_INFRA_BSS) {
+			qdf_status = sap_fsm_handle_start_failure(sap_ctx, msg,
+								  mac_handle);
 	} else if (msg == eSAP_OPERATING_CHANNEL_CHANGED) {
 		/* The operating channel has changed, update hostapd */
 		sap_ctx->channel =
@@ -2527,57 +2588,11 @@ static QDF_STATUS sap_fsm_state_starting(struct sap_context *sap_ctx,
 		qdf_status = sap_signal_hdd_event(sap_ctx, roam_info,
 				  eSAP_START_BSS_EVENT,
 				  (void *)eSAP_STATUS_SUCCESS);
-	} else
-#ifdef CONFIG_VDEV_SM
-	if (msg == eSAP_DFS_CHANNEL_CAC_RADAR_FOUND) {
-		uint8_t intf;
-
-		if (mac_ctx->sap.SapDfsInfo.target_channel) {
-			wlan_reg_set_channel_params(mac_ctx->pdev,
-						    mac_ctx->sap.SapDfsInfo.
-						    target_channel, 0,
-						    &sap_ctx->ch_params);
-		} else {
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-				  FL("Invalid target channel %d"),
-				  mac_ctx->sap.SapDfsInfo.target_channel);
-			return qdf_status;
-		}
-
-		for (intf = 0; intf < SAP_MAX_NUM_SESSION; intf++) {
-			struct sap_context *t_sap_ctx;
-			struct csr_roam_profile *profile;
-
-			t_sap_ctx = mac_ctx->sap.sapCtxList[intf].sap_context;
-			if (((QDF_SAP_MODE ==
-				 mac_ctx->sap.sapCtxList[intf].sapPersona) ||
-			     (QDF_P2P_GO_MODE ==
-				mac_ctx->sap.sapCtxList[intf].sapPersona)) &&
-			    t_sap_ctx && t_sap_ctx->fsm_state != SAP_INIT) {
-				profile = &t_sap_ctx->csr_roamProfile;
-				if (!wlan_reg_is_passive_or_disable_ch(
-						mac_ctx->pdev,
-						profile->operationChannel))
-					continue;
-				t_sap_ctx->is_chan_change_inprogress = true;
-				/*
-				 * eSAP_DFS_CHANNEL_CAC_RADAR_FOUND:
-				 * A Radar is found on current DFS Channel
-				 * while in CAC WAIT period So, do a channel
-				 * switch to randomly selected  target channel.
-				 * Send the Channel change message to SME/PE.
-				 * sap_radar_found_status is set to 1
-				 */
-				wlansap_channel_change_request(
-					t_sap_ctx,
-					mac_ctx->sap.SapDfsInfo.target_channel);
-			}
-		}
+	} else if (msg == eSAP_DFS_CHANNEL_CAC_RADAR_FOUND) {
+		qdf_status = sap_fsm_handle_radar_during_cac(sap_ctx, mac_ctx);
 	} else if (msg == eSAP_DFS_CHANNEL_CAC_END) {
 		qdf_status = sap_cac_end_notify(mac_handle, roam_info);
-	} else
-#endif
-	{
+	} else {
 		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
 			  FL("in state %s, invalid event msg %d"),
 			  "SAP_STARTING", msg);
@@ -2586,6 +2601,65 @@ static QDF_STATUS sap_fsm_state_starting(struct sap_context *sap_ctx,
 	return qdf_status;
 }
 
+#ifdef CONFIG_VDEV_SM
+/**
+ * sap_fsm_send_csa_restart_req() - send csa start event
+ * @mac_ctx: mac ctx
+ * @sap_ctx: SAP context
+ *
+ * Return: QDF_STATUS
+ */
+static inline QDF_STATUS
+sap_fsm_send_csa_restart_req(struct mac_context *mac_ctx,
+			     struct sap_context *sap_ctx)
+{
+	return sme_csa_restart(mac_ctx, sap_ctx->sessionId);
+}
+
+static inline QDF_STATUS
+sap_handle_csa_anouncement_start(struct mac_context *mac_ctx,
+				 struct sap_context *sap_ctx)
+{
+	return QDF_STATUS_SUCCESS;
+}
+#else
+static inline QDF_STATUS
+sap_fsm_send_csa_restart_req(struct mac_context *mac_ctx,
+			     struct sap_context *sap_ctx)
+{
+	return wlansap_dfs_send_csa_ie_request(sap_ctx);
+}
+
+/**
+ * sap_handle_csa_anouncement_start() - start csa IE announcement request
+ * @mac_ctx: mac ctx
+ * @sap_ctx: SAP context
+ *
+ * Return: QDF_STATUS
+ */
+static inline QDF_STATUS
+sap_handle_csa_anouncement_start(struct mac_context *mac_ctx,
+				 struct sap_context *sap_ctx)
+{
+	enum QDF_OPMODE persona;
+	QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
+
+	if (!sap_ctx) {
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
+			  FL("Invalid sap_ctx"));
+		return QDF_STATUS_E_FAILURE;
+	}
+	persona = mac_ctx->sap.sapCtxList[sap_ctx->sessionId].sapPersona;
+	QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
+		  FL("app trigger chan switch: mode:%d vdev:%d"),
+		  persona, sap_ctx->sessionId);
+	if ((QDF_SAP_MODE == persona) || (QDF_P2P_GO_MODE == persona))
+		qdf_status = wlansap_dfs_send_csa_ie_request(sap_ctx);
+
+	return qdf_status;
+}
+#endif
+
 /**
  * sap_fsm_state_started() - utility function called from sap fsm
  * @sap_ctx: SAP context
@@ -2650,39 +2724,14 @@ static QDF_STATUS sap_fsm_state_started(struct sap_context *sap_ctx,
 					  QDF_TRACE_LEVEL_INFO_MED,
 					  FL("sapdfs: Sending CSAIE for sapctx[%pK]"),
 					  temp_sap_ctx);
-#ifdef CONFIG_VDEV_SM
-				qdf_status = sme_csa_restart(mac_ctx,
-						       temp_sap_ctx->sessionId);
-#else
-
 				qdf_status =
-					wlansap_dfs_send_csa_ie_request(temp_sap_ctx);
-#endif
+				   sap_fsm_send_csa_restart_req(mac_ctx,
+								temp_sap_ctx);
 			}
 		}
-	}
-#ifndef CONFIG_VDEV_SM
-	else if (eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START == msg) {
-		enum QDF_OPMODE persona;
-
-		if (!sap_ctx) {
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-					FL("Invalid sap_ctx"));
-			return qdf_status;
-		}
-
-		persona = mac_ctx->sap.sapCtxList[sap_ctx->sessionId].
-								sapPersona;
-
-		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_MED,
-				FL("app trigger chan switch: mode:%d vdev:%d"),
-				persona, sap_ctx->sessionId);
-
-		if ((QDF_SAP_MODE == persona) || (QDF_P2P_GO_MODE == persona))
-			qdf_status = wlansap_dfs_send_csa_ie_request(sap_ctx);
-	}
-#endif
-	else {
+	} else if (msg == eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START) {
+		qdf_status = sap_handle_csa_anouncement_start(mac_ctx, sap_ctx);
+	} else {
 		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
 			  FL("in state %s, invalid event msg %d"),
 			  "SAP_STARTED", msg);
@@ -2771,12 +2820,10 @@ QDF_STATUS sap_fsm(struct sap_context *sap_ctx, ptWLAN_SAPEvent sap_event)
 						mac_ctx, mac_handle);
 		break;
 
-#ifndef CONFIG_VDEV_SM
 	case SAP_DFS_CAC_WAIT:
 		qdf_status = sap_fsm_state_dfs_cac_wait(sap_ctx, sap_event,
 							mac_ctx, mac_handle);
 		break;
-#endif
 
 	case SAP_STARTING:
 		qdf_status = sap_fsm_state_starting(sap_ctx, sap_event,
@@ -3555,6 +3602,35 @@ static int sap_stop_dfs_cac_timer(struct sap_context *sap_ctx)
 	return 0;
 }
 
+#ifdef CONFIG_VDEV_SM
+/**
+ * sap_move_to_cac_wait_state() - move to cac wait state
+ * @sap_ctx: SAP context
+ *
+ * Return: QDF_STATUS
+ */
+static QDF_STATUS sap_move_to_cac_wait_state(struct sap_context *sap_ctx)
+{
+	QDF_STATUS status;
+
+	status =
+	     wlan_vdev_mlme_sm_deliver_evt(sap_ctx->vdev,
+					   WLAN_VDEV_SM_EV_DFS_CAC_WAIT,
+					   0, NULL);
+	if (QDF_IS_STATUS_ERROR(status))
+		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
+			  "%s: failed to post WLAN_VDEV_SM_EV_DFS_CAC_WAIT",
+			  __func__);
+
+	return status;
+}
+#else
+static inline QDF_STATUS sap_move_to_cac_wait_state(struct sap_context *sap_ctx)
+{
+	return QDF_STATUS_SUCCESS;
+}
+#endif
+
 /*
  * Function to start the DFS CAC Timer
  * when SAP is started on a DFS channel
@@ -3582,16 +3658,8 @@ static int sap_start_dfs_cac_timer(struct sap_context *sap_ctx)
 		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_DEBUG,
 			  "%s: cac timer offloaded to firmware", __func__);
 		mac->sap.SapDfsInfo.is_dfs_cac_timer_running = true;
-#ifdef CONFIG_VDEV_SM
-		status =
-		     wlan_vdev_mlme_sm_deliver_evt(sap_ctx->vdev,
-						   WLAN_VDEV_SM_EV_DFS_CAC_WAIT,
-						   0, NULL);
-		if (QDF_IS_STATUS_ERROR(status))
-			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-				  "%s: failed to post WLAN_VDEV_SM_EV_DFS_CAC_WAIT",
-				  __func__);
-#endif
+		sap_move_to_cac_wait_state(sap_ctx);
+
 		return 1;
 	}
 
@@ -3620,18 +3688,11 @@ static int sap_start_dfs_cac_timer(struct sap_context *sap_ctx)
 	}
 
 	mac->sap.SapDfsInfo.is_dfs_cac_timer_running = true;
-#ifdef CONFIG_VDEV_SM
-	status = wlan_vdev_mlme_sm_deliver_evt(sap_ctx->vdev,
-					       WLAN_VDEV_SM_EV_DFS_CAC_WAIT,
-					       0, NULL);
+	status = sap_move_to_cac_wait_state(sap_ctx);
 	if (QDF_IS_STATUS_ERROR(status)) {
-		QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
-			  "%s: failed to post WLAN_VDEV_SM_EV_DFS_CAC_WAIT",
-			  __func__);
 		qdf_mc_timer_stop(&mac->sap.SapDfsInfo.sap_dfs_cac_timer);
 		goto destroy_timer;
 	}
-#endif
 	return 0;
 
 destroy_timer:

+ 0 - 2
core/sap/src/sap_fsm_ext.h

@@ -42,9 +42,7 @@ typedef enum {
 	eSAP_DFS_CHANNEL_CAC_END,
 	eSAP_DFS_CHNL_SWITCH_ANNOUNCEMENT_START,
 	eSAP_OPERATING_CHANNEL_CHANGED,
-#ifndef CONFIG_VDEV_SM
 	eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START,
-#endif
 	eSAP_NO_MSG
 } eSapMsg_t;
 

+ 0 - 2
core/sap/src/sap_internal.h

@@ -88,9 +88,7 @@ extern "C" {
  */
 enum sap_fsm_state {
 	SAP_INIT,
-#ifndef CONFIG_VDEV_SM
 	SAP_DFS_CAC_WAIT,
-#endif
 	SAP_STARTING,
 	SAP_STARTED,
 	SAP_STOPPING

+ 34 - 19
core/sap/src/sap_module.c

@@ -1201,6 +1201,39 @@ wlansap_update_csa_channel_params(struct sap_context *sap_context,
 	return QDF_STATUS_SUCCESS;
 }
 
+/**
+ * sap_start_csa_restart() - send csa start event
+ * @mac_ctx: mac ctx
+ * @sap_ctx: SAP context
+ *
+ * Return: QDF_STATUS
+ */
+#ifdef CONFIG_VDEV_SM
+static inline void sap_start_csa_restart(struct mac_context *mac,
+					 struct sap_context *sap_ctx)
+{
+	sme_csa_restart(mac, sap_ctx->sessionId);
+}
+#else
+static void sap_start_csa_restart(struct mac_context *mac,
+				  struct sap_context *sap_ctx)
+{
+	tWLAN_SAPEvent sap_event;
+
+	/*
+	 * Post the eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START
+	 * to SAP state machine to process the channel
+	 * request with CSA IE set in the beacons.
+	 */
+	sap_event.event =
+		eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START;
+	sap_event.params = 0;
+	sap_event.u1 = 0;
+	sap_event.u2 = 0;
+
+	sap_fsm(sap_ctx, &sap_event);
+}
+#endif
 /**
  * wlansap_set_channel_change_with_csa() - Set channel change with CSA
  * @sapContext: Pointer to SAP context
@@ -1220,9 +1253,6 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sapContext,
 					       enum phy_ch_width target_bw,
 					       bool strict)
 {
-#ifndef CONFIG_VDEV_SM
-	tWLAN_SAPEvent sapEvent;
-#endif
 	struct mac_context *mac;
 	mac_handle_t mac_handle;
 	bool valid;
@@ -1351,22 +1381,7 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sapContext,
 			mac->sap.SapDfsInfo.cac_state =
 					eSAP_DFS_DO_NOT_SKIP_CAC;
 			sap_cac_reset_notify(mac_handle);
-#ifdef CONFIG_VDEV_SM
-			sme_csa_restart(mac, sapContext->sessionId);
-#else
-			/*
-			 * Post the eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START
-			 * to SAP state machine to process the channel
-			 * request with CSA IE set in the beacons.
-			 */
-			sapEvent.event =
-				eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START;
-			sapEvent.params = 0;
-			sapEvent.u1 = 0;
-			sapEvent.u2 = 0;
-
-			sap_fsm(sapContext, &sapEvent);
-#endif
+			sap_start_csa_restart(mac, sapContext);
 		} else {
 			QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
 				  "%s: Failed to request Channel Change, since SAP is not in SAP_STARTED state",