Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\irq\chip.c Create Date:2022-07-28 10:11:22
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:irq_may_run

Proto:static bool irq_may_run(struct irq_desc *desc)

Type:bool

Parameter:

TypeParameterName
struct irq_desc *desc
504  mask = IRQD_IRQ_INPROGRESS | IRQD_WAKEUP_ARMED
510  If Not irqd_has_set( & irq_data, mask) Then Return true
518  If irq_pm_check_wakeup(desc) Then Return false
524  Return irq_check_poll(desc)
Caller
NameDescribe
handle_simple_irqhandle_simple_irq - Simple and software-decoded IRQs.*@desc: the interrupt description structure for this irq* Simple interrupts are either sent from a demultiplexing interrupt* handler or come from hardware, where no interrupt hardware control
handle_untracked_irqhandle_untracked_irq - Simple and software-decoded IRQs.*@desc: the interrupt description structure for this irq* Untracked interrupts are sent from a demultiplexing interrupt* handler when the demultiplexer does not know which device it its
handle_level_irqhandle_level_irq - Level type irq handler*@desc: the interrupt description structure for this irq* Level type interrupts are active as long as the hardware line has* the active level
handle_fasteoi_irqhandle_fasteoi_irq - irq handler for transparent controllers*@desc: the interrupt description structure for this irq* Only a single callback will be issued to the chip: an ->eoi()* call when the interrupt has been serviced
handle_edge_irqhandle_edge_irq - edge type IRQ handler*@desc: the interrupt description structure for this irq* Interrupt occures on the falling and/or rising edge of a hardware* signal. The occurrence is latched into the irq controller hardware