Reputation: 523
What is the difference between IRQ and FIQ as per the Linux API wise? Are they use same api? Is the difference only inside ARM core or is it do do with the kernel function calls also?
Upvotes: 0
Views: 1270
Reputation: 47102
No, they use different APIs. The best place to look is in arch/arm/kernel/fiq.c
of the kernel tree. It looks like there are a few drivers in the tree that use it that may be helpful as examples.
Upvotes: 1