Lines Matching refs:handler
37 SA1111 IRQ handler, SA1111 IRQs can hold off SMC9196 IRQs indefinitely.
43 to the Neponset handler, the "parent" is GPIO25, and the "children"d
84 the hardware IRQ if possible. If not, may call the handler
97 - per-IRQ handler
100 The handler can be one of the 3 standard handlers - "level", "edge" and
101 "simple", or your own specific handler if you need to do something special.
103 The "level" handler is what we currently have - its pretty simple.
107 "simple" handler is very basic, and does not perform any hardware
124 set_irq_handler(irq,handler)
126 Set the handler for this IRQ (level, edge, simple)
128 set_irq_chained_handler(irq,handler)
130 Set a "chained" handler for this IRQ - automatically
148 5. A handler is expected to perform any necessary acknowledgement of the
154 (eg, SMC9196), the handler must mask or acknowledge the parent IRQ
155 while the child handler is called, and the child handler should be the
156 "simple" handler (not "edge" nor "level"). After the handler completes,
158 be re-checked for pending events. (see the Neponset IRQ handler for