Browse Source

qcacld-3.0: compile ol rx thread code only for legacy targets

Currently ol rx thread code is under QCA_CONFIG_SMP macro, which is
enabled for all the targets. But LI, BE and RH family targets don't
use this ol rx thread implementation. Hence, compile out ol rx thread
code for LI, BE and RH targets.

Change-Id: I1a1dfd09f5364ddb519c846e6c456d10f81e369c
CRs-Fixed: 3468499
Venkateswara Naralasetty 1 year ago
parent
commit
3259b29030

+ 5 - 0
Kbuild

@@ -3454,6 +3454,11 @@ else
 ccflags-y += -DDISABLE_MON_CONFIG
 endif
 
+ifeq ($(CONFIG_SMP), y)
+ifneq (y,$(filter y,$(CONFIG_LITHIUM) $(CONFIG_BERYLLIUM) $(CONFIG_RHINE)))
+ccflags-y += -DWLAN_DP_LEGACY_OL_RX_THREAD
+endif
+endif
 
 #Enable NL80211 test mode
 ccflags-$(CONFIG_NL80211_TESTMODE) += -DWLAN_NL80211_TESTMODE

+ 3 - 3
core/cds/inc/cds_sched.h

@@ -48,7 +48,7 @@
 #define RX_REFILL_SUSPEND_EVENT        0x002
 #define RX_REFILL_SHUTDOWN_EVENT       0x004
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 /*
 ** Maximum number of cds messages to be allocated for
 ** OL Rx thread.
@@ -90,7 +90,7 @@ struct cds_ol_rx_pkt {
 **
 */
 typedef struct _cds_sched_context {
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 	spinlock_t ol_rx_thread_lock;
 
 	/* OL Rx thread handle */
@@ -223,7 +223,7 @@ struct cds_context {
 /*---------------------------------------------------------------------------
    Function declarations and documentation
    ---------------------------------------------------------------------------*/
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 
 /**
  * cds_sched_handle_cpu_hot_plug() - cpu hotplug event handler

+ 7 - 9
core/cds/src/cds_sched.c

@@ -70,7 +70,7 @@ enum notifier_state {
 
 static p_cds_sched_context gp_cds_sched_context;
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 static int cds_ol_rx_thread(void *arg);
 static uint32_t affine_cpu;
 static QDF_STATUS cds_alloc_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext);
@@ -445,7 +445,7 @@ static void cds_cpu_before_offline_cb(void *context, uint32_t cpu)
 {
 	cds_cpu_hotplug_notify(cpu, false);
 }
-#endif /* QCA_CONFIG_SMP */
+#endif /* WLAN_DP_LEGACY_OL_RX_THREAD */
 
 QDF_STATUS cds_sched_open(void *p_cds_context,
 			  p_cds_sched_context pSchedContext,
@@ -462,7 +462,7 @@ QDF_STATUS cds_sched_open(void *p_cds_context,
 		return QDF_STATUS_E_INVAL;
 	}
 	qdf_mem_zero(pSchedContext, sizeof(cds_sched_context));
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 	spin_lock_init(&pSchedContext->ol_rx_thread_lock);
 	init_waitqueue_head(&pSchedContext->ol_rx_wait_queue);
 	init_completion(&pSchedContext->ol_rx_start_event);
@@ -489,7 +489,7 @@ QDF_STATUS cds_sched_open(void *p_cds_context,
 #endif
 	gp_cds_sched_context = pSchedContext;
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 	pSchedContext->ol_rx_thread = kthread_create(cds_ol_rx_thread,
 						       pSchedContext,
 						       "cds_ol_rx_thread");
@@ -507,10 +507,8 @@ QDF_STATUS cds_sched_open(void *p_cds_context,
 	/* We're good now: Let's get the ball rolling!!! */
 	cds_debug("CDS Scheduler successfully Opened");
 	return QDF_STATUS_SUCCESS;
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 OL_RX_THREAD_START_FAILURE:
-#endif
-#ifdef QCA_CONFIG_SMP
 	qdf_cpuhp_unregister(&pSchedContext->cpuhp_event_handle);
 	cds_free_ol_rx_pkt_freeq(gp_cds_sched_context);
 pkt_freeqalloc_failure:
@@ -521,7 +519,7 @@ pkt_freeqalloc_failure:
 
 } /* cds_sched_open() */
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 void cds_free_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext)
 {
 	struct cds_ol_rx_pkt *pkt;
@@ -926,7 +924,7 @@ int cds_get_gfp_flags(void)
  * Return: 1 if rx thread is not empty.
  *	   0 if rx thread is empty
  */
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 int cds_get_rx_thread_pending(ol_txrx_soc_handle soc)
 {
 	p_cds_sched_context cds_sched_context = get_cds_sched_ctxt();

+ 4 - 4
core/dp/txrx/ol_txrx.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 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
@@ -5174,7 +5174,7 @@ void ol_rx_data_process(struct ol_txrx_peer_t *peer,
 				  "%s: failed to enqueue rx frm to cached_bufq",
 				  __func__);
 	} else {
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 		/*
 		 * If the kernel is SMP, schedule rx thread to
 		 * better use multicores.
@@ -5199,9 +5199,9 @@ void ol_rx_data_process(struct ol_txrx_peer_t *peer,
 			pkt->staId = peer->local_id;
 			cds_indicate_rxpkt(sched_ctx, pkt);
 		}
-#else                           /* QCA_CONFIG_SMP */
+#else                           /* WLAN_DP_LEGACY_OL_RX_THREAD */
 		ol_rx_data_handler(pdev, rx_buf_list, peer->local_id);
-#endif /* QCA_CONFIG_SMP */
+#endif /* WLAN_DP_LEGACY_OL_RX_THREAD */
 	}
 
 	return;

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

@@ -1932,7 +1932,7 @@ struct hdd_context {
 	struct completion mc_sus_event_var;
 	bool is_scheduler_suspended;
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 	bool is_ol_rx_thread_suspended;
 #endif
 

+ 2 - 2
core/hdd/inc/wlan_hdd_power.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012, 2014-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 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
@@ -595,7 +595,7 @@ hdd_wlan_fake_apps_suspend(struct wiphy *wiphy, struct net_device *dev,
 }
 #endif /* WLAN_SUSPEND_RESUME_TEST */
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 /**
  * wlan_hdd_rx_thread_resume() - Resume RX thread
  * @hdd_ctx: HDD context

+ 2 - 2
core/hdd/src/wlan_hdd_power.c

@@ -133,7 +133,7 @@ void hdd_wlan_offload_event(uint8_t type, uint8_t state)
 }
 #endif
 
-#ifdef QCA_CONFIG_SMP
+#ifdef WLAN_DP_LEGACY_OL_RX_THREAD
 
 /* timeout in msec to wait for RX_THREAD to suspend */
 #define HDD_RXTHREAD_SUSPEND_TIMEOUT 200
@@ -172,7 +172,7 @@ int wlan_hdd_rx_thread_suspend(struct hdd_context *hdd_ctx)
 
 	return 0;
 }
-#endif /* QCA_CONFIG_SMP */
+#endif /* WLAN_DP_LEGACY_OL_RX_THREAD */
 
 /**
  * hdd_enable_gtk_offload() - enable GTK offload