|
@@ -519,6 +519,15 @@ static int icnss_send_smp2p(struct icnss_priv *priv,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+bool icnss_is_low_power(void)
|
|
|
+{
|
|
|
+ if (!penv)
|
|
|
+ return false;
|
|
|
+ else
|
|
|
+ return test_bit(ICNSS_LOW_POWER, &penv->state);
|
|
|
+}
|
|
|
+EXPORT_SYMBOL(icnss_is_low_power);
|
|
|
+
|
|
|
static irqreturn_t fw_error_fatal_handler(int irq, void *ctx)
|
|
|
{
|
|
|
struct icnss_priv *priv = ctx;
|
|
@@ -1092,6 +1101,7 @@ static int icnss_pd_restart_complete(struct icnss_priv *priv)
|
|
|
clear_bit(ICNSS_PDR, &priv->state);
|
|
|
clear_bit(ICNSS_REJUVENATE, &priv->state);
|
|
|
clear_bit(ICNSS_PD_RESTART, &priv->state);
|
|
|
+ clear_bit(ICNSS_LOW_POWER, &priv->state);
|
|
|
priv->early_crash_ind = false;
|
|
|
priv->is_ssr = false;
|
|
|
|
|
@@ -2159,14 +2169,16 @@ static int icnss_modem_notifier_nb(struct notifier_block *nb,
|
|
|
icnss_pr_vdbg("Modem-Notify: event %s(%lu)\n",
|
|
|
icnss_qcom_ssr_notify_state_to_str(code), code);
|
|
|
|
|
|
- if (code == QCOM_SSR_AFTER_SHUTDOWN) {
|
|
|
+ switch (code) {
|
|
|
+ case QCOM_SSR_BEFORE_SHUTDOWN:
|
|
|
+ break;
|
|
|
+ case QCOM_SSR_AFTER_SHUTDOWN:
|
|
|
icnss_pr_info("Collecting msa0 segment dump\n");
|
|
|
icnss_msa0_ramdump(priv);
|
|
|
goto out;
|
|
|
- }
|
|
|
-
|
|
|
- if (code != QCOM_SSR_BEFORE_SHUTDOWN)
|
|
|
+ default:
|
|
|
goto out;
|
|
|
+ }
|
|
|
|
|
|
priv->is_ssr = true;
|
|
|
|