2 * IRQ subsystem internal functions and variables:
7 /* Set default functions for irq_chip structures: */
8 extern void irq_chip_set_defaults(struct irq_chip
*chip
);
10 /* Set default handler: */
11 extern void compat_irq_chip_set_default_handler(struct irq_desc
*desc
);
13 extern int __irq_set_trigger(struct irq_desc
*desc
, unsigned int irq
,
15 extern void __disable_irq(struct irq_desc
*desc
, unsigned int irq
, bool susp
);
16 extern void __enable_irq(struct irq_desc
*desc
, unsigned int irq
, bool resume
);
18 extern struct lock_class_key irq_desc_lock_class
;
19 extern void init_kstat_irqs(struct irq_desc
*desc
, int cpu
, int nr
);
20 extern void clear_kstat_irqs(struct irq_desc
*desc
);
21 extern spinlock_t sparse_irq_lock
;
23 #ifdef CONFIG_SPARSE_IRQ
24 /* irq_desc_ptrs allocated at boot time */
25 extern struct irq_desc
**irq_desc_ptrs
;
27 /* irq_desc_ptrs is a fixed size array */
28 extern struct irq_desc
*irq_desc_ptrs
[NR_IRQS
];
32 extern void register_irq_proc(unsigned int irq
, struct irq_desc
*desc
);
33 extern void register_handler_proc(unsigned int irq
, struct irqaction
*action
);
34 extern void unregister_handler_proc(unsigned int irq
, struct irqaction
*action
);
36 static inline void register_irq_proc(unsigned int irq
, struct irq_desc
*desc
) { }
37 static inline void register_handler_proc(unsigned int irq
,
38 struct irqaction
*action
) { }
39 static inline void unregister_handler_proc(unsigned int irq
,
40 struct irqaction
*action
) { }
43 extern int irq_select_affinity_usr(unsigned int irq
);
49 #include <linux/kallsyms.h>
51 #define P(f) if (desc->status & f) printk("%14s set\n", #f)
53 static inline void print_irq_desc(unsigned int irq
, struct irq_desc
*desc
)
55 printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n",
56 irq
, desc
, desc
->depth
, desc
->irq_count
, desc
->irqs_unhandled
);
57 printk("->handle_irq(): %p, ", desc
->handle_irq
);
58 print_symbol("%s\n", (unsigned long)desc
->handle_irq
);
59 printk("->chip(): %p, ", desc
->chip
);
60 print_symbol("%s\n", (unsigned long)desc
->chip
);
61 printk("->action(): %p\n", desc
->action
);
63 printk("->action->handler(): %p, ", desc
->action
->handler
);
64 print_symbol("%s\n", (unsigned long)desc
->action
->handler
);
75 #ifdef CONFIG_IRQ_PER_CPU