1STRUCT IRQ_CHIP_TYPE(9) Structures STRUCT IRQ_CHIP_TYPE(9)
2
3
4
6 struct_irq_chip_type - Generic interrupt chip instance for a flow type
7
9 struct irq_chip_type {
10 struct irq_chip chip;
11 struct irq_chip_regs regs;
12 irq_flow_handler_t handler;
13 u32 type;
14 };
15
17 chip
18 The real interrupt chip which provides the callbacks
19
20 regs
21 Register offsets for this chip
22
23 handler
24 Flow handler associated with this chip
25
26 type
27 Chip can handle these flow types
28
30 A irq_generic_chip can have several instances of irq_chip_type when it
31 requires different functions and register offsets for different flow
32 types.
33
35 Thomas Gleixner <tglx@linutronix.de>
36 Author.
37
38 Ingo Molnar <mingo@elte.hu>
39 Author.
40
42Kernel Hackers Manual 3.10 June 2019 STRUCT IRQ_CHIP_TYPE(9)