Merge commit 'linus/master' into HEAD
[linux-2.6-block.git] / kernel / irq / internals.h
CommitLineData
1da177e4
LT
1/*
2 * IRQ subsystem internal functions and variables:
3 */
4
5extern int noirqdebug;
6
6a6de9ef
TG
7/* 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
0c5d1eb7
DB
13extern int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
14 unsigned long flags);
0a0c5168
RW
15extern void __disable_irq(struct irq_desc *desc, unsigned int irq, bool susp);
16extern void __enable_irq(struct irq_desc *desc, unsigned int irq, bool resume);
0c5d1eb7 17
48a1b10a 18extern struct lock_class_key irq_desc_lock_class;
85ac16d0 19extern void init_kstat_irqs(struct irq_desc *desc, int node, int nr);
0f3c2a89 20extern void clear_kstat_irqs(struct irq_desc *desc);
48a1b10a 21extern spinlock_t sparse_irq_lock;
0fa0ebbf
MT
22
23#ifdef CONFIG_SPARSE_IRQ
24/* irq_desc_ptrs allocated at boot time */
25extern struct irq_desc **irq_desc_ptrs;
26#else
27/* irq_desc_ptrs is a fixed size array */
48a1b10a 28extern struct irq_desc *irq_desc_ptrs[NR_IRQS];
0fa0ebbf 29#endif
48a1b10a 30
1da177e4 31#ifdef CONFIG_PROC_FS
2c6927a3 32extern void register_irq_proc(unsigned int irq, struct irq_desc *desc);
1da177e4
LT
33extern void register_handler_proc(unsigned int irq, struct irqaction *action);
34extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
35#else
2c6927a3 36static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { }
1da177e4
LT
37static inline void register_handler_proc(unsigned int irq,
38 struct irqaction *action) { }
39static inline void unregister_handler_proc(unsigned int irq,
40 struct irqaction *action) { }
41#endif
42
f6d87f4b
TG
43extern int irq_select_affinity_usr(unsigned int irq);
44
57b150cc
YL
45extern void
46irq_set_thread_affinity(struct irq_desc *desc, const struct cpumask *cpumask);
47
43f77759
IM
48/*
49 * Debugging printout:
50 */
51
52#include <linux/kallsyms.h>
53
54#define P(f) if (desc->status & f) printk("%14s set\n", #f)
55
56static inline void print_irq_desc(unsigned int irq, struct irq_desc *desc)
57{
58 printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n",
59 irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled);
60 printk("->handle_irq(): %p, ", desc->handle_irq);
61 print_symbol("%s\n", (unsigned long)desc->handle_irq);
62 printk("->chip(): %p, ", desc->chip);
63 print_symbol("%s\n", (unsigned long)desc->chip);
64 printk("->action(): %p\n", desc->action);
65 if (desc->action) {
66 printk("->action->handler(): %p, ", desc->action->handler);
67 print_symbol("%s\n", (unsigned long)desc->action->handler);
68 }
69
70 P(IRQ_INPROGRESS);
71 P(IRQ_DISABLED);
72 P(IRQ_PENDING);
73 P(IRQ_REPLAY);
74 P(IRQ_AUTODETECT);
75 P(IRQ_WAITING);
76 P(IRQ_LEVEL);
77 P(IRQ_MASKED);
78#ifdef CONFIG_IRQ_PER_CPU
79 P(IRQ_PER_CPU);
80#endif
81 P(IRQ_NOPROBE);
82 P(IRQ_NOREQUEST);
83 P(IRQ_NOAUTOEN);
84}
85
86#undef P
87