1 .. include:: <isonum.txt>
3 ==========================
4 Linux generic IRQ handling
5 ==========================
7 :Copyright: |copy| 2005-2010: Thomas Gleixner
8 :Copyright: |copy| 2005-2006: Ingo Molnar
13 The generic interrupt handling layer is designed to provide a complete
14 abstraction of interrupt handling for device drivers. It is able to
15 handle all the different types of interrupt controller hardware. Device
16 drivers use generic API functions to request, enable, disable and free
17 interrupts. The drivers do not have to know anything about interrupt
18 hardware details, so they can be used on different platforms without
21 This documentation is provided to developers who want to implement an
22 interrupt subsystem based for their architecture, with the help of the
23 generic IRQ handling layer.
28 The original implementation of interrupt handling in Linux uses the
29 __do_IRQ() super-handler, which is able to deal with every type of
32 Originally, Russell King identified different types of handlers to build
33 a quite universal set for the ARM interrupt handler implementation in
34 Linux 2.5/2.6. He distinguished between:
42 During the implementation we identified another type:
46 In the SMP world of the __do_IRQ() super-handler another type was
51 This split implementation of high-level IRQ handlers allows us to
52 optimize the flow of the interrupt handling for each specific interrupt
53 type. This reduces complexity in that particular code path and allows
54 the optimized handling of a given type.
56 The original general IRQ implementation used hw_interrupt_type
57 structures and their ``->ack``, ``->end`` [etc.] callbacks to differentiate
58 the flow control in the super-handler. This leads to a mix of flow logic
59 and low-level hardware logic, and it also leads to unnecessary code
60 duplication: for example in i386, there is an ``ioapic_level_irq`` and an
61 ``ioapic_edge_irq`` IRQ-type which share many of the low-level details but
62 have different flow handling.
64 A more natural abstraction is the clean separation of the 'irq flow' and
67 Analysing a couple of architecture's IRQ subsystem implementations
68 reveals that most of them can use a generic set of 'irq flow' methods
69 and only need to add the chip-level specific code. The separation is
70 also valuable for (sub)architectures which need specific quirks in the
71 IRQ flow itself but not in the chip details - and thus provides a more
72 transparent IRQ subsystem design.
74 Each interrupt descriptor is assigned its own high-level flow handler,
75 which is normally one of the generic implementations. (This high-level
76 flow handler implementation also makes it simple to provide
77 demultiplexing handlers which can be found in embedded platforms on
78 various architectures.)
80 The separation makes the generic interrupt handling layer more flexible
81 and extensible. For example, an (sub)architecture can use a generic
82 IRQ-flow implementation for 'level type' interrupts and add a
83 (sub)architecture specific 'edge type' implementation.
85 To make the transition to the new model easier and prevent the breakage
86 of existing implementations, the __do_IRQ() super-handler is still
87 available. This leads to a kind of duality for the time being. Over time
88 the new model should be used in more and more architectures, as it
89 enables smaller and cleaner IRQ subsystems. It's deprecated for three
90 years now and about to be removed.
92 Known Bugs And Assumptions
93 ==========================
100 There are three main levels of abstraction in the interrupt code:
102 1. High-level driver API
104 2. High-level IRQ flow handlers
106 3. Chip-level hardware encapsulation
108 Interrupt control flow
109 ----------------------
111 Each interrupt is described by an interrupt descriptor structure
112 irq_desc. The interrupt is referenced by an 'unsigned int' numeric
113 value which selects the corresponding interrupt description structure in
114 the descriptor structures array. The descriptor structure contains
115 status information and pointers to the interrupt flow method and the
116 interrupt chip structure which are assigned to this interrupt.
118 Whenever an interrupt triggers, the low-level architecture code calls
119 into the generic interrupt code by calling desc->handle_irq(). This
120 high-level IRQ handling function only uses desc->irq_data.chip
121 primitives referenced by the assigned chip descriptor structure.
123 High-level Driver API
124 ---------------------
126 The high-level Driver API consists of following functions:
130 - request_threaded_irq()
138 - disable_irq_nosync() (SMP only)
140 - synchronize_irq() (SMP only)
146 - irq_set_handler_data()
150 - irq_set_chip_data()
152 See the autogenerated function documentation for details.
154 High-level IRQ flow handlers
155 ----------------------------
157 The generic layer provides a set of pre-defined irq-flow methods:
163 - handle_fasteoi_irq()
165 - handle_simple_irq()
167 - handle_percpu_irq()
169 - handle_edge_eoi_irq()
173 The interrupt flow handlers (either pre-defined or architecture
174 specific) are assigned to specific interrupts by the architecture either
175 during bootup or during device initialization.
177 Default flow implementations
178 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
183 The helper functions call the chip primitives and are used by the
184 default flow implementations. The following helper functions are
185 implemented (simplified excerpt)::
187 default_enable(struct irq_data *data)
189 desc->irq_data.chip->irq_unmask(data);
192 default_disable(struct irq_data *data)
194 if (!delay_disable(data))
195 desc->irq_data.chip->irq_mask(data);
198 default_ack(struct irq_data *data)
203 default_mask_ack(struct irq_data *data)
205 if (chip->irq_mask_ack) {
206 chip->irq_mask_ack(data);
208 chip->irq_mask(data);
213 noop(struct irq_data *data))
219 Default flow handler implementations
220 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
222 Default Level IRQ flow handler
223 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
225 handle_level_irq provides a generic implementation for level-triggered
228 The following control flow is implemented (simplified excerpt)::
230 desc->irq_data.chip->irq_mask_ack();
231 handle_irq_event(desc->action);
232 desc->irq_data.chip->irq_unmask();
235 Default Fast EOI IRQ flow handler
236 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
238 handle_fasteoi_irq provides a generic implementation for interrupts,
239 which only need an EOI at the end of the handler.
241 The following control flow is implemented (simplified excerpt)::
243 handle_irq_event(desc->action);
244 desc->irq_data.chip->irq_eoi();
247 Default Edge IRQ flow handler
248 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
250 handle_edge_irq provides a generic implementation for edge-triggered
253 The following control flow is implemented (simplified excerpt)::
255 if (desc->status & running) {
256 desc->irq_data.chip->irq_mask_ack();
257 desc->status |= pending | masked;
260 desc->irq_data.chip->irq_ack();
261 desc->status |= running;
263 if (desc->status & masked)
264 desc->irq_data.chip->irq_unmask();
265 desc->status &= ~pending;
266 handle_irq_event(desc->action);
267 } while (status & pending);
268 desc->status &= ~running;
271 Default simple IRQ flow handler
272 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
274 handle_simple_irq provides a generic implementation for simple
279 The simple flow handler does not call any handler/chip primitives.
281 The following control flow is implemented (simplified excerpt)::
283 handle_irq_event(desc->action);
286 Default per CPU flow handler
287 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
289 handle_percpu_irq provides a generic implementation for per CPU
292 Per CPU interrupts are only available on SMP and the handler provides a
293 simplified version without locking.
295 The following control flow is implemented (simplified excerpt)::
297 if (desc->irq_data.chip->irq_ack)
298 desc->irq_data.chip->irq_ack();
299 handle_irq_event(desc->action);
300 if (desc->irq_data.chip->irq_eoi)
301 desc->irq_data.chip->irq_eoi();
304 EOI Edge IRQ flow handler
305 ^^^^^^^^^^^^^^^^^^^^^^^^^
307 handle_edge_eoi_irq provides an abnomination of the edge handler
308 which is solely used to tame a badly wreckaged irq controller on
314 handle_bad_irq is used for spurious interrupts which have no real
317 Quirks and optimizations
318 ~~~~~~~~~~~~~~~~~~~~~~~~
320 The generic functions are intended for 'clean' architectures and chips,
321 which have no platform-specific IRQ handling quirks. If an architecture
322 needs to implement quirks on the 'flow' level then it can do so by
323 overriding the high-level irq-flow handler.
325 Delayed interrupt disable
326 ~~~~~~~~~~~~~~~~~~~~~~~~~
328 This per interrupt selectable feature, which was introduced by Russell
329 King in the ARM interrupt implementation, does not mask an interrupt at
330 the hardware level when disable_irq() is called. The interrupt is kept
331 enabled and is masked in the flow handler when an interrupt event
332 happens. This prevents losing edge interrupts on hardware which does not
333 store an edge interrupt event while the interrupt is disabled at the
334 hardware level. When an interrupt arrives while the IRQ_DISABLED flag
335 is set, then the interrupt is masked at the hardware level and the
336 IRQ_PENDING bit is set. When the interrupt is re-enabled by
337 enable_irq() the pending bit is checked and if it is set, the interrupt
338 is resent either via hardware or by a software resend mechanism. (It's
339 necessary to enable CONFIG_HARDIRQS_SW_RESEND when you want to use
340 the delayed interrupt disable feature and your hardware is not capable
341 of retriggering an interrupt.) The delayed interrupt disable is not
344 Chip-level hardware encapsulation
345 ---------------------------------
347 The chip-level hardware descriptor structure :c:type:`irq_chip` contains all
348 the direct chip relevant functions, which can be utilized by the irq flow
353 - ``irq_mask_ack`` - Optional, recommended for performance
359 - ``irq_eoi`` - Optional, required for EOI flow handlers
361 - ``irq_retrigger`` - Optional
363 - ``irq_set_type`` - Optional
365 - ``irq_set_wake`` - Optional
367 These primitives are strictly intended to mean what they say: ack means
368 ACK, masking means masking of an IRQ line, etc. It is up to the flow
369 handler(s) to use these basic units of low-level functionality.
374 The original implementation __do_IRQ() was an alternative entry point
375 for all types of interrupts. It no longer exists.
377 This handler turned out to be not suitable for all interrupt hardware
378 and was therefore reimplemented with split functionality for
379 edge/level/simple/percpu interrupts. This is not only a functional
380 optimization. It also shortens code paths for interrupts.
385 The locking of chip registers is up to the architecture that defines the
386 chip primitives. The per-irq structure is protected via desc->lock, by
389 Generic interrupt chip
390 ======================
392 To avoid copies of identical implementations of IRQ chips the core
393 provides a configurable generic interrupt chip implementation.
394 Developers should check carefully whether the generic chip fits their
395 needs before implementing the same functionality slightly differently
398 .. kernel-doc:: kernel/irq/generic-chip.c
404 This chapter contains the autogenerated documentation of the structures
405 which are used in the generic IRQ layer.
407 .. kernel-doc:: include/linux/irq.h
410 .. kernel-doc:: include/linux/interrupt.h
413 Public Functions Provided
414 =========================
416 This chapter contains the autogenerated documentation of the kernel API
417 functions which are exported.
419 .. kernel-doc:: kernel/irq/manage.c
421 .. kernel-doc:: kernel/irq/chip.c
424 Internal Functions Provided
425 ===========================
427 This chapter contains the autogenerated documentation of the internal
430 .. kernel-doc:: kernel/irq/irqdesc.c
432 .. kernel-doc:: kernel/irq/handle.c
434 .. kernel-doc:: kernel/irq/chip.c
440 The following people have contributed to this document:
442 1. Thomas Gleixner tglx@linutronix.de
444 2. Ingo Molnar mingo@elte.hu