Sfoglia il codice sorgente

qcacld-3.0: Add an ini item to disable wow feature

WoW feature may need to be disabled for certain targets
hence add an INI item gDisableWow to disable wow feature
for all modes.

Change-Id: I0f79731a750c9d759bcd5593f11a740572e9d4ad
CRs-Fixed: 2446226
Rajeev Kumar 6 anni fa
parent
commit
3a7c3400aa

+ 26 - 1
core/hdd/inc/hdd_config.h

@@ -1238,6 +1238,30 @@ struct dhcp_server {
 			CFG_VALUE_OR_DEFAULT, \
 			"Specify the SAR version")
 
+/*
+ * <ini>
+ * gDisableWow - Used to disable wow feature
+ *
+ * @Min: 0
+ * @Max: 1
+ * Default: 0
+ *
+ * This ini is used to disable wow feature for all modes
+ * that means hlos platform suspend(cfg80211 suspend) will
+ * be rejected by wifi kernel driver.
+ *
+ * Usage: External
+ *
+ * </ini>
+ */
+#define CFG_WOW_DISABLE  CFG_INI_UINT( \
+			"gDisableWow", \
+			0, \
+			1, \
+			0, \
+			CFG_VALUE_OR_DEFAULT, \
+			"Disable wow feature")
+
 #define CFG_HDD_ALL \
 	CFG_ENABLE_PACKET_LOG_ALL \
 	CFG_ENABLE_RUNTIME_PM_ALL \
@@ -1274,5 +1298,6 @@ struct dhcp_server {
 	CFG(CFG_TIMER_MULTIPLIER) \
 	CFG(CFG_HDD_DOT11_MODE) \
 	CFG(CFG_ENABLE_DISABLE_CHANNEL) \
-	CFG(CFG_SAR_VERSION)
+	CFG(CFG_SAR_VERSION) \
+	CFG(CFG_WOW_DISABLE)
 #endif

+ 1 - 0
core/hdd/inc/wlan_hdd_cfg.h

@@ -210,6 +210,7 @@ struct hdd_config {
 	uint8_t enable_rtt_support;
 	uint32_t cfg_wmi_credit_cnt;
 	uint32_t sar_version;
+	bool is_wow_disabled;
 };
 
 /**

+ 1 - 0
core/hdd/src/wlan_hdd_main.c

@@ -9423,6 +9423,7 @@ static void hdd_cfg_params_init(struct hdd_context *hdd_ctx)
 			cfg_get(psoc, CFG_ENABLE_UNIT_TEST_FRAMEWORK);
 	config->disable_channel = cfg_get(psoc, CFG_ENABLE_DISABLE_CHANNEL);
 	config->sar_version = cfg_get(psoc, CFG_SAR_VERSION);
+	config->is_wow_disabled = cfg_get(psoc, CFG_WOW_DISABLE);
 
 	hdd_init_vc_mode_cfg_bitmap(config, psoc);
 	hdd_init_runtime_pm(config, psoc);

+ 10 - 0
core/hdd/src/wlan_hdd_power.c

@@ -1606,6 +1606,11 @@ static int __wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
 
 	hdd_enter();
 
+	if (hdd_ctx->config->is_wow_disabled) {
+		hdd_err("wow is disabled");
+		return -EINVAL;
+	}
+
 	if (cds_is_driver_recovering()) {
 		hdd_debug("Driver is recovering; Skipping resume");
 		exit_code = 0;
@@ -1717,6 +1722,11 @@ static int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
 		return -EINVAL;
 	}
 
+	if (hdd_ctx->config->is_wow_disabled) {
+		hdd_err("wow is disabled");
+		return -EINVAL;
+	}
+
 	rc = wlan_hdd_validate_context(hdd_ctx);
 	if (0 != rc)
 		return rc;