Prechádzať zdrojové kódy

qcacld-3.0: Enable IPA when loaded as module

Currently, module 'm' is converted to 'y' in QGKI when
compiling. In Waipio, GKI2 is present in which 'm'
is not being converted and hence IPA_OFFLOAD is not enabled.
To fix this, checking if CONFIG_IPA3 is either set to y or m
and then enabling CONFIG_IPA_OFFLOAD.
From Kernel 5.10, few IPA functions are depreciated for which
putting the depreciated functions under kernel check condition.

Change-Id: Iba3735692267130b76a8eaaaeeb53c263f8f0ddf
CRs-Fixed: 2921600
Ananya Gupta 4 rokov pred
rodič
commit
64cfae78e5

+ 2 - 1
components/ipa/core/inc/wlan_ipa_core.h

@@ -155,7 +155,8 @@ struct wlan_ipa_iface_context *
 wlan_ipa_get_iface_by_mode_netdev(struct wlan_ipa_priv *ipa_ctx,
 				  qdf_netdev_t ndev, uint8_t mode);
 
-#ifndef CONFIG_IPA_WDI_UNIFIED_API
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0)) && \
+	!defined(CONFIG_IPA_WDI_UNIFIED_API)
 
 /**
  * wlan_ipa_is_rm_enabled() - Is IPA RM enabled?

+ 5 - 1
components/ipa/core/inc/wlan_ipa_priv.h

@@ -26,7 +26,11 @@
 
 #ifdef IPA_OFFLOAD
 
-#ifdef CONFIG_IPA_WDI_UNIFIED_API
+#include <linux/version.h>
+#include <linux/kernel.h>
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)) || \
+	defined(CONFIG_IPA_WDI_UNIFIED_API)
 #include <qdf_ipa_wdi3.h>
 #else
 #include <qdf_ipa.h>

+ 4 - 3
components/ipa/core/src/wlan_ipa_core.c

@@ -424,7 +424,8 @@ drop_pkt:
 	return ret;
 }
 
-#ifdef CONFIG_IPA_WDI_UNIFIED_API
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)) || \
+	defined(CONFIG_IPA_WDI_UNIFIED_API)
 /*
  * TODO: Get WDI version through FW capabilities
  */
@@ -884,9 +885,9 @@ int wlan_ipa_uc_smmu_map(bool map, uint32_t num_buf, qdf_mem_info_t *buf_arr)
 	}
 
 	if (map)
-		return qdf_ipa_create_wdi_mapping(num_buf, buf_arr);
+		return qdf_ipa_wdi_create_smmu_mapping(num_buf, buf_arr);
 	else
-		return qdf_ipa_release_wdi_mapping(num_buf, buf_arr);
+		return qdf_ipa_wdi_release_smmu_mapping(num_buf, buf_arr);
 }
 
 static enum wlan_ipa_forward_type

+ 3 - 2
components/ipa/core/src/wlan_ipa_rm.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2013-2021 The Linux Foundation. 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
@@ -105,7 +105,8 @@ void wlan_ipa_init_metering(struct wlan_ipa_priv *ipa_ctx)
 }
 #endif
 
-#ifndef CONFIG_IPA_WDI_UNIFIED_API
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0)) && \
+	!defined(CONFIG_IPA_WDI_UNIFIED_API)
 /**
  * wlan_ipa_rm_cons_release() - WLAN consumer resource release handler
  *

+ 3 - 0
configs/default_defconfig

@@ -840,6 +840,9 @@ endif
 ifeq ($(CONFIG_IPA3), y)
 CONFIG_IPA_OFFLOAD := y
 endif
+ifeq ($(CONFIG_IPA3), m)
+CONFIG_IPA_OFFLOAD := y
+endif
 
 #Flag to enable SMMU S1 support
 ifeq ($(CONFIG_ARCH_SDM845), y)