83xx: requesting external interrupts
Kumar Gala
galak at kernel.crashing.org
Sat May 12 06:15:02 EST 2007
On May 11, 2007, at 9:12 AM, Ben Warren wrote:
> Alex,
>
> On Fri, 2007-05-11 at 10:29 +0100, Alex Zeffertt wrote:
>> Hi,
>>
>> Thanks for your reply Ben, but I think my problem is slightly
>> different. It is not
>> that the sense (high/low/rising/falling) of the interrupt is
>> wrong, but that the
>> kernel will not allow me to register the handler.
>>
>> I've changed my code to:
>>
>> struct device_node *np = of_find_node_by_type(NULL, "ipic");
>> struct irq_host *host = irq_find_host(np);
>> int rc;
>>
>> unsigned int virq = irq_find_mapping(host, 5);
>> set_irq_type(virq, IRQ_TYPE_EDGE_FALLING);
>> rc = request_irq(virq, mpc832xemds_phy_interrupt,
>> IRQF_SHARED, "pm5384", dev);
>>
>> but the last line still returns a non-zero error code.
>>
>> Is there a new way of requesting to install a handler for external
>> interrupts? I
>> can't find any powerpc examples in the kernel tree....
>>
> Sorry, I missed a bit of the implementation. You need to register the
> IRQs before attempting to attach an ISR. Here's some sample code that
> works for me. You'll probably need different IRQs, based on what your
> board does:
>
> /* All external IRQs + Generic timer IRQs must be initialized by
> BSP */
> const int bsp_irqs[] = {48, 17, 18, 19, 20, 21, 22, 23, 90, 78, 84,
> 72};
>
> Add this to your BSP IRQ init code (void __init xxx_init_IRQs())
>
>
> for (i=0;i<sizeof(bsp_irqs)/sizeof(bsp_irqs[0]);i++)
> virq = irq_create_mapping(NULL, bsp_irqs[i]);
I assume you're code doesn't look exactly like this. You'll need to
use the virq in the request_irq()... its most likely just random luck
if things are working and you aren't using the virq returned from
irq_create_mapping()
(Well its more than random luck, its because most 83xx systems only
have one PIC and this hw_irq # == virq)
- k
More information about the Linuxppc-embedded
mailing list