Lines Matching refs:IRQ
40 - Inputs can often be used as IRQ signals, often edge triggered but
164 (nonthreaded) IRQ handlers and similar contexts.
200 This requires sleeping, which can't be done from inside IRQ handlers.
218 a threaded IRQ handler, and those accessors must be used instead of
381 GPIO numbers are unsigned integers; so are IRQ numbers. These make up
382 two logically distinct namespaces (GPIO 0 need not use IRQ 0). You can
385 /* map GPIO numbers to IRQ numbers */
388 /* map IRQ numbers to GPIO numbers (avoid using this) */
395 to use an IRQ number that didn't originally come from gpio_to_irq().
401 or free_irq(). They will often be stored into IRQ resources for platform
402 devices, by the board-specific initialization code. Note that IRQ trigger
403 options are part of the IRQ interface, e.g. IRQF_TRIGGER_FALLING, as are
408 when the IRQ is edge-triggered. Note that some platforms don't support
420 One common example of an open drain signal is a shared active-low IRQ line.