From: Jon Hunter <jonathanh@nvidia.com>
To: Thierry Reding <thierry.reding@gmail.com>
Cc: linux-tegra@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Bitan Biswas <bbiswas@nvidia.com>
Subject: Re: [PATCH v2 3/3] soc/tegra: pmc: Add comments clarifying wake events
Date: Tue, 4 Jun 2019 17:31:54 +0100 [thread overview]
Message-ID: <dc233c45-ca13-7a75-02a7-ebdd41a730a5@nvidia.com> (raw)
In-Reply-To: <20190604155135.25390-3-thierry.reding@gmail.com>
On 04/06/2019 16:51, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> Add some comments to clarify the purpose of the wake event support
> implemented in the PMC driver.
>
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
> drivers/soc/tegra/pmc.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
> index 6e66b5e293be..af8f63a844cd 100644
> --- a/drivers/soc/tegra/pmc.c
> +++ b/drivers/soc/tegra/pmc.c
> @@ -241,6 +241,11 @@ struct tegra_pmc_soc {
> const char * const *reset_levels;
> unsigned int num_reset_levels;
>
> + /*
> + * These describe events that can wake the system from sleep (i.e.
> + * LP0 or SC7). Wakeup from other sleep states (such as LP1 or LP2)
> + * are dealt with in the LIC.
> + */
> const struct tegra_wake_event *wake_events;
> unsigned int num_wake_events;
> };
> @@ -1906,6 +1911,11 @@ static int tegra_pmc_irq_alloc(struct irq_domain *domain, unsigned int virq,
> }
> }
>
> + /*
> + * For interrupts that don't have associated wake events, assign a
> + * dummy hardware IRQ number. This is used in the ->irq_set_type()
> + * and ->irq_set_wake() callbacks to return early for these IRQs.
> + */
> if (i == soc->num_wake_events)
> err = irq_domain_set_hwirq_and_chip(domain, virq, ULONG_MAX,
> &pmc->irq, pmc);
> @@ -1924,6 +1934,7 @@ static int tegra_pmc_irq_set_wake(struct irq_data *data, unsigned int on)
> unsigned int offset, bit;
> u32 value;
>
> + /* nothing to do if there's no associated wake event */
> if (WARN_ON(data->hwirq == ULONG_MAX))
> return 0;
>
> @@ -1954,6 +1965,7 @@ static int tegra_pmc_irq_set_type(struct irq_data *data, unsigned int type)
> struct tegra_pmc *pmc = irq_data_get_irq_chip_data(data);
> u32 value;
>
> + /* nothing to do if there's no associated wake event */
> if (data->hwirq == ULONG_MAX)
> return 0;
>
For the series ...
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Cheers
Jon
--
nvpublic
prev parent reply other threads:[~2019-06-04 16:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-04 15:51 [PATCH v2 1/3] soc/tegra: pmc: Fail to allocate more than one wake IRQ Thierry Reding
2019-06-04 15:51 ` [PATCH v2 2/3] soc/tegra: pmc: Avoid crash for non-wake IRQs Thierry Reding
2019-06-04 15:51 ` [PATCH v2 3/3] soc/tegra: pmc: Add comments clarifying wake events Thierry Reding
2019-06-04 16:31 ` Jon Hunter [this message]
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=dc233c45-ca13-7a75-02a7-ebdd41a730a5@nvidia.com \
--to=jonathanh@nvidia.com \
--cc=bbiswas@nvidia.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-tegra@vger.kernel.org \
--cc=thierry.reding@gmail.com \
/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