Parcourir la source

qcacld-3.0: Migrate bus_bw to qdf_periodic_work

The bus bandwidth compute is a periodic activity that calculates the
required DDR bandwidth needed by the wlan driver. Currently it is
implemented using a spinlock, a flag, a timer, and a kernel work.
qdf_periodic_work effectively implements the same behavior, so use it
instead.

Change-Id: I1c71a1eb430317d2ac167b7c1ba94fb190deef4a
CRs-Fixed: 2410047
Dustin Brown il y a 6 ans
Parent
commit
a20bad5218
2 fichiers modifiés avec 30 ajouts et 104 suppressions
  1. 6 6
      core/hdd/inc/wlan_hdd_main.h
  2. 24 98
      core/hdd/src/wlan_hdd_main.c

+ 6 - 6
core/hdd/inc/wlan_hdd_main.h

@@ -98,6 +98,10 @@
 #include "wma_sar_public_structs.h"
 #include "wlan_mlme_ucfg_api.h"
 
+#ifdef MSM_PLATFORM
+#include "qdf_periodic_work.h"
+#endif
+
 /*
  * Preprocessor definitions and constants
  */
@@ -1576,6 +1580,7 @@ struct hdd_dynamic_mac {
  * struct hdd_context - hdd shared driver and psoc/device context
  * @psoc: object manager psoc context
  * @pdev: object manager pdev context
+ * @bus_bw_work: work for periodically computing DDR bus bandwidth requirements
  * @g_event_flags: a bitmap of hdd_driver_flags
  * @psoc_idle_timeout_work: delayed work for psoc idle shutdown
  * @dynamic_nss_chains_support: Per vdev dynamic nss chains update capability
@@ -1643,12 +1648,7 @@ struct hdd_context {
 	bool is_wiphy_suspended;
 
 #ifdef MSM_PLATFORM
-	/* DDR bus bandwidth compute timer
-	 */
-	qdf_timer_t bus_bw_timer;
-	bool bus_bw_timer_running;
-	qdf_spinlock_t bus_bw_timer_lock;
-	struct work_struct bus_bw_work;
+	struct qdf_periodic_work bus_bw_work;
 	int cur_vote_level;
 	spinlock_t bus_bw_lock;
 	int cur_rx_level;

+ 24 - 98
core/hdd/src/wlan_hdd_main.c

@@ -78,6 +78,7 @@
 #include <linux/compat.h>
 #include <linux/reboot.h>
 #ifdef MSM_PLATFORM
+#include "qdf_periodic_work.h"
 #include <soc/qcom/subsystem_restart.h>
 #endif
 #include <wlan_hdd_hostapd.h>
@@ -7893,10 +7894,8 @@ static void hdd_pld_request_bus_bandwidth(struct hdd_context *hdd_ctx,
 }
 
 #define HDD_BW_GET_DIFF(_x, _y) (unsigned long)((ULONG_MAX - (_y)) + (_x) + 1)
-static void __hdd_bus_bw_work_handler(struct work_struct *work)
+static void __hdd_bus_bw_work_handler(struct hdd_context *hdd_ctx)
 {
-	struct hdd_context *hdd_ctx = container_of(work, struct hdd_context,
-					bus_bw_work);
 	struct hdd_adapter *adapter = NULL, *con_sap_adapter = NULL;
 	uint64_t tx_packets = 0, rx_packets = 0;
 	uint64_t fwd_tx_packets = 0, fwd_rx_packets = 0;
@@ -7907,10 +7906,10 @@ static void __hdd_bus_bw_work_handler(struct work_struct *work)
 	uint32_t ipa_tx_packets = 0, ipa_rx_packets = 0;
 
 	if (wlan_hdd_validate_context(hdd_ctx))
-		return;
+		goto stop_work;
 
 	if (hdd_ctx->is_wiphy_suspended)
-		goto restart_timer;
+		return;
 
 	hdd_for_each_adapter(hdd_ctx, adapter) {
 		/*
@@ -7975,7 +7974,7 @@ static void __hdd_bus_bw_work_handler(struct work_struct *work)
 
 	if (!connected) {
 		hdd_err("bus bandwidth timer running in disconnected state");
-		return;
+		goto stop_work;
 	}
 
 	/* add intra bss forwarded tx and rx packets */
@@ -7999,77 +7998,43 @@ static void __hdd_bus_bw_work_handler(struct work_struct *work)
 
 	hdd_pld_request_bus_bandwidth(hdd_ctx, tx_packets, rx_packets);
 
-restart_timer:
-	/* ensure periodic timer should still be running before restarting it */
-	qdf_spinlock_acquire(&hdd_ctx->bus_bw_timer_lock);
-	if (hdd_ctx->bus_bw_timer_running)
-		qdf_timer_mod(&hdd_ctx->bus_bw_timer,
-			      hdd_ctx->config->bus_bw_compute_interval);
-	qdf_spinlock_release(&hdd_ctx->bus_bw_timer_lock);
-}
+	return;
 
-static void hdd_bus_bw_work_handler(struct work_struct *work)
-{
-	cds_ssr_protect(__func__);
-	__hdd_bus_bw_work_handler(work);
-	cds_ssr_unprotect(__func__);
+stop_work:
+	qdf_periodic_work_stop_async(&hdd_ctx->bus_bw_work);
 }
 
-/**
- * __hdd_bus_bw_cbk() - Bus bandwidth data structure callback.
- * @arg: Argument of timer function
- *
- * Schedule a workqueue in this function where all the processing is done.
- *
- * Return: None.
- */
-static void __hdd_bus_bw_cbk(void *arg)
+static void hdd_bus_bw_work_handler(void *context)
 {
-	struct hdd_context *hdd_ctx = (struct hdd_context *) arg;
+	struct wiphy *wiphy = context;
 
-	if (wlan_hdd_validate_context(hdd_ctx))
-		return;
-
-	schedule_work(&hdd_ctx->bus_bw_work);
-}
-
-/**
- * hdd_bus_bw_cbk() - Wrapper for bus bw callback for SSR protection.
- * @arg: Argument of timer function
- *
- * Return: None.
- */
-static void hdd_bus_bw_cbk(void *arg)
-{
 	cds_ssr_protect(__func__);
-	__hdd_bus_bw_cbk(arg);
+	__hdd_bus_bw_work_handler(wiphy_priv(wiphy));
 	cds_ssr_unprotect(__func__);
 }
 
 int hdd_bus_bandwidth_init(struct hdd_context *hdd_ctx)
 {
+	QDF_STATUS status;
+
 	hdd_enter();
 
 	spin_lock_init(&hdd_ctx->bus_bw_lock);
-	INIT_WORK(&hdd_ctx->bus_bw_work, hdd_bus_bw_work_handler);
-	hdd_ctx->bus_bw_timer_running = false;
-	qdf_spinlock_create(&hdd_ctx->bus_bw_timer_lock);
-	qdf_timer_init(NULL, &hdd_ctx->bus_bw_timer, hdd_bus_bw_cbk,
-		       (void *)hdd_ctx, QDF_TIMER_TYPE_SW);
+	status = qdf_periodic_work_create(&hdd_ctx->bus_bw_work,
+					  hdd_bus_bw_work_handler,
+					  hdd_ctx->wiphy);
 
 	hdd_exit();
 
-	return 0;
+	return qdf_status_to_os_return(status);
 }
 
 void hdd_bus_bandwidth_deinit(struct hdd_context *hdd_ctx)
 {
 	hdd_enter();
 
-	QDF_BUG(!hdd_ctx->bus_bw_timer_running);
-
-	qdf_timer_free(&hdd_ctx->bus_bw_timer);
-	qdf_spinlock_destroy(&hdd_ctx->bus_bw_timer_lock);
+	QDF_BUG(!qdf_periodic_work_stop_sync(&hdd_ctx->bus_bw_work));
+	qdf_periodic_work_destroy(&hdd_ctx->bus_bw_work);
 
 	hdd_exit();
 }
@@ -12627,35 +12592,16 @@ static bool hdd_any_adapter_is_assoc(struct hdd_context *hdd_ctx)
 	return false;
 }
 
-static bool hdd_bus_bw_compute_timer_is_running(struct hdd_context *hdd_ctx)
-{
-	bool is_running;
-
-	qdf_spinlock_acquire(&hdd_ctx->bus_bw_timer_lock);
-	is_running = hdd_ctx->bus_bw_timer_running;
-	qdf_spinlock_release(&hdd_ctx->bus_bw_timer_lock);
-
-	return is_running;
-}
-
 static void __hdd_bus_bw_compute_timer_start(struct hdd_context *hdd_ctx)
 {
-	qdf_spinlock_acquire(&hdd_ctx->bus_bw_timer_lock);
-	hdd_ctx->bus_bw_timer_running = true;
-	qdf_timer_start(&hdd_ctx->bus_bw_timer,
-			hdd_ctx->config->bus_bw_compute_interval);
-	qdf_spinlock_release(&hdd_ctx->bus_bw_timer_lock);
+	qdf_periodic_work_start(&hdd_ctx->bus_bw_work,
+				hdd_ctx->config->bus_bw_compute_interval);
 }
 
 void hdd_bus_bw_compute_timer_start(struct hdd_context *hdd_ctx)
 {
 	hdd_enter();
 
-	if (hdd_bus_bw_compute_timer_is_running(hdd_ctx)) {
-		hdd_debug("Bandwidth compute timer already started");
-		return;
-	}
-
 	__hdd_bus_bw_compute_timer_start(hdd_ctx);
 
 	hdd_exit();
@@ -12665,11 +12611,6 @@ void hdd_bus_bw_compute_timer_try_start(struct hdd_context *hdd_ctx)
 {
 	hdd_enter();
 
-	if (hdd_bus_bw_compute_timer_is_running(hdd_ctx)) {
-		hdd_debug("Bandwidth compute timer already started");
-		return;
-	}
-
 	if (hdd_any_adapter_is_assoc(hdd_ctx))
 		__hdd_bus_bw_compute_timer_start(hdd_ctx);
 
@@ -12678,15 +12619,10 @@ void hdd_bus_bw_compute_timer_try_start(struct hdd_context *hdd_ctx)
 
 static void __hdd_bus_bw_compute_timer_stop(struct hdd_context *hdd_ctx)
 {
-	ucfg_ipa_set_perf_level(hdd_ctx->pdev, 0, 0);
-
-	qdf_spinlock_acquire(&hdd_ctx->bus_bw_timer_lock);
-	hdd_ctx->bus_bw_timer_running = false;
-	qdf_timer_sync_cancel(&hdd_ctx->bus_bw_timer);
-	qdf_spinlock_release(&hdd_ctx->bus_bw_timer_lock);
+	if (!qdf_periodic_work_stop_sync(&hdd_ctx->bus_bw_work))
+		return;
 
-	/* work callback is long running; flush outside of lock */
-	cancel_work_sync(&hdd_ctx->bus_bw_work);
+	ucfg_ipa_set_perf_level(hdd_ctx->pdev, 0, 0);
 	hdd_reset_tcp_delack(hdd_ctx);
 }
 
@@ -12694,11 +12630,6 @@ void hdd_bus_bw_compute_timer_stop(struct hdd_context *hdd_ctx)
 {
 	hdd_enter();
 
-	if (!hdd_bus_bw_compute_timer_is_running(hdd_ctx)) {
-		hdd_debug("Bandwidth compute timer already stopped");
-		return;
-	}
-
 	__hdd_bus_bw_compute_timer_stop(hdd_ctx);
 
 	hdd_exit();
@@ -12708,11 +12639,6 @@ void hdd_bus_bw_compute_timer_try_stop(struct hdd_context *hdd_ctx)
 {
 	hdd_enter();
 
-	if (!hdd_bus_bw_compute_timer_is_running(hdd_ctx)) {
-		hdd_debug("Bandwidth compute timer already stopped");
-		return;
-	}
-
 	if (!hdd_any_adapter_is_assoc(hdd_ctx))
 		__hdd_bus_bw_compute_timer_stop(hdd_ctx);