From: Petlozu Pravareshwar <petlozup@nvidia.com>
To: <jonathanh@nvidia.com>, <thierry.reding@gmail.com>,
<p.zabel@pengutronix.de>, <dmitry.osipenko@collabora.com>,
<ulf.hansson@linaro.org>, <kkartik@nvidia.com>,
<cai.huoqing@linux.dev>, <spatra@nvidia.com>,
<linux-tegra@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Cc: <petlozup@nvidia.com>, Prathamesh Shete <pshete@nvidia.com>
Subject: [PATCH] soc/tegra: pmc: Process wake events during resume
Date: Wed, 14 Sep 2022 04:38:31 +0000 [thread overview]
Message-ID: <20220914043831.654836-1-petlozup@nvidia.com> (raw)
During PMC resume, translate tier2 SC7 wake sources back into
irqs and do generic_handle_irq() to invoke the interrupt handlers
for edge triggered wake events such as sw-wake.
Signed-off-by: Prathamesh Shete <pshete@nvidia.com>
Signed-off-by: Petlozu Pravareshwar <petlozup@nvidia.com>
---
drivers/soc/tegra/pmc.c | 44 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
index 8c7b46ac6ad6..f275af15f2d0 100644
--- a/drivers/soc/tegra/pmc.c
+++ b/drivers/soc/tegra/pmc.c
@@ -27,6 +27,7 @@
#include <linux/iopoll.h>
#include <linux/irqdomain.h>
#include <linux/irq.h>
+#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <linux/of_address.h>
#include <linux/of_clk.h>
@@ -3181,6 +3182,40 @@ static void wke_clear_wake_status(void)
WAKE_AOWAKE_STATUS_W((i * 32) + wake));
}
}
+
+/* translate sc7 wake sources back into irqs to catch edge triggered wakeups */
+static void process_wake_event(int index, u32 status)
+{
+ int irq;
+ irq_hw_number_t hwirq;
+ int wake;
+ unsigned long flags;
+ struct irq_desc *desc;
+ unsigned long ulong_status = (unsigned long)status;
+
+ dev_info(pmc->dev, "Wake[%d:%d] status=0x%x\n", (index + 1) * 32,
+ index * 32, status);
+ for_each_set_bit(wake, &ulong_status, 32) {
+ hwirq = wake + 32 * index;
+
+#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
+ irq = irq_find_mapping(pmc->domain, hwirq);
+#else
+ irq = hwirq;
+#endif
+ desc = irq_to_desc(irq);
+ if (!desc || !desc->action || !desc->action->name) {
+ dev_info(pmc->dev, "Resume caused by WAKE%d, irq %d\n",
+ (wake + 32 * index), irq);
+ continue;
+ }
+ dev_info(pmc->dev, "Resume caused by WAKE%d, %s\n",
+ (wake + 32 * index), desc->action->name);
+ local_irq_save(flags);
+ generic_handle_irq(irq);
+ local_irq_restore(flags);
+ }
+}
#endif /* CONFIG_ARM64 */
static int tegra_pmc_suspend(struct device *dev)
@@ -3219,6 +3254,15 @@ static int tegra_pmc_resume(struct device *dev)
struct tegra_pmc *pmc = dev_get_drvdata(dev);
tegra_pmc_writel(pmc, 0x0, PMC_SCRATCH41);
+#else /* CONFIG_ARM64 */
+ int i;
+ u32 status;
+
+ for (i = 0; i < WAKE_NR_VECTORS; i++) {
+ status = readl(pmc->wake + WAKE_AOWAKE_STATUS_R(i));
+ status = status & readl(pmc->wake + WAKE_AOWAKE_TIER2_ROUTING(i));
+ process_wake_event(i, status);
+ }
#endif
return 0;
--
2.17.1
next reply other threads:[~2022-09-14 4:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-14 4:38 Petlozu Pravareshwar [this message]
2022-09-14 15:25 ` Thierry Reding
2022-10-02 14:23 ` Petlozu Pravareshwar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220914043831.654836-1-petlozup@nvidia.com \
--to=petlozup@nvidia.com \
--cc=cai.huoqing@linux.dev \
--cc=dmitry.osipenko@collabora.com \
--cc=jonathanh@nvidia.com \
--cc=kkartik@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=pshete@nvidia.com \
--cc=spatra@nvidia.com \
--cc=thierry.reding@gmail.com \
--cc=ulf.hansson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®