internals.h 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * IRQ subsystem internal functions and variables:
 */

extern int noirqdebug;

7 8
#define irq_data_to_desc(data)	container_of(data, struct irq_desc, irq_data)

T
Thomas Gleixner 已提交
9 10 11 12 13 14
/* 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);

D
David Brownell 已提交
15 16
extern int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
		unsigned long flags);
17 18
extern void __disable_irq(struct irq_desc *desc, unsigned int irq, bool susp);
extern void __enable_irq(struct irq_desc *desc, unsigned int irq, bool resume);
D
David Brownell 已提交
19

20
extern struct lock_class_key irq_desc_lock_class;
21
extern void init_kstat_irqs(struct irq_desc *desc, int node, int nr);
Y
Yinghai Lu 已提交
22
extern void clear_kstat_irqs(struct irq_desc *desc);
23
extern raw_spinlock_t sparse_irq_lock;
24 25

#ifdef CONFIG_SPARSE_IRQ
26
void replace_irq_desc(unsigned int irq, struct irq_desc *desc);
27
#endif
28

L
Linus Torvalds 已提交
29
#ifdef CONFIG_PROC_FS
30
extern void register_irq_proc(unsigned int irq, struct irq_desc *desc);
L
Linus Torvalds 已提交
31 32 33
extern void register_handler_proc(unsigned int irq, struct irqaction *action);
extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
#else
34
static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { }
L
Linus Torvalds 已提交
35 36 37 38 39 40
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

41 42
extern int irq_select_affinity_usr(unsigned int irq);

43
extern void irq_set_thread_affinity(struct irq_desc *desc);
44

T
Thomas Gleixner 已提交
45
/* Inline functions for support of irq chips on slow busses */
46
static inline void chip_bus_lock(struct irq_desc *desc)
T
Thomas Gleixner 已提交
47
{
48 49
	if (unlikely(desc->irq_data.chip->irq_bus_lock))
		desc->irq_data.chip->irq_bus_lock(&desc->irq_data);
T
Thomas Gleixner 已提交
50 51
}

52
static inline void chip_bus_sync_unlock(struct irq_desc *desc)
T
Thomas Gleixner 已提交
53
{
54 55
	if (unlikely(desc->irq_data.chip->irq_bus_sync_unlock))
		desc->irq_data.chip->irq_bus_sync_unlock(&desc->irq_data);
T
Thomas Gleixner 已提交
56 57
}

58 59 60 61 62 63 64 65 66 67 68 69 70 71
/*
 * 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);
72 73
	printk("->irq_data.chip(): %p, ", desc->irq_data.chip);
	print_symbol("%s\n", (unsigned long)desc->irq_data.chip);
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
	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