On Sat, Jun 15, 2013 at 01:41:49AM +0100, Grant Likely wrote: > On Wed, 12 Jun 2013 23:50:35 +0200, Uwe Kleine-König > <u.kleine-koe...@pengutronix.de> wrote: > > This interrupt controller is found on Cortex-M3 and Cortex-M4 machines. > > > > Support for this controller appeared in Catalin's Cortex tree based on > > 2.6.33 but was nearly completely rewritten. > > > > Signed-off-by: Catalin Marinas <catalin.mari...@arm.com> > > Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.de> > > --- > > > > Notes: > > Changes since v3, sent with > > Message-Id: > > <1366214540-31166-1-git-send-email-u.kleine-koe...@pengutronix.de>: > > > > - use generic chip > > - rename nvic_do_IRQ to nvic_handle_irq > > > > This depends on the stuff currently in tip/irq/for-arm > > Minor comments below, but it looks good to me. Nice and small. > > Acked-by: Grant Likely <grant.lik...@secretlab.ca> > > > +asmlinkage void __exception_irq_entry > > +nvic_handle_irq(irq_hw_number_t hwirq, struct pt_regs *regs) > > +{ > > + unsigned int irq = irq_linear_revmap(nvic_irq_domain, hwirq); > > + > > + handle_IRQ(irq, regs); > > Or simply: > handle_IRQ(irq_linear_revmap(nvic_irq_domain, hwirq), regs); I think my version is more readable, so I tend to keep it the way I suggested.
> > +static int __init nvic_of_init(struct device_node *node, > > + struct device_node *parent) > > +{ > > + void __iomem *nvic_base; > > + unsigned int irqs, i, ret; > > + unsigned numbanks = (readl_relaxed(V7M_SCS_ICTR) & > > + V7M_SCS_ICTR_INTLINESNUM_MASK) + 1; > > + unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN; > > + > > + nvic_base = of_iomap(node, 0); > > + if (!nvic_base) { > > + pr_warn("unable to map nvic registers\n"); > > + return -ENOMEM; > > + } > > + > > + irqs = numbanks * 32; > > + if (irqs > NVIC_MAX_IRQ) > > + irqs = NVIC_MAX_IRQ; > > I would display some kind of message here. That's not an error case. The documentation about INTLINESNUM reads: The total number of interrupt lines supported by an implementation, defined in groups of 32. That is, the total number of interrupt lines is up to (32*(INTLINESNUM+1)). However, the absolute maximum number of interrupts is 496, corresponding to the INTLINESNUM value 0b1111. And the documentation for e.g. NVIC_ISER0 - NVIC_ISER15 reads: Usage constraints NVIC_ISERn[31:0] are the set-enable bits for interrupts (31+(32*n)) - (32*n). When n=15, bits [31:16] are reserved. So it's just an implementation detail that the last bank can only contain 16 interrupts. There is a comment describing that fact at the definition of NVIC_MAX_IRQ. So I think this case is important enough to clutter the kernel log. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König | Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/