Re: [PATCH] irq: convert generic-chip to use irq_domain

From: Shawn Guo
Date: Mon Dec 12 2011 - 04:36:24 EST


On Sun, Dec 11, 2011 at 07:11:22PM -0600, Rob Herring wrote:
> Shawn,
>
> On 12/11/2011 10:00 AM, Shawn Guo wrote:
> > Hi Rob,
> >
> > I installed the patch and played it a little bit, and I some feedback
> > below.
>
> Thanks!
>
> > * It breaks some existing irq_chip_generic users like imx5, which
> > is currently numbering irq from 0. For such users, irq_alloc_descs()
> > will fail because it's asked to search irq #0 starting from irq #1.
> > Yes, I know numbering irq from 0 is a bad idea and really needs to
> > get fixed. But is it your intention to break such users and force
> > them get fixed with this patch?
>
> I was trying not to break things and allow the existing irq base.
>
> My problem is irq 0-15 are unallocated, 16-159 are the GIC. So when I
> try to allocate 8 irqdescs for gpio, I don't really want irq_alloc_descs
> to pick 0-15. Ideally we would just globally reserve 0-15 on ARM, but
> this will cause problems. So starting at 1 was at least slightly better
> than 0.
>
> I think I'll just skip irq_alloc_descs call when the irq_base is >= 0.
>
Yes, looks good. But both parameter irq_base of irq_alloc_generic_chip
and member irq_base of 'struct irq_domain' are unsigned int, which
might be a little problem for irq_chip_generic users to pass -1 for
asking irq_chip_generic to allocate Linux irq numbers for it.

--
Regards,
Shawn

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/