> -----Original Message----- > From: Kevin Hilman [mailto:[email protected]] > Sent: Thursday, March 03, 2011 4:00 AM > To: Santosh Shilimkar > Cc: [email protected]; [email protected] > Subject: Re: [PATCH 08/17] omap4: pm: Add GIC save/restore support > > Santosh Shilimkar <[email protected]> writes: >
[...] > > + /* > > + * Find out how many interrupts are supported. > > + * OMAP4 supports max of 128 SPIs where as GIC can support > > + * up to 1020 interrupt sources. > > + */ > > + max_spi_reg = __raw_readl(gic_dist_base_addr + GIC_DIST_CTR) & > 0x1f; > > + max_spi_irq = max_spi_reg * 32; > > Based on the spec, this should also be max'd at 1020 so you never > write the reserved values after 1020. > That's correct as per generic GIC specs. On OMAP4, the maximum IRQs already fused in "DIST_CTR" bit-fields and fixed. Hence we don't need that additional comparison. Regards Santosh -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
