From: robherring2@gmail.com (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6] irq: add irq_domain support to generic-chip
Date: Thu, 09 Feb 2012 16:31:04 -0600 [thread overview]
Message-ID: <4F344928.1060804@gmail.com> (raw)
In-Reply-To: <20120209194806.GA2493@r65073-Latitude-D630>
On 02/09/2012 01:48 PM, Shawn Guo wrote:
> On Wed, Feb 08, 2012 at 04:55:22PM -0600, Rob Herring wrote:
>> From: Rob Herring <rob.herring@calxeda.com>
>>
>> Add irq domain support to irq generic-chip. This enables users of
>> generic-chip to support dynamic irq assignment needed for DT interrupt
>> binding.
>>
>> Thanks to Shawn Guo for fixes and testing.
>>
>> Signed-off-by: Rob Herring <rob.herring@calxeda.com>
>> Cc: Grant Likely <grant.likely@secretlab.ca>
>> Cc: Thomas Gleixner <tglx@linutronix.de>
>> ---
>> Here's the latest version. This has fixes from Shawn Guo, so should be
>> working. This version is also available here:
>>
> Rob, yes it's working. But I think it should be working in a better
> way after I play it a little bit more. See comment below.
> ...
>> +int irq_setup_generic_chip_domain(const char *name, struct device_node *node,
>> + int num_ct, unsigned int irq_base,
>> + void __iomem *reg_base,
>> + irq_flow_handler_t handler, u32 hwirq_cnt,
>> + enum irq_gc_flags flags, unsigned int clr,
>> + unsigned int set,
>> + void (*gc_init_cb)(struct irq_chip_generic *),
>> + void *private)
>> +{
>> + int ret, i;
>> + struct irq_chip_generic **gc;
>> + struct irq_domain *d;
>> + int num_gc = ALIGN(hwirq_cnt, 32) / 32;
>> +
>> + gc = kzalloc(num_gc * sizeof(struct irq_chip_generic *), GFP_KERNEL);
>> + if (!gc)
>> + return -ENOMEM;
>> +
>> + for (i = 0; i < num_gc; i++) {
>> + gc[i] = irq_alloc_generic_chip(name, num_ct, irq_base,
>> + reg_base, handler);
>> + if (!gc[i]) {
>> + ret = -ENOMEM;
>> + goto err;
>> + }
>> + gc[i]->hwirq_base = i * 32;
>> + gc[i]->private = private;
>> +
>> + gc_init_cb(gc[i]);
>> +
>> + irq_setup_generic_chip(gc[i], 0, flags, clr, set);
>> + }
>> +
>> + if (node)
>> + d = irq_domain_add_linear(node, hwirq_cnt,
>> + &irq_gc_irq_domain_ops, gc);
>> + else
>> + d = irq_domain_add_legacy(node, hwirq_cnt, irq_base, 0,
>> + &irq_gc_irq_domain_ops, gc);
>> +
> I do not think it's good to make this decision based on whether it's
> dt or non-dt case. That said, it's fairly valid and actually
> encouraged that non-dt users use linear domain too, and also the
> irqdomain core has no limit on dt users to use legacy domain. Instead,
> it's much more reasonable to make this decision based on if irq_base,
> something like you did in your v3 patch.
>
>
> - if (node)
> + if ((int) irq_base < 0)
>
Really, we want to discourage/limit the use of legacy domains. This is
only used for ISA irqs on powerpc. Unfortunately, there's not really a
way to use linear domains for non-DT ATM. But maybe we can fix that.
> Otherwise,
>
> Acked-by: Shawn Guo <shawn.guo@linaro.org>
>
> Tested on imx51 with tzic and gpio interrupt controller.
Thanks!
Rob
>
> Regards,
> Shawn
>
>> + for (i = 0; i < num_gc; i++)
>> + gc[i]->domain = d;
>> +
>> + return 0;
>> +
>> + err:
>> + for ( ; i >= 0; i--)
>> + kfree(gc[i]);
>> + kfree(gc);
>> + return ret;
>> +}
>> +EXPORT_SYMBOL_GPL(irq_setup_generic_chip_domain);
>> +#endif
>> +
WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robherring2@gmail.com>
To: Shawn Guo <shawn.guo@linaro.org>
Cc: linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Grant Likely <grant.likely@secretlab.ca>,
Thomas Gleixner <tglx@linutronix.de>,
b-cousson@ti.com, Rob Herring <rob.herring@calxeda.com>
Subject: Re: [PATCH v6] irq: add irq_domain support to generic-chip
Date: Thu, 09 Feb 2012 16:31:04 -0600 [thread overview]
Message-ID: <4F344928.1060804@gmail.com> (raw)
In-Reply-To: <20120209194806.GA2493@r65073-Latitude-D630>
On 02/09/2012 01:48 PM, Shawn Guo wrote:
> On Wed, Feb 08, 2012 at 04:55:22PM -0600, Rob Herring wrote:
>> From: Rob Herring <rob.herring@calxeda.com>
>>
>> Add irq domain support to irq generic-chip. This enables users of
>> generic-chip to support dynamic irq assignment needed for DT interrupt
>> binding.
>>
>> Thanks to Shawn Guo for fixes and testing.
>>
>> Signed-off-by: Rob Herring <rob.herring@calxeda.com>
>> Cc: Grant Likely <grant.likely@secretlab.ca>
>> Cc: Thomas Gleixner <tglx@linutronix.de>
>> ---
>> Here's the latest version. This has fixes from Shawn Guo, so should be
>> working. This version is also available here:
>>
> Rob, yes it's working. But I think it should be working in a better
> way after I play it a little bit more. See comment below.
> ...
>> +int irq_setup_generic_chip_domain(const char *name, struct device_node *node,
>> + int num_ct, unsigned int irq_base,
>> + void __iomem *reg_base,
>> + irq_flow_handler_t handler, u32 hwirq_cnt,
>> + enum irq_gc_flags flags, unsigned int clr,
>> + unsigned int set,
>> + void (*gc_init_cb)(struct irq_chip_generic *),
>> + void *private)
>> +{
>> + int ret, i;
>> + struct irq_chip_generic **gc;
>> + struct irq_domain *d;
>> + int num_gc = ALIGN(hwirq_cnt, 32) / 32;
>> +
>> + gc = kzalloc(num_gc * sizeof(struct irq_chip_generic *), GFP_KERNEL);
>> + if (!gc)
>> + return -ENOMEM;
>> +
>> + for (i = 0; i < num_gc; i++) {
>> + gc[i] = irq_alloc_generic_chip(name, num_ct, irq_base,
>> + reg_base, handler);
>> + if (!gc[i]) {
>> + ret = -ENOMEM;
>> + goto err;
>> + }
>> + gc[i]->hwirq_base = i * 32;
>> + gc[i]->private = private;
>> +
>> + gc_init_cb(gc[i]);
>> +
>> + irq_setup_generic_chip(gc[i], 0, flags, clr, set);
>> + }
>> +
>> + if (node)
>> + d = irq_domain_add_linear(node, hwirq_cnt,
>> + &irq_gc_irq_domain_ops, gc);
>> + else
>> + d = irq_domain_add_legacy(node, hwirq_cnt, irq_base, 0,
>> + &irq_gc_irq_domain_ops, gc);
>> +
> I do not think it's good to make this decision based on whether it's
> dt or non-dt case. That said, it's fairly valid and actually
> encouraged that non-dt users use linear domain too, and also the
> irqdomain core has no limit on dt users to use legacy domain. Instead,
> it's much more reasonable to make this decision based on if irq_base,
> something like you did in your v3 patch.
>
>
> - if (node)
> + if ((int) irq_base < 0)
>
Really, we want to discourage/limit the use of legacy domains. This is
only used for ISA irqs on powerpc. Unfortunately, there's not really a
way to use linear domains for non-DT ATM. But maybe we can fix that.
> Otherwise,
>
> Acked-by: Shawn Guo <shawn.guo@linaro.org>
>
> Tested on imx51 with tzic and gpio interrupt controller.
Thanks!
Rob
>
> Regards,
> Shawn
>
>> + for (i = 0; i < num_gc; i++)
>> + gc[i]->domain = d;
>> +
>> + return 0;
>> +
>> + err:
>> + for ( ; i >= 0; i--)
>> + kfree(gc[i]);
>> + kfree(gc);
>> + return ret;
>> +}
>> +EXPORT_SYMBOL_GPL(irq_setup_generic_chip_domain);
>> +#endif
>> +
next prev parent reply other threads:[~2012-02-09 22:31 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-03 22:35 [PATCH v4 0/4] generic irq chip domain support Rob Herring
2012-02-03 22:35 ` Rob Herring
2012-02-03 22:35 ` [PATCH v4 1/4] ARM: kconfig: always select IRQ_DOMAIN Rob Herring
2012-02-03 22:35 ` Rob Herring
2012-02-03 22:35 ` [PATCH v4 2/4] irq: add irq_domain support to generic-chip Rob Herring
2012-02-03 22:35 ` Rob Herring
2012-02-03 23:47 ` Grant Likely
2012-02-03 23:47 ` Grant Likely
2012-02-08 6:16 ` Shawn Guo
2012-02-08 6:16 ` Shawn Guo
2012-02-04 14:08 ` Shawn Guo
2012-02-04 14:08 ` Shawn Guo
2012-02-04 14:05 ` Grant Likely
2012-02-04 14:05 ` Grant Likely
2012-02-07 4:54 ` Rob Herring
2012-02-07 4:54 ` Rob Herring
2012-02-07 5:25 ` Grant Likely
2012-02-07 5:25 ` Grant Likely
2012-02-08 7:15 ` Shawn Guo
2012-02-08 7:15 ` Shawn Guo
2012-02-08 16:49 ` Rob Herring
2012-02-08 16:49 ` Rob Herring
2012-02-03 22:35 ` [PATCH v4 3/4] ARM: imx: add irq domain support to tzic Rob Herring
2012-02-03 22:35 ` Rob Herring
2012-02-04 14:20 ` Shawn Guo
2012-02-04 14:20 ` Shawn Guo
2012-02-03 22:35 ` [PATCH v4 4/4] gpio: pl061: enable interrupts with DT style binding Rob Herring
2012-02-03 22:35 ` Rob Herring
2012-02-09 20:04 ` Shawn Guo
2012-02-09 20:04 ` Shawn Guo
2012-02-09 22:03 ` Rob Herring
2012-02-09 22:03 ` Rob Herring
2012-02-09 23:58 ` Shawn Guo
2012-02-09 23:58 ` Shawn Guo
2012-02-10 0:17 ` Rob Herring
2012-02-10 0:17 ` Rob Herring
2012-02-10 16:37 ` Shawn Guo
2012-02-10 16:37 ` Shawn Guo
2012-02-08 22:55 ` [PATCH v6] irq: add irq_domain support to generic-chip Rob Herring
2012-02-08 22:55 ` Rob Herring
2012-02-09 19:48 ` Shawn Guo
2012-02-09 19:48 ` Shawn Guo
2012-02-09 22:31 ` Rob Herring [this message]
2012-02-09 22:31 ` Rob Herring
2012-02-09 23:36 ` Shawn Guo
2012-02-09 23:36 ` Shawn Guo
2012-04-13 5:23 ` Thomas Abraham
2012-04-13 5:23 ` Thomas Abraham
2012-04-19 18:34 ` Grant Likely
2012-04-19 18:34 ` Grant Likely
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=4F344928.1060804@gmail.com \
--to=robherring2@gmail.com \
--cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.