blob: c63f3bc88f0b77727a45a2a8d44936d797aeaa01 [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);
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +010015extern 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);
David Brownell0c5d1eb2008-10-01 14:46:18 -070017
Yinghai Lu48a1b102008-12-11 00:15:01 -080018extern struct lock_class_key irq_desc_lock_class;
Yinghai Lu85ac16d2009-04-27 18:00:38 -070019extern void init_kstat_irqs(struct irq_desc *desc, int node, int nr);
Yinghai Lu0f3c2a82009-02-08 16:18:03 -080020extern void clear_kstat_irqs(struct irq_desc *desc);
Thomas Gleixner239007b2009-11-17 16:46:45 +010021extern raw_spinlock_t sparse_irq_lock;
Mike Travis0fa0ebb2009-01-10 22:24:06 -080022
23#ifdef CONFIG_SPARSE_IRQ
Yinghai Lu99558f02010-02-10 01:20:34 -080024void replace_irq_desc(unsigned int irq, struct irq_desc *desc);
Mike Travis0fa0ebb2009-01-10 22:24:06 -080025#endif
Yinghai Lu48a1b102008-12-11 00:15:01 -080026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#ifdef CONFIG_PROC_FS
Yinghai Lu2c6927a2008-08-19 20:50:11 -070028extern void register_irq_proc(unsigned int irq, struct irq_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029extern void register_handler_proc(unsigned int irq, struct irqaction *action);
30extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
31#else
Yinghai Lu2c6927a2008-08-19 20:50:11 -070032static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static inline void register_handler_proc(unsigned int irq,
34 struct irqaction *action) { }
35static inline void unregister_handler_proc(unsigned int irq,
36 struct irqaction *action) { }
37#endif
38
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +010039extern int irq_select_affinity_usr(unsigned int irq);
40
Thomas Gleixner591d2fb2009-07-21 11:09:39 +020041extern void irq_set_thread_affinity(struct irq_desc *desc);
Yinghai Lu57b150c2009-04-27 17:59:53 -070042
Thomas Gleixner70aedd22009-08-13 12:17:48 +020043/* Inline functions for support of irq chips on slow busses */
44static inline void chip_bus_lock(unsigned int irq, struct irq_desc *desc)
45{
46 if (unlikely(desc->chip->bus_lock))
47 desc->chip->bus_lock(irq);
48}
49
50static inline void chip_bus_sync_unlock(unsigned int irq, struct irq_desc *desc)
51{
52 if (unlikely(desc->chip->bus_sync_unlock))
53 desc->chip->bus_sync_unlock(irq);
54}
55
Ingo Molnar43f77752006-06-29 02:24:58 -070056/*
57 * Debugging printout:
58 */
59
60#include <linux/kallsyms.h>
61
62#define P(f) if (desc->status & f) printk("%14s set\n", #f)
63
64static inline void print_irq_desc(unsigned int irq, struct irq_desc *desc)
65{
66 printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n",
67 irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled);
68 printk("->handle_irq(): %p, ", desc->handle_irq);
69 print_symbol("%s\n", (unsigned long)desc->handle_irq);
70 printk("->chip(): %p, ", desc->chip);
71 print_symbol("%s\n", (unsigned long)desc->chip);
72 printk("->action(): %p\n", desc->action);
73 if (desc->action) {
74 printk("->action->handler(): %p, ", desc->action->handler);
75 print_symbol("%s\n", (unsigned long)desc->action->handler);
76 }
77
78 P(IRQ_INPROGRESS);
79 P(IRQ_DISABLED);
80 P(IRQ_PENDING);
81 P(IRQ_REPLAY);
82 P(IRQ_AUTODETECT);
83 P(IRQ_WAITING);
84 P(IRQ_LEVEL);
85 P(IRQ_MASKED);
86#ifdef CONFIG_IRQ_PER_CPU
87 P(IRQ_PER_CPU);
88#endif
89 P(IRQ_NOPROBE);
90 P(IRQ_NOREQUEST);
91 P(IRQ_NOAUTOEN);
92}
93
94#undef P
95