Lines Matching full:handler
39 SA1111 IRQ handler, SA1111 IRQs can hold off SMC9196 IRQs indefinitely.
45 to the Neponset handler, the "parent" is GPIO25, and the "children"d
90 the hardware IRQ if possible. If not, may call the handler
104 - per-IRQ handler
107 The handler can be one of the 3 standard handlers - "level", "edge" and
108 "simple", or your own specific handler if you need to do something special.
110 The "level" handler is what we currently have - its pretty simple.
114 "simple" handler is very basic, and does not perform any hardware
131 set_irq_handler(irq,handler)
132 Set the handler for this IRQ (level, edge, simple)
134 set_irq_chained_handler(irq,handler)
135 Set a "chained" handler for this IRQ - automatically
151 5. A handler is expected to perform any necessary acknowledgement of the
157 (eg, SMC9196), the handler must mask or acknowledge the parent IRQ
158 while the child handler is called, and the child handler should be the
159 "simple" handler (not "edge" nor "level"). After the handler completes,
161 be re-checked for pending events. (see the Neponset IRQ handler for