Преглед изворни кода

qcacld-3.0: add IPA cleanup during PD Restart

Currently there is no way to find out PD Restart indication,
so platform driver has added an API to differentiate PD Restart
from SSR. Using this API in shutdown notify handler, sending
message to IPA to do required cleanup.

Change-Id: I9d07c6fc573b6db1c7d0c1b7c99f325e22fe81cd
CRs-Fixed: 2436036
Vevek Venkatesan пре 6 година
родитељ
комит
789b6b32c7
4 измењених фајлова са 38 додато и 1 уклоњено
  1. 2 1
      core/hdd/src/wlan_hdd_driver_ops.c
  2. 11 0
      core/pld/inc/pld_common.h
  3. 15 0
      core/pld/src/pld_common.c
  4. 10 0
      core/pld/src/pld_snoc.h

+ 2 - 1
core/hdd/src/wlan_hdd_driver_ops.c

@@ -693,7 +693,8 @@ static void hdd_psoc_shutdown_notify(struct hdd_context *hdd_ctx)
 	if (ucfg_ipa_is_enabled()) {
 		ucfg_ipa_uc_force_pipe_shutdown(hdd_ctx->pdev);
 
-		if (pld_is_fw_rejuvenate(hdd_ctx->parent_dev))
+		if (pld_is_fw_rejuvenate(hdd_ctx->parent_dev) ||
+		    pld_is_pdr(hdd_ctx->parent_dev))
 			ucfg_ipa_fw_rejuvenate_send_msg(hdd_ctx->pdev);
 	}
 

+ 11 - 0
core/pld/inc/pld_common.h

@@ -614,6 +614,17 @@ int pld_force_assert_target(struct device *dev);
 int pld_collect_rddm(struct device *dev);
 bool pld_is_fw_dump_skipped(struct device *dev);
 
+/**
+ * pld_is_pdr() - Check WLAN PD is Restarted
+ *
+ * Help the driver decide whether FW down is due to
+ * WLAN PD Restart.
+ *
+ * Return: 1 WLAN PD is Restarted
+ *         0 WLAN PD is not Restarted
+ */
+int pld_is_pdr(struct device *dev);
+
 /**
  * pld_is_fw_rejuvenate() - Check WLAN fw is rejuvenating
  *

+ 15 - 0
core/pld/src/pld_common.c

@@ -1722,6 +1722,21 @@ bool pld_is_fw_dump_skipped(struct device *dev)
 	return ret;
 }
 
+int pld_is_pdr(struct device *dev)
+{
+	int ret = 0;
+	enum pld_bus_type type = pld_get_bus_type(dev);
+
+	switch (type) {
+	case PLD_BUS_TYPE_SNOC:
+		ret = pld_snoc_is_pdr();
+		break;
+	default:
+		break;
+	}
+	return ret;
+}
+
 int pld_is_fw_rejuvenate(struct device *dev)
 {
 	int ret = 0;

+ 10 - 0
core/pld/src/pld_snoc.h

@@ -127,6 +127,11 @@ static inline int pld_snoc_force_assert_target(struct device *dev)
 	return 0;
 }
 
+static inline int pld_snoc_is_pdr(void)
+{
+	return 0;
+}
+
 static inline int pld_snoc_is_fw_rejuvenate(void)
 {
 	return 0;
@@ -254,6 +259,11 @@ static inline int pld_snoc_force_assert_target(struct device *dev)
 	return icnss_trigger_recovery(dev);
 }
 
+static inline int pld_snoc_is_pdr(void)
+{
+	return icnss_is_pdr();
+}
+
 static inline int pld_snoc_is_fw_rejuvenate(void)
 {
 	return icnss_is_rejuvenate();