blob: b60950bf5a16fb57286d95515bb0ceaa2022410a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IRQ subsystem internal functions and variables:
3 */
4
5extern int noirqdebug;
6
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -07007/* Set default functions for irq_chip structures: */
8extern void irq_chip_set_defaults(struct irq_chip *chip);
9
10/* Set default handler: */
11extern void compat_irq_chip_set_default_handler(struct irq_desc *desc);
12
David Brownell0c5d1eb2008-10-01 14:46:18 -070013extern int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
14 unsigned long flags);
15
Yinghai Lu48a1b102008-12-11 00:15:01 -080016extern struct lock_class_key irq_desc_lock_class;
17extern void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr);
Yinghai Lu0f3c2a82009-02-08 16:18:03 -080018extern void clear_kstat_irqs(struct irq_desc *desc);
Yinghai Lu48a1b102008-12-11 00:15:01 -080019extern spinlock_t sparse_irq_lock;
20extern struct irq_desc *irq_desc_ptrs[NR_IRQS];
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#ifdef CONFIG_PROC_FS
Yinghai Lu2c6927a2008-08-19 20:50:11 -070023extern void register_irq_proc(unsigned int irq, struct irq_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024extern void register_handler_proc(unsigned int irq, struct irqaction *action);
25extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
26#else
Yinghai Lu2c6927a2008-08-19 20:50:11 -070027static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static inline void register_handler_proc(unsigned int irq,
29 struct irqaction *action) { }
30static inline void unregister_handler_proc(unsigned int irq,
31 struct irqaction *action) { }
32#endif
33
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +010034extern int irq_select_affinity_usr(unsigned int irq);
35
Ingo Molnar43f77752006-06-29 02:24:58 -070036/*
37 * Debugging printout:
38 */
39
40#include <linux/kallsyms.h>
41
42#define P(f) if (desc->status & f) printk("%14s set\n", #f)
43
44static inline void print_irq_desc(unsigned int irq, struct irq_desc *desc)
45{
46 printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n",
47 irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled);
48 printk("->handle_irq(): %p, ", desc->handle_irq);
49 print_symbol("%s\n", (unsigned long)desc->handle_irq);
50 printk("->chip(): %p, ", desc->chip);
51 print_symbol("%s\n", (unsigned long)desc->chip);
52 printk("->action(): %p\n", desc->action);
53 if (desc->action) {
54 printk("->action->handler(): %p, ", desc->action->handler);
55 print_symbol("%s\n", (unsigned long)desc->action->handler);
56 }
57
58 P(IRQ_INPROGRESS);
59 P(IRQ_DISABLED);
60 P(IRQ_PENDING);
61 P(IRQ_REPLAY);
62 P(IRQ_AUTODETECT);
63 P(IRQ_WAITING);
64 P(IRQ_LEVEL);
65 P(IRQ_MASKED);
66#ifdef CONFIG_IRQ_PER_CPU
67 P(IRQ_PER_CPU);
68#endif
69 P(IRQ_NOPROBE);
70 P(IRQ_NOREQUEST);
71 P(IRQ_NOAUTOEN);
72}
73
74#undef P
75