2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* IRQ subsystem internal functions and variables:
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern int noirqdebug;
|
|
|
|
|
2006-06-29 11:24:51 +02:00
|
|
|
/* Set default functions for irq_chip structures: */
|
|
|
|
extern void irq_chip_set_defaults(struct irq_chip *chip);
|
|
|
|
|
|
|
|
/* Set default handler: */
|
|
|
|
extern void compat_irq_chip_set_default_handler(struct irq_desc *desc);
|
|
|
|
|
2008-10-01 23:46:18 +02:00
|
|
|
extern int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
|
|
|
|
unsigned long flags);
|
|
|
|
|
2008-12-11 09:15:01 +01:00
|
|
|
extern struct lock_class_key irq_desc_lock_class;
|
|
|
|
extern void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr);
|
2009-02-09 01:18:03 +01:00
|
|
|
extern void clear_kstat_irqs(struct irq_desc *desc);
|
2008-12-11 09:15:01 +01:00
|
|
|
extern spinlock_t sparse_irq_lock;
|
2009-01-11 07:24:06 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_SPARSE_IRQ
|
|
|
|
/* irq_desc_ptrs allocated at boot time */
|
|
|
|
extern struct irq_desc **irq_desc_ptrs;
|
|
|
|
#else
|
|
|
|
/* irq_desc_ptrs is a fixed size array */
|
2008-12-11 09:15:01 +01:00
|
|
|
extern struct irq_desc *irq_desc_ptrs[NR_IRQS];
|
2009-01-11 07:24:06 +01:00
|
|
|
#endif
|
2008-12-11 09:15:01 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifdef CONFIG_PROC_FS
|
2008-08-20 05:50:11 +02:00
|
|
|
extern void register_irq_proc(unsigned int irq, struct irq_desc *desc);
|
2005-04-17 00:20:36 +02:00
|
|
|
extern void register_handler_proc(unsigned int irq, struct irqaction *action);
|
|
|
|
extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
|
|
|
|
#else
|
2008-08-20 05:50:11 +02:00
|
|
|
static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { }
|
2005-04-17 00:20:36 +02:00
|
|
|
static inline void register_handler_proc(unsigned int irq,
|
|
|
|
struct irqaction *action) { }
|
|
|
|
static inline void unregister_handler_proc(unsigned int irq,
|
|
|
|
struct irqaction *action) { }
|
|
|
|
#endif
|
|
|
|
|
2008-11-07 13:18:30 +01:00
|
|
|
extern int irq_select_affinity_usr(unsigned int irq);
|
|
|
|
|
2006-06-29 11:24:58 +02:00
|
|
|
/*
|
|
|
|
* Debugging printout:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kallsyms.h>
|
|
|
|
|
|
|
|
#define P(f) if (desc->status & f) printk("%14s set\n", #f)
|
|
|
|
|
|
|
|
static inline void print_irq_desc(unsigned int irq, struct irq_desc *desc)
|
|
|
|
{
|
|
|
|
printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n",
|
|
|
|
irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled);
|
|
|
|
printk("->handle_irq(): %p, ", desc->handle_irq);
|
|
|
|
print_symbol("%s\n", (unsigned long)desc->handle_irq);
|
|
|
|
printk("->chip(): %p, ", desc->chip);
|
|
|
|
print_symbol("%s\n", (unsigned long)desc->chip);
|
|
|
|
printk("->action(): %p\n", desc->action);
|
|
|
|
if (desc->action) {
|
|
|
|
printk("->action->handler(): %p, ", desc->action->handler);
|
|
|
|
print_symbol("%s\n", (unsigned long)desc->action->handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
P(IRQ_INPROGRESS);
|
|
|
|
P(IRQ_DISABLED);
|
|
|
|
P(IRQ_PENDING);
|
|
|
|
P(IRQ_REPLAY);
|
|
|
|
P(IRQ_AUTODETECT);
|
|
|
|
P(IRQ_WAITING);
|
|
|
|
P(IRQ_LEVEL);
|
|
|
|
P(IRQ_MASKED);
|
|
|
|
#ifdef CONFIG_IRQ_PER_CPU
|
|
|
|
P(IRQ_PER_CPU);
|
|
|
|
#endif
|
|
|
|
P(IRQ_NOPROBE);
|
|
|
|
P(IRQ_NOREQUEST);
|
|
|
|
P(IRQ_NOAUTOEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef P
|
|
|
|
|