,tsphinx.addnodesdocument)}( rawsourcechildren]( translations LanguagesNode)}(hhh](h pending_xref)}(hhh]docutils.nodesTextChinese (Simplified)}parenthsba attributes}(ids]classes]names]dupnames]backrefs] refdomainstdreftypedoc reftarget'/translations/zh_CN/arch/arm/interruptsmodnameN classnameN refexplicitutagnamehhh ubh)}(hhh]hChinese (Traditional)}hh2sbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget'/translations/zh_TW/arch/arm/interruptsmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hItalian}hhFsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget'/translations/it_IT/arch/arm/interruptsmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hJapanese}hhZsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget'/translations/ja_JP/arch/arm/interruptsmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hKorean}hhnsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget'/translations/ko_KR/arch/arm/interruptsmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hSpanish}hhsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget'/translations/sp_SP/arch/arm/interruptsmodnameN classnameN refexplicituh1hhh ubeh}(h]h ]h"]h$]h&]current_languageEnglishuh1h hh _documenthsourceNlineNubhsection)}(hhh](htitle)}(h Interruptsh]h Interrupts}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhhhA/var/lib/git/docbuild/linux/Documentation/arch/arm/interrupts.rsthKubhdefinition_list)}(hhh]hdefinition_list_item)}(h{2.5.2-rmk5: This is the first kernel that contains a major shake up of some of the major architecture-specific subsystems. h](hterm)}(h 2.5.2-rmk5:h]h 2.5.2-rmk5:}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhubh definition)}(hhh]h paragraph)}(hnThis is the first kernel that contains a major shake up of some of the major architecture-specific subsystems.h]hnThis is the first kernel that contains a major shake up of some of the major architecture-specific subsystems.}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhubah}(h]h ]h"]h$]h&]uh1hhhubeh}(h]h ]h"]h$]h&]uh1hhhhKhhubah}(h]h ]h"]h$]h&]uh1hhhhhhhhNubh)}(hXFirstly, it contains some pretty major changes to the way we handle the MMU TLB. Each MMU TLB variant is now handled completely separately - we have TLB v3, TLB v4 (without write buffer), TLB v4 (with write buffer), and finally TLB v4 (with write buffer, with I TLB invalidate entry). There is more assembly code inside each of these functions, mainly to allow more flexible TLB handling for the future.h]hXFirstly, it contains some pretty major changes to the way we handle the MMU TLB. Each MMU TLB variant is now handled completely separately - we have TLB v3, TLB v4 (without write buffer), TLB v4 (with write buffer), and finally TLB v4 (with write buffer, with I TLB invalidate entry). There is more assembly code inside each of these functions, mainly to allow more flexible TLB handling for the future.}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK hhhhubh)}(hSecondly, the IRQ subsystem.h]hSecondly, the IRQ subsystem.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhhhubh)}(hThe 2.5 kernels will be having major changes to the way IRQs are handled. Unfortunately, this means that machine types that touch the irq_desc[] array (basically all machine types) will break, and this means every machine type that we currently have.h]hThe 2.5 kernels will be having major changes to the way IRQs are handled. Unfortunately, this means that machine types that touch the irq_desc[] array (basically all machine types) will break, and this means every machine type that we currently have.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhhhubh)}(h>Lets take an example. On the Assabet with Neponset, we have::h]h=Lets take an example. On the Assabet with Neponset, we have:}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhhhubh literal_block)}(hX  GPIO25 IRR:2 SA1100 ------------> Neponset -----------> SA1111 IIR:1 -----------> USAR IIR:0 -----------> SMC9196h]hX  GPIO25 IRR:2 SA1100 ------------> Neponset -----------> SA1111 IIR:1 -----------> USAR IIR:0 -----------> SMC9196}hj3sbah}(h]h ]h"]h$]h&] xml:spacepreserveuh1j1hhhKhhhhubh)}(hX'The way stuff currently works, all SA1111 interrupts are mutually exclusive of each other - if you're processing one interrupt from the SA1111 and another comes in, you have to wait for that interrupt to finish processing before you can service the new interrupt. Eg, an IDE PIO-based interrupt on the SA1111 excludes all other SA1111 and SMC9196 interrupts until it has finished transferring its multi-sector data, which can be a long time. Note also that since we loop in the SA1111 IRQ handler, SA1111 IRQs can hold off SMC9196 IRQs indefinitely.h]hX)The way stuff currently works, all SA1111 interrupts are mutually exclusive of each other - if you’re processing one interrupt from the SA1111 and another comes in, you have to wait for that interrupt to finish processing before you can service the new interrupt. Eg, an IDE PIO-based interrupt on the SA1111 excludes all other SA1111 and SMC9196 interrupts until it has finished transferring its multi-sector data, which can be a long time. Note also that since we loop in the SA1111 IRQ handler, SA1111 IRQs can hold off SMC9196 IRQs indefinitely.}(hjChhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK hhhhubh)}(h,The new approach brings several new ideas...h]h,The new approach brings several new ideas...}(hjQhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK*hhhhubh)}(hWe introduce the concept of a "parent" and a "child". For example, to the Neponset handler, the "parent" is GPIO25, and the "children"d are SA1111, SMC9196 and USAR.h]hWe introduce the concept of a “parent” and a “child”. For example, to the Neponset handler, the “parent” is GPIO25, and the “children”d are SA1111, SMC9196 and USAR.}(hj_hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK,hhhhubh)}(hXWe also bring the idea of an IRQ "chip" (mainly to reduce the size of the irqdesc array). This doesn't have to be a real "IC"; indeed the SA11x0 IRQs are handled by two separate "chip" structures, one for GPIO0-10, and another for all the rest. It is just a container for the various operations (maybe this'll change to a better name). This structure has the following operations::h]hXWe also bring the idea of an IRQ “chip” (mainly to reduce the size of the irqdesc array). This doesn’t have to be a real “IC”; indeed the SA11x0 IRQs are handled by two separate “chip” structures, one for GPIO0-10, and another for all the rest. It is just a container for the various operations (maybe this’ll change to a better name). This structure has the following operations:}(hjmhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK0hhhhubj2)}(hXnstruct irqchip { /* * Acknowledge the IRQ. * If this is a level-based IRQ, then it is expected to mask the IRQ * as well. */ void (*ack)(unsigned int irq); /* * Mask the IRQ in hardware. */ void (*mask)(unsigned int irq); /* * Unmask the IRQ in hardware. */ void (*unmask)(unsigned int irq); /* * Re-run the IRQ */ void (*rerun)(unsigned int irq); /* * Set the type of the IRQ. */ int (*type)(unsigned int irq, unsigned int, type); };h]hXnstruct irqchip { /* * Acknowledge the IRQ. * If this is a level-based IRQ, then it is expected to mask the IRQ * as well. */ void (*ack)(unsigned int irq); /* * Mask the IRQ in hardware. */ void (*mask)(unsigned int irq); /* * Unmask the IRQ in hardware. */ void (*unmask)(unsigned int irq); /* * Re-run the IRQ */ void (*rerun)(unsigned int irq); /* * Set the type of the IRQ. */ int (*type)(unsigned int irq, unsigned int, type); };}hj{sbah}(h]h ]h"]h$]h&]jAjBuh1j1hhhK7hhhhubh)}(hhh](h)}(hUack - required. May be the same function as mask for IRQs handled by do_level_IRQ.h](h)}(hackh]hack}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKQhjubh)}(hhh]h bullet_list)}(hhh]h list_item)}(hMrequired. May be the same function as mask for IRQs handled by do_level_IRQ.h]h)}(hMrequired. May be the same function as mask for IRQs handled by do_level_IRQ.h]hMrequired. May be the same function as mask for IRQs handled by do_level_IRQ.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKQhjubah}(h]h ]h"]h$]h&]uh1jhjubah}(h]h ]h"]h$]h&]bullet-uh1jhhhKQhjubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhKQhjubh)}(hmask - required.h](h)}(hmaskh]hmask}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKShjubh)}(hhh]j)}(hhh]j)}(h required.h]h)}(hjh]h required.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKThjubah}(h]h ]h"]h$]h&]uh1jhjubah}(h]h ]h"]h$]h&]jjuh1jhhhKThjubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhKShjhhubh)}(hunmask - required.h](h)}(hunmaskh]hunmask}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKUhjubh)}(hhh]j)}(hhh]j)}(h required.h]h)}(hj/h]h required.}(hj1hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKVhj-ubah}(h]h ]h"]h$]h&]uh1jhj*ubah}(h]h ]h"]h$]h&]jjuh1jhhhKVhj'ubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhKUhjhhubh)}(hrerun - optional. Not required if you're using do_level_IRQ for all IRQs that use this 'irqchip'. Generally expected to re-trigger the hardware IRQ if possible. If not, may call the handler directly.h](h)}(hrerunh]hrerun}(hjZhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKZhjVubh)}(hhh]j)}(hhh]j)}(hoptional. Not required if you're using do_level_IRQ for all IRQs that use this 'irqchip'. Generally expected to re-trigger the hardware IRQ if possible. If not, may call the handler directly.h]h)}(hoptional. Not required if you're using do_level_IRQ for all IRQs that use this 'irqchip'. Generally expected to re-trigger the hardware IRQ if possible. If not, may call the handler directly.h]hoptional. Not required if you’re using do_level_IRQ for all IRQs that use this ‘irqchip’. Generally expected to re-trigger the hardware IRQ if possible. If not, may call the handler directly.}(hjrhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKXhjnubah}(h]h ]h"]h$]h&]uh1jhjkubah}(h]h ]h"]h$]h&]jjuh1jhhhKXhjhubah}(h]h ]h"]h$]h&]uh1hhjVubeh}(h]h ]h"]h$]h&]uh1hhhhKZhjhhubh)}(htype - optional. If you don't support changing the type of an IRQ, it should be null so people can detect if they are unable to set the IRQ type. h](h)}(htypeh]htype}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK_hjubh)}(hhh]j)}(hhh]j)}(hoptional. If you don't support changing the type of an IRQ, it should be null so people can detect if they are unable to set the IRQ type. h]h)}(hoptional. If you don't support changing the type of an IRQ, it should be null so people can detect if they are unable to set the IRQ type.h]hoptional. If you don’t support changing the type of an IRQ, it should be null so people can detect if they are unable to set the IRQ type.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK]hjubah}(h]h ]h"]h$]h&]uh1jhjubah}(h]h ]h"]h$]h&]jjuh1jhhhK]hjubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhK_hjhhubeh}(h]h ]h"]h$]h&]uh1hhhhhhNhNubh)}(h0For each IRQ, we keep the following information:h]h0For each IRQ, we keep the following information:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKahhhhubh block_quote)}(h- "disable" depth (number of disable_irq()s without enable_irq()s) - flags indicating what we can do with this IRQ (valid, probe, noautounmask) as before - status of the IRQ (probing, enable, etc) - chip - per-IRQ handler - irqaction structure list h]j)}(hhh](j)}(h@"disable" depth (number of disable_irq()s without enable_irq()s)h]h)}(hjh]hD“disable” depth (number of disable_irq()s without enable_irq()s)}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKchjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hTflags indicating what we can do with this IRQ (valid, probe, noautounmask) as beforeh]h)}(hTflags indicating what we can do with this IRQ (valid, probe, noautounmask) as beforeh]hTflags indicating what we can do with this IRQ (valid, probe, noautounmask) as before}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKdhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(h(status of the IRQ (probing, enable, etc)h]h)}(hj(h]h(status of the IRQ (probing, enable, etc)}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKfhj&ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hchiph]h)}(hj?h]hchip}(hjAhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKghj=ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hper-IRQ handlerh]h)}(hjVh]hper-IRQ handler}(hjXhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhjTubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hirqaction structure list h]h)}(hirqaction structure listh]hirqaction structure list}(hjohhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKihjkubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]jjuh1jhhhKchjubah}(h]h ]h"]h$]h&]uh1jhhhKchhhhubh)}(hThe handler can be one of the 3 standard handlers - "level", "edge" and "simple", or your own specific handler if you need to do something special.h]hThe handler can be one of the 3 standard handlers - “level”, “edge” and “simple”, or your own specific handler if you need to do something special.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKkhhhhubh)}(hXThe "level" handler is what we currently have - its pretty simple. "edge" knows about the brokenness of such IRQ implementations - that you need to leave the hardware IRQ enabled while processing it, and queueing further IRQ events should the IRQ happen again while processing. The "simple" handler is very basic, and does not perform any hardware manipulation, nor state tracking. This is useful for things like the SMC9196 and USAR above.h]hXThe “level” handler is what we currently have - its pretty simple. “edge” knows about the brokenness of such IRQ implementations - that you need to leave the hardware IRQ enabled while processing it, and queueing further IRQ events should the IRQ happen again while processing. The “simple” handler is very basic, and does not perform any hardware manipulation, nor state tracking. This is useful for things like the SMC9196 and USAR above.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKnhhhhubh)}(hhh](h)}(hSo, what's changed?h]hSo, what’s changed?}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhKwubhenumerated_list)}(hhh](j)}(h=Machine implementations must not write to the irqdesc array. h]h)}(h h](h)}(hNew functions to manipulate the irqdesc array. The first 4 are expected to be useful only to machine specific code. The last is recommended to only be used by machine specific code, but may be used in drivers if absolutely necessary.h]hNew functions to manipulate the irqdesc array. The first 4 are expected to be useful only to machine specific code. The last is recommended to only be used by machine specific code, but may be used in drivers if absolutely necessary.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK{hjubj)}(hXset_irq_chip(irq,chip) Set the mask/unmask methods for handling this IRQ set_irq_handler(irq,handler) Set the handler for this IRQ (level, edge, simple) set_irq_chained_handler(irq,handler) Set a "chained" handler for this IRQ - automatically enables this IRQ (eg, Neponset and SA1111 handlers). set_irq_flags(irq,flags) Set the valid/probe/noautoenable flags. set_irq_type(irq,type) Set active the IRQ edge(s)/level. This replaces the SA1111 INTPOL manipulation, and the set_GPIO_IRQ_edge() function. Type should be one of IRQ_TYPE_xxx defined in h]h)}(hhh](h)}(hIset_irq_chip(irq,chip) Set the mask/unmask methods for handling this IRQ h](h)}(hset_irq_chip(irq,chip)h]hset_irq_chip(irq,chip)}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hhh]h)}(h1Set the mask/unmask methods for handling this IRQh]h1Set the mask/unmask methods for handling this IRQ}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hPset_irq_handler(irq,handler) Set the handler for this IRQ (level, edge, simple) h](h)}(hset_irq_handler(irq,handler)h]hset_irq_handler(irq,handler)}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj!ubh)}(hhh]h)}(h2Set the handler for this IRQ (level, edge, simple)h]h2Set the handler for this IRQ (level, edge, simple)}(hj6hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj3ubah}(h]h ]h"]h$]h&]uh1hhj!ubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hset_irq_chained_handler(irq,handler) Set a "chained" handler for this IRQ - automatically enables this IRQ (eg, Neponset and SA1111 handlers). h](h)}(h$set_irq_chained_handler(irq,handler)h]h$set_irq_chained_handler(irq,handler)}(hjThhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjPubh)}(hhh]h)}(hiSet a "chained" handler for this IRQ - automatically enables this IRQ (eg, Neponset and SA1111 handlers).h]hmSet a “chained” handler for this IRQ - automatically enables this IRQ (eg, Neponset and SA1111 handlers).}(hjehhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjbubah}(h]h ]h"]h$]h&]uh1hhjPubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hAset_irq_flags(irq,flags) Set the valid/probe/noautoenable flags. h](h)}(hset_irq_flags(irq,flags)h]hset_irq_flags(irq,flags)}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hhh]h)}(h'Set the valid/probe/noautoenable flags.h]h'Set the valid/probe/noautoenable flags.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hset_irq_type(irq,type) Set active the IRQ edge(s)/level. This replaces the SA1111 INTPOL manipulation, and the set_GPIO_IRQ_edge() function. Type should be one of IRQ_TYPE_xxx defined in h](h)}(hset_irq_type(irq,type)h]hset_irq_type(irq,type)}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubh)}(hhh]h)}(hSet active the IRQ edge(s)/level. This replaces the SA1111 INTPOL manipulation, and the set_GPIO_IRQ_edge() function. Type should be one of IRQ_TYPE_xxx defined in h]hSet active the IRQ edge(s)/level. This replaces the SA1111 INTPOL manipulation, and the set_GPIO_IRQ_edge() function. Type should be one of IRQ_TYPE_xxx defined in }(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1hhjubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubeh}(h]h ]h"]h$]h&]uh1hhjubah}(h]h ]h"]h$]h&]uh1jhhhKhjubeh}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hIset_GPIO_IRQ_edge() is obsolete, and should be replaced by set_irq_type. h]h)}(hHset_GPIO_IRQ_edge() is obsolete, and should be replaced by set_irq_type.h]hHset_GPIO_IRQ_edge() is obsolete, and should be replaced by set_irq_type.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hIDirect access to SA1111 INTPOL is deprecated. Use set_irq_type instead. h]h)}(hHDirect access to SA1111 INTPOL is deprecated. Use set_irq_type instead.h]hHDirect access to SA1111 INTPOL is deprecated. Use set_irq_type instead.}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hXA handler is expected to perform any necessary acknowledgement of the parent IRQ via the correct chip specific function. For instance, if the SA1111 is directly connected to a SA1110 GPIO, then you should acknowledge the SA1110 IRQ each time you re-read the SA1111 IRQ status. h]h)}(hXA handler is expected to perform any necessary acknowledgement of the parent IRQ via the correct chip specific function. For instance, if the SA1111 is directly connected to a SA1110 GPIO, then you should acknowledge the SA1110 IRQ each time you re-read the SA1111 IRQ status.h]hXA handler is expected to perform any necessary acknowledgement of the parent IRQ via the correct chip specific function. For instance, if the SA1111 is directly connected to a SA1110 GPIO, then you should acknowledge the SA1110 IRQ each time you re-read the SA1111 IRQ status.}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hXFor any child which doesn't have its own IRQ enable/disable controls (eg, SMC9196), the handler must mask or acknowledge the parent IRQ while the child handler is called, and the child handler should be the "simple" handler (not "edge" nor "level"). After the handler completes, the parent IRQ should be unmasked, and the status of all children must be re-checked for pending events. (see the Neponset IRQ handler for details). h]h)}(hXFor any child which doesn't have its own IRQ enable/disable controls (eg, SMC9196), the handler must mask or acknowledge the parent IRQ while the child handler is called, and the child handler should be the "simple" handler (not "edge" nor "level"). After the handler completes, the parent IRQ should be unmasked, and the status of all children must be re-checked for pending events. (see the Neponset IRQ handler for details).h]hXFor any child which doesn’t have its own IRQ enable/disable controls (eg, SMC9196), the handler must mask or acknowledge the parent IRQ while the child handler is called, and the child handler should be the “simple” handler (not “edge” nor “level”). After the handler completes, the parent IRQ should be unmasked, and the status of all children must be re-checked for pending events. (see the Neponset IRQ handler for details).}(hj;hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj7ubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(h@fixup_irq() is gone, as is `arch/arm/mach-*/include/mach/irq.h` h]h)}(h?fixup_irq() is gone, as is `arch/arm/mach-*/include/mach/irq.h`h](hfixup_irq() is gone, as is }(hjShhhNhNubhtitle_reference)}(h$`arch/arm/mach-*/include/mach/irq.h`h]h"arch/arm/mach-*/include/mach/irq.h}(hj]hhhNhNubah}(h]h ]h"]h$]h&]uh1j[hjSubeh}(h]h ]h"]h$]h&]uh1hhhhKhjOubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubeh}(h]h ]h"]h$]h&]enumtypearabicprefixhsuffix.uh1jhjhhhhhKyubh)}(hXPlease note that this will not solve all problems - some of them are hardware based. Mixing level-based and edge-based IRQs on the same parent signal (eg neponset) is one such area where a software based solution can't provide the full answer to low IRQ latency.h]hX Please note that this will not solve all problems - some of them are hardware based. Mixing level-based and edge-based IRQs on the same parent signal (eg neponset) is one such area where a software based solution can’t provide the full answer to low IRQ latency.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubeh}(h]so-what-s-changedah ]h"]so, what's changed?ah$]h&]uh1hhhhhhhhKwubeh}(h] interruptsah ]h"] interruptsah$]h&]uh1hhhhhhhhKubeh}(h]h ]h"]h$]h&]sourcehuh1hcurrent_sourceN current_lineNsettingsdocutils.frontendValues)}(hN generatorN datestampN source_linkN source_urlN toc_backlinksentryfootnote_backlinksK sectnum_xformKstrip_commentsNstrip_elements_with_classesN strip_classesN report_levelK halt_levelKexit_status_levelKdebugNwarning_streamN tracebackinput_encoding utf-8-siginput_encoding_error_handlerstrictoutput_encodingutf-8output_encoding_error_handlerjerror_encodingutf-8error_encoding_error_handlerbackslashreplace language_codeenrecord_dependenciesNconfigN id_prefixhauto_id_prefixid dump_settingsNdump_internalsNdump_transformsNdump_pseudo_xmlNexpose_internalsNstrict_visitorN_disable_configN_sourceh _destinationN _config_files]7/var/lib/git/docbuild/linux/Documentation/docutils.confafile_insertion_enabled raw_enabledKline_length_limitM'pep_referencesN pep_base_urlhttps://peps.python.org/pep_file_url_templatepep-%04drfc_referencesN rfc_base_url&https://datatracker.ietf.org/doc/html/ tab_widthKtrim_footnote_reference_spacesyntax_highlightlong smart_quotessmartquotes_locales]character_level_inline_markupdoctitle_xform docinfo_xformKsectsubtitle_xform image_loadinglinkembed_stylesheetcloak_email_addressessection_self_linkenvNubreporterNindirect_targets]substitution_defs}substitution_names}refnames}refids}nameids}(jjjju nametypes}(jjuh}(jhjju footnote_refs} citation_refs} autofootnotes]autofootnote_refs]symbol_footnotes]symbol_footnote_refs] footnotes] citations]autofootnote_startKsymbol_footnote_startK id_counter collectionsCounter}Rparse_messages]transform_messages] transformerN include_log] decorationNhhub.