GPIO in the kernel: an introduction
GPIO in the kernel: an introduction
Posted Dec 13, 2016 18:28 UTC (Tue) by nybble41 (subscriber, #55106)In reply to: GPIO in the kernel: an introduction by bla
Parent article: GPIO in the kernel: an introduction
> Why wouldn't IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING with request_irq work?
Things may be different on ARM or x86, but in my work on embedded PowerPC targets I have yet to see an interrupt controller than can be configured to trigger on both rising and falling edges for the same signal. Typically there are four possible trigger modes, of which only one can be active at a time: rising edge, falling edge, high level, or low level.
