* [PATCH] irqdomain: export irq_domain_simple_ops for !CONFIG_OF
@ 2011-12-01 10:15 Jamie Iles
2011-12-01 15:18 ` Rob Herring
0 siblings, 1 reply; 4+ messages in thread
From: Jamie Iles @ 2011-12-01 10:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Jamie Iles, Thomas Gleixner, Rob Herring, Grant Likely
irqdomain support is used in interrupt controller drivers that may not
have device tree support but only need the basic HW->Linux irq
translation. Rather than having each of these implement their own IRQ
domain, allow them to use the simple ops.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Rob Herring <robherring2@gmail.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Jamie Iles <jamie@jamieiles.com>
---
include/linux/irqdomain.h | 3 ++-
kernel/irq/irqdomain.c | 12 +++++++-----
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h
index 99834e58..bd4272b 100644
--- a/include/linux/irqdomain.h
+++ b/include/linux/irqdomain.h
@@ -91,10 +91,11 @@ static inline unsigned int irq_domain_to_irq(struct irq_domain *d,
extern void irq_domain_add(struct irq_domain *domain);
extern void irq_domain_del(struct irq_domain *domain);
+
+extern struct irq_domain_ops irq_domain_simple_ops;
#endif /* CONFIG_IRQ_DOMAIN */
#if defined(CONFIG_IRQ_DOMAIN) && defined(CONFIG_OF_IRQ)
-extern struct irq_domain_ops irq_domain_simple_ops;
extern void irq_domain_add_simple(struct device_node *controller, int irq_base);
extern void irq_domain_generate_simple(const struct of_device_id *match,
u64 phys_base, unsigned int irq_start);
diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 200ce83..7ca523b 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -143,11 +143,6 @@ int irq_domain_simple_dt_translate(struct irq_domain *d,
return 0;
}
-struct irq_domain_ops irq_domain_simple_ops = {
- .dt_translate = irq_domain_simple_dt_translate,
-};
-EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
-
/**
* irq_domain_create_simple() - Set up a 'simple' translation range
*/
@@ -182,3 +177,10 @@ void irq_domain_generate_simple(const struct of_device_id *match,
}
EXPORT_SYMBOL_GPL(irq_domain_generate_simple);
#endif /* CONFIG_OF_IRQ */
+
+struct irq_domain_ops irq_domain_simple_ops = {
+#ifdef CONFIG_OF_IRQ
+ .dt_translate = irq_domain_simple_dt_translate,
+#endif /* CONFIG_OF_IRQ */
+};
+EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] irqdomain: export irq_domain_simple_ops for !CONFIG_OF
2011-12-01 10:15 [PATCH] irqdomain: export irq_domain_simple_ops for !CONFIG_OF Jamie Iles
@ 2011-12-01 15:18 ` Rob Herring
2011-12-12 11:11 ` Thomas Gleixner
0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring @ 2011-12-01 15:18 UTC (permalink / raw)
To: Jamie Iles; +Cc: linux-kernel, Thomas Gleixner, Grant Likely
On 12/01/2011 04:15 AM, Jamie Iles wrote:
> irqdomain support is used in interrupt controller drivers that may not
> have device tree support but only need the basic HW->Linux irq
> translation. Rather than having each of these implement their own IRQ
> domain, allow them to use the simple ops.
>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Rob Herring <robherring2@gmail.com>
> Cc: Grant Likely <grant.likely@secretlab.ca>
> Signed-off-by: Jamie Iles <jamie@jamieiles.com>
> ---
Acked-by: Rob Herring <robherring2@gmail.com>
> include/linux/irqdomain.h | 3 ++-
> kernel/irq/irqdomain.c | 12 +++++++-----
> 2 files changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h
> index 99834e58..bd4272b 100644
> --- a/include/linux/irqdomain.h
> +++ b/include/linux/irqdomain.h
> @@ -91,10 +91,11 @@ static inline unsigned int irq_domain_to_irq(struct irq_domain *d,
>
> extern void irq_domain_add(struct irq_domain *domain);
> extern void irq_domain_del(struct irq_domain *domain);
> +
> +extern struct irq_domain_ops irq_domain_simple_ops;
> #endif /* CONFIG_IRQ_DOMAIN */
>
> #if defined(CONFIG_IRQ_DOMAIN) && defined(CONFIG_OF_IRQ)
> -extern struct irq_domain_ops irq_domain_simple_ops;
> extern void irq_domain_add_simple(struct device_node *controller, int irq_base);
> extern void irq_domain_generate_simple(const struct of_device_id *match,
> u64 phys_base, unsigned int irq_start);
> diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
> index 200ce83..7ca523b 100644
> --- a/kernel/irq/irqdomain.c
> +++ b/kernel/irq/irqdomain.c
> @@ -143,11 +143,6 @@ int irq_domain_simple_dt_translate(struct irq_domain *d,
> return 0;
> }
>
> -struct irq_domain_ops irq_domain_simple_ops = {
> - .dt_translate = irq_domain_simple_dt_translate,
> -};
> -EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
> -
> /**
> * irq_domain_create_simple() - Set up a 'simple' translation range
> */
> @@ -182,3 +177,10 @@ void irq_domain_generate_simple(const struct of_device_id *match,
> }
> EXPORT_SYMBOL_GPL(irq_domain_generate_simple);
> #endif /* CONFIG_OF_IRQ */
> +
> +struct irq_domain_ops irq_domain_simple_ops = {
> +#ifdef CONFIG_OF_IRQ
> + .dt_translate = irq_domain_simple_dt_translate,
> +#endif /* CONFIG_OF_IRQ */
> +};
> +EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] irqdomain: export irq_domain_simple_ops for !CONFIG_OF
2011-12-01 15:18 ` Rob Herring
@ 2011-12-12 11:11 ` Thomas Gleixner
2011-12-12 11:59 ` Jamie Iles
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Gleixner @ 2011-12-12 11:11 UTC (permalink / raw)
To: Rob Herring; +Cc: Jamie Iles, linux-kernel, Grant Likely
On Thu, 1 Dec 2011, Rob Herring wrote:
> On 12/01/2011 04:15 AM, Jamie Iles wrote:
> > irqdomain support is used in interrupt controller drivers that may not
> > have device tree support but only need the basic HW->Linux irq
> > translation. Rather than having each of these implement their own IRQ
> > domain, allow them to use the simple ops.
> >
> > Cc: Thomas Gleixner <tglx@linutronix.de>
> > Cc: Rob Herring <robherring2@gmail.com>
> > Cc: Grant Likely <grant.likely@secretlab.ca>
> > Signed-off-by: Jamie Iles <jamie@jamieiles.com>
> > ---
>
> Acked-by: Rob Herring <robherring2@gmail.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Grant, are you taking it or should I pull it via tip ?
Thanks,
tglx
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] irqdomain: export irq_domain_simple_ops for !CONFIG_OF
2011-12-12 11:11 ` Thomas Gleixner
@ 2011-12-12 11:59 ` Jamie Iles
0 siblings, 0 replies; 4+ messages in thread
From: Jamie Iles @ 2011-12-12 11:59 UTC (permalink / raw)
To: Thomas Gleixner, Russell King - ARM Linux
Cc: Rob Herring, Jamie Iles, linux-kernel, Grant Likely
On Mon, Dec 12, 2011 at 12:11:43PM +0100, Thomas Gleixner wrote:
> On Thu, 1 Dec 2011, Rob Herring wrote:
>
> > On 12/01/2011 04:15 AM, Jamie Iles wrote:
> > > irqdomain support is used in interrupt controller drivers that may not
> > > have device tree support but only need the basic HW->Linux irq
> > > translation. Rather than having each of these implement their own IRQ
> > > domain, allow them to use the simple ops.
> > >
> > > Cc: Thomas Gleixner <tglx@linutronix.de>
> > > Cc: Rob Herring <robherring2@gmail.com>
> > > Cc: Grant Likely <grant.likely@secretlab.ca>
> > > Signed-off-by: Jamie Iles <jamie@jamieiles.com>
> > > ---
> >
> > Acked-by: Rob Herring <robherring2@gmail.com>
>
> Acked-by: Thomas Gleixner <tglx@linutronix.de>
>
> Grant, are you taking it or should I pull it via tip ?
Is okay if I send this one to Russell? I need to patch the VIC driver
to use this and I could send both to Russell at the same time and a
couple of other ARM drivers that want to use it could use that as a
base.
Thanks,
Jamie
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-12 11:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-01 10:15 [PATCH] irqdomain: export irq_domain_simple_ops for !CONFIG_OF Jamie Iles
2011-12-01 15:18 ` Rob Herring
2011-12-12 11:11 ` Thomas Gleixner
2011-12-12 11:59 ` Jamie Iles
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox