hy.
i had the same problem. it wasnt possible for me to to request the "Combined interrupt indication" as mentioned in the reference manual.
maybe this irq is requested "none shared" by the gpio-mxc driver. i dont know. i have chosen a different pin that was not used by gpio-mxc.
there is a difference between irqs that come direct from the gic "hardware irq" and the irqs from gpio-mxc "software-irqs"
what kernel are you using?
something usefull:
cat /proc/interrupts (shows the used irg lines)
cat /sys/kernel/debug/irq_domain_mapping
- maybe you have to enable this in menuconfig
- its a mapping of hw-irw numbers to the linux-irq numbers
after getting the linux-irq-number from your hardware-irq-number you can use request_irq() directly.
- enable_irq()
- request_irq() (shared)
i thing i could request the irq but i never got my irq handler func called this way.