From: Marc Zyngier <maz@kernel.org>
To: Aswath Govindraju <a-govindraju@ti.com>
Cc: Vignesh Raghavendra <vigneshr@ti.com>, Nishanth Menon <nm@ti.com>,
Tero Kristo <kristo@kernel.org>,
Santosh Shilimkar <ssantosh@kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] irqchip/ti-sci-intr: Add support for system suspend/resume PM
Date: Tue, 07 Jun 2022 08:18:10 +0100 [thread overview]
Message-ID: <87sfohyma5.wl-maz@kernel.org> (raw)
In-Reply-To: <20220607061912.12222-1-a-govindraju@ti.com>
On Tue, 07 Jun 2022 07:19:12 +0100,
Aswath Govindraju <a-govindraju@ti.com> wrote:
>
> Add support for system level suspend/resume power management. The
> interrupt mappings are stored in an array and restored in the system level
> resume routine. Struct ti_sci_resource_desc can have atmost 2 sets for
> ranges. Therefore, the mapping array is also formatted such that it can
> store two sets of ranges.
>
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
> ---
> drivers/irqchip/irq-ti-sci-intr.c | 108 ++++++++++++++++++++++++++++++
> 1 file changed, 108 insertions(+)
>
> diff --git a/drivers/irqchip/irq-ti-sci-intr.c b/drivers/irqchip/irq-ti-sci-intr.c
> index fe8fad22bcf9..a8fc6cfb96ca 100644
> --- a/drivers/irqchip/irq-ti-sci-intr.c
> +++ b/drivers/irqchip/irq-ti-sci-intr.c
> @@ -25,6 +25,7 @@
> * @dev: Struct device pointer.
> * @ti_sci_id: TI-SCI device identifier
> * @type: Specifies the trigger type supported by this Interrupt Router
> + * @mapping: Pointer to out_irq <-> hwirq mapping table
> */
> struct ti_sci_intr_irq_domain {
> const struct ti_sci_handle *sci;
> @@ -32,6 +33,7 @@ struct ti_sci_intr_irq_domain {
> struct device *dev;
> u32 ti_sci_id;
> u32 type;
> + u32 *mapping;
> };
>
> static struct irq_chip ti_sci_intr_irq_chip = {
> @@ -99,6 +101,23 @@ static int ti_sci_intr_xlate_irq(struct ti_sci_intr_irq_domain *intr, u32 irq)
> return -ENOENT;
> }
>
> +/**
> + * ti_sci_intr_free_irq - Free the irq entry in the out_irq <-> hwirq mapping table
> + * @intr: IRQ domain corresponding to Interrupt Router
> + * @out_irq: Out irq number
> + */
> +static void ti_sci_intr_free_irq(struct ti_sci_intr_irq_domain *intr, u16 out_irq)
> +{
> + u16 start = intr->out_irqs->desc->start;
> + u16 num = intr->out_irqs->desc->num;
> + u16 start_sec = intr->out_irqs->desc->start_sec;
> +
> + if (out_irq < start + num)
> + intr->mapping[out_irq - start] = 0xFFFFFFFF;
> + else
> + intr->mapping[out_irq - start_sec + num] = 0xFFFFFFFF;
> +}
> +
> /**
> * ti_sci_intr_irq_domain_free() - Free the specified IRQs from the domain.
> * @domain: Domain to which the irqs belong
> @@ -118,11 +137,30 @@ static void ti_sci_intr_irq_domain_free(struct irq_domain *domain,
> intr->sci->ops.rm_irq_ops.free_irq(intr->sci,
> intr->ti_sci_id, data->hwirq,
> intr->ti_sci_id, out_irq);
> + ti_sci_intr_free_irq(intr, out_irq);
> ti_sci_release_resource(intr->out_irqs, out_irq);
> irq_domain_free_irqs_parent(domain, virq, 1);
> irq_domain_reset_irq_data(data);
> }
>
> +/**
> + * ti_sci_intr_add_irq - Add the irq entry in the out_irq <-> hwirq mapping table
> + * @intr: IRQ domain corresponding to Interrupt Router
> + * @hwirq: Input irq number
> + * @out_irq: Out irq number
> + */
> +static void ti_sci_intr_add_irq(struct ti_sci_intr_irq_domain *intr, u32 hwirq, u16 out_irq)
> +{
> + u16 start = intr->out_irqs->desc->start;
> + u16 num = intr->out_irqs->desc->num;
> + u16 start_sec = intr->out_irqs->desc->start_sec;
> +
> + if (out_irq < start + num)
> + intr->mapping[out_irq - start] = hwirq;
> + else
> + intr->mapping[out_irq - start_sec + num] = hwirq;
> +}
I'll bite: you already have a full resource allocator that is used for
all sort of things. Why isn't this cached by the resource allocator
itself? Why is this an irqchip specific thing? I expect other users of
the same API to have the same needs.
M.
--
Without deviation from the norm, progress is not possible.
next prev parent reply other threads:[~2022-06-07 7:18 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-07 6:19 [PATCH] irqchip/ti-sci-intr: Add support for system suspend/resume PM Aswath Govindraju
2022-06-07 7:18 ` Marc Zyngier [this message]
2022-06-08 8:48 ` Aswath Govindraju
2022-06-08 9:12 ` Marc Zyngier
2023-10-31 16:00 ` Thomas Richard
2023-11-01 8:42 ` Marc Zyngier
2022-06-08 22:09 ` kernel test robot
2022-06-09 14:56 ` kernel test robot
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=87sfohyma5.wl-maz@kernel.org \
--to=maz@kernel.org \
--cc=a-govindraju@ti.com \
--cc=kristo@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nm@ti.com \
--cc=ssantosh@kernel.org \
--cc=tglx@linutronix.de \
--cc=vigneshr@ti.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