Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * IRQ subsystem internal functions and variables: |
| 3 | */ |
| 4 | |
| 5 | extern int noirqdebug; |
| 6 | |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 7 | /* Set default functions for irq_chip structures: */ |
| 8 | extern void irq_chip_set_defaults(struct irq_chip *chip); |
| 9 | |
| 10 | /* Set default handler: */ |
| 11 | extern void compat_irq_chip_set_default_handler(struct irq_desc *desc); |
| 12 | |
David Brownell | 0c5d1eb | 2008-10-01 14:46:18 -0700 | [diff] [blame] | 13 | extern int __irq_set_trigger(struct irq_desc *desc, unsigned int irq, |
| 14 | unsigned long flags); |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 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); |
David Brownell | 0c5d1eb | 2008-10-01 14:46:18 -0700 | [diff] [blame] | 17 | |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 18 | extern struct lock_class_key irq_desc_lock_class; |
Yinghai Lu | 85ac16d | 2009-04-27 18:00:38 -0700 | [diff] [blame] | 19 | extern void init_kstat_irqs(struct irq_desc *desc, int node, int nr); |
Yinghai Lu | 0f3c2a8 | 2009-02-08 16:18:03 -0800 | [diff] [blame] | 20 | extern void clear_kstat_irqs(struct irq_desc *desc); |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 21 | extern spinlock_t sparse_irq_lock; |
Mike Travis | 0fa0ebb | 2009-01-10 22:24:06 -0800 | [diff] [blame] | 22 | |
| 23 | #ifdef CONFIG_SPARSE_IRQ |
| 24 | /* irq_desc_ptrs allocated at boot time */ |
| 25 | extern struct irq_desc **irq_desc_ptrs; |
| 26 | #else |
| 27 | /* irq_desc_ptrs is a fixed size array */ |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 28 | extern struct irq_desc *irq_desc_ptrs[NR_IRQS]; |
Mike Travis | 0fa0ebb | 2009-01-10 22:24:06 -0800 | [diff] [blame] | 29 | #endif |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_PROC_FS |
Yinghai Lu | 2c6927a | 2008-08-19 20:50:11 -0700 | [diff] [blame] | 32 | extern void register_irq_proc(unsigned int irq, struct irq_desc *desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | extern void register_handler_proc(unsigned int irq, struct irqaction *action); |
| 34 | extern void unregister_handler_proc(unsigned int irq, struct irqaction *action); |
| 35 | #else |
Yinghai Lu | 2c6927a | 2008-08-19 20:50:11 -0700 | [diff] [blame] | 36 | static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { } |
| 41 | #endif |
| 42 | |
Thomas Gleixner | f6d87f4 | 2008-11-07 13:18:30 +0100 | [diff] [blame] | 43 | extern int irq_select_affinity_usr(unsigned int irq); |
| 44 | |
Thomas Gleixner | 591d2fb | 2009-07-21 11:09:39 +0200 | [diff] [blame] | 45 | extern void irq_set_thread_affinity(struct irq_desc *desc); |
Yinghai Lu | 57b150c | 2009-04-27 17:59:53 -0700 | [diff] [blame] | 46 | |
Ingo Molnar | 43f7775 | 2006-06-29 02:24:58 -0700 | [diff] [blame] | 47 | /* |
| 48 | * Debugging printout: |
| 49 | */ |
| 50 | |
| 51 | #include <linux/kallsyms.h> |
| 52 | |
| 53 | #define P(f) if (desc->status & f) printk("%14s set\n", #f) |
| 54 | |
| 55 | static inline void print_irq_desc(unsigned int irq, struct irq_desc *desc) |
| 56 | { |
| 57 | printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n", |
| 58 | irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled); |
| 59 | printk("->handle_irq(): %p, ", desc->handle_irq); |
| 60 | print_symbol("%s\n", (unsigned long)desc->handle_irq); |
| 61 | printk("->chip(): %p, ", desc->chip); |
| 62 | print_symbol("%s\n", (unsigned long)desc->chip); |
| 63 | printk("->action(): %p\n", desc->action); |
| 64 | if (desc->action) { |
| 65 | printk("->action->handler(): %p, ", desc->action->handler); |
| 66 | print_symbol("%s\n", (unsigned long)desc->action->handler); |
| 67 | } |
| 68 | |
| 69 | P(IRQ_INPROGRESS); |
| 70 | P(IRQ_DISABLED); |
| 71 | P(IRQ_PENDING); |
| 72 | P(IRQ_REPLAY); |
| 73 | P(IRQ_AUTODETECT); |
| 74 | P(IRQ_WAITING); |
| 75 | P(IRQ_LEVEL); |
| 76 | P(IRQ_MASKED); |
| 77 | #ifdef CONFIG_IRQ_PER_CPU |
| 78 | P(IRQ_PER_CPU); |
| 79 | #endif |
| 80 | P(IRQ_NOPROBE); |
| 81 | P(IRQ_NOREQUEST); |
| 82 | P(IRQ_NOAUTOEN); |
| 83 | } |
| 84 | |
| 85 | #undef P |
| 86 | |