2 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
3 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
5 * This file contains the interrupt descriptor management code
7 * Detailed information is available in Documentation/DocBook/genericirq
10 #include <linux/irq.h>
11 #include <linux/slab.h>
12 #include <linux/export.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel_stat.h>
15 #include <linux/radix-tree.h>
16 #include <linux/bitmap.h>
17 #include <linux/irqdomain.h>
19 #include "internals.h"
22 * lockdep: we want to handle all irq_desc locks as a single lock-class:
24 static struct lock_class_key irq_desc_lock_class
;
26 #if defined(CONFIG_SMP)
27 static void __init
init_irq_default_affinity(void)
29 alloc_cpumask_var(&irq_default_affinity
, GFP_NOWAIT
);
30 cpumask_setall(irq_default_affinity
);
33 static void __init
init_irq_default_affinity(void)
39 static int alloc_masks(struct irq_desc
*desc
, gfp_t gfp
, int node
)
41 if (!zalloc_cpumask_var_node(&desc
->irq_data
.affinity
, gfp
, node
))
44 #ifdef CONFIG_GENERIC_PENDING_IRQ
45 if (!zalloc_cpumask_var_node(&desc
->pending_mask
, gfp
, node
)) {
46 free_cpumask_var(desc
->irq_data
.affinity
);
53 static void desc_smp_init(struct irq_desc
*desc
, int node
)
55 desc
->irq_data
.node
= node
;
56 cpumask_copy(desc
->irq_data
.affinity
, irq_default_affinity
);
57 #ifdef CONFIG_GENERIC_PENDING_IRQ
58 cpumask_clear(desc
->pending_mask
);
62 static inline int desc_node(struct irq_desc
*desc
)
64 return desc
->irq_data
.node
;
69 alloc_masks(struct irq_desc
*desc
, gfp_t gfp
, int node
) { return 0; }
70 static inline void desc_smp_init(struct irq_desc
*desc
, int node
) { }
71 static inline int desc_node(struct irq_desc
*desc
) { return 0; }
74 static void desc_set_defaults(unsigned int irq
, struct irq_desc
*desc
, int node
,
79 desc
->irq_data
.irq
= irq
;
80 desc
->irq_data
.chip
= &no_irq_chip
;
81 desc
->irq_data
.chip_data
= NULL
;
82 desc
->irq_data
.handler_data
= NULL
;
83 desc
->irq_data
.msi_desc
= NULL
;
84 irq_settings_clr_and_set(desc
, ~0, _IRQ_DEFAULT_INIT_FLAGS
);
85 irqd_set(&desc
->irq_data
, IRQD_IRQ_DISABLED
);
86 desc
->handle_irq
= handle_bad_irq
;
89 desc
->irqs_unhandled
= 0;
92 for_each_possible_cpu(cpu
)
93 *per_cpu_ptr(desc
->kstat_irqs
, cpu
) = 0;
94 desc_smp_init(desc
, node
);
97 int nr_irqs
= NR_IRQS
;
98 EXPORT_SYMBOL_GPL(nr_irqs
);
100 static DEFINE_MUTEX(sparse_irq_lock
);
101 static DECLARE_BITMAP(allocated_irqs
, IRQ_BITMAP_BITS
);
103 #ifdef CONFIG_SPARSE_IRQ
105 static RADIX_TREE(irq_desc_tree
, GFP_KERNEL
);
107 static void irq_insert_desc(unsigned int irq
, struct irq_desc
*desc
)
109 radix_tree_insert(&irq_desc_tree
, irq
, desc
);
112 struct irq_desc
*irq_to_desc(unsigned int irq
)
114 return radix_tree_lookup(&irq_desc_tree
, irq
);
116 EXPORT_SYMBOL(irq_to_desc
);
118 static void delete_irq_desc(unsigned int irq
)
120 radix_tree_delete(&irq_desc_tree
, irq
);
124 static void free_masks(struct irq_desc
*desc
)
126 #ifdef CONFIG_GENERIC_PENDING_IRQ
127 free_cpumask_var(desc
->pending_mask
);
129 free_cpumask_var(desc
->irq_data
.affinity
);
132 static inline void free_masks(struct irq_desc
*desc
) { }
135 void irq_lock_sparse(void)
137 mutex_lock(&sparse_irq_lock
);
140 void irq_unlock_sparse(void)
142 mutex_unlock(&sparse_irq_lock
);
145 static struct irq_desc
*alloc_desc(int irq
, int node
, struct module
*owner
)
147 struct irq_desc
*desc
;
148 gfp_t gfp
= GFP_KERNEL
;
150 desc
= kzalloc_node(sizeof(*desc
), gfp
, node
);
153 /* allocate based on nr_cpu_ids */
154 desc
->kstat_irqs
= alloc_percpu(unsigned int);
155 if (!desc
->kstat_irqs
)
158 if (alloc_masks(desc
, gfp
, node
))
161 raw_spin_lock_init(&desc
->lock
);
162 lockdep_set_class(&desc
->lock
, &irq_desc_lock_class
);
164 desc_set_defaults(irq
, desc
, node
, owner
);
169 free_percpu(desc
->kstat_irqs
);
175 static void free_desc(unsigned int irq
)
177 struct irq_desc
*desc
= irq_to_desc(irq
);
179 unregister_irq_proc(irq
, desc
);
182 * sparse_irq_lock protects also show_interrupts() and
183 * kstat_irq_usr(). Once we deleted the descriptor from the
184 * sparse tree we can free it. Access in proc will fail to
185 * lookup the descriptor.
187 mutex_lock(&sparse_irq_lock
);
188 delete_irq_desc(irq
);
189 mutex_unlock(&sparse_irq_lock
);
192 free_percpu(desc
->kstat_irqs
);
196 static int alloc_descs(unsigned int start
, unsigned int cnt
, int node
,
197 struct module
*owner
)
199 struct irq_desc
*desc
;
202 for (i
= 0; i
< cnt
; i
++) {
203 desc
= alloc_desc(start
+ i
, node
, owner
);
206 mutex_lock(&sparse_irq_lock
);
207 irq_insert_desc(start
+ i
, desc
);
208 mutex_unlock(&sparse_irq_lock
);
213 for (i
--; i
>= 0; i
--)
214 free_desc(start
+ i
);
216 mutex_lock(&sparse_irq_lock
);
217 bitmap_clear(allocated_irqs
, start
, cnt
);
218 mutex_unlock(&sparse_irq_lock
);
222 static int irq_expand_nr_irqs(unsigned int nr
)
224 if (nr
> IRQ_BITMAP_BITS
)
230 int __init
early_irq_init(void)
232 int i
, initcnt
, node
= first_online_node
;
233 struct irq_desc
*desc
;
235 init_irq_default_affinity();
237 /* Let arch update nr_irqs and return the nr of preallocated irqs */
238 initcnt
= arch_probe_nr_irqs();
239 printk(KERN_INFO
"NR_IRQS:%d nr_irqs:%d %d\n", NR_IRQS
, nr_irqs
, initcnt
);
241 if (WARN_ON(nr_irqs
> IRQ_BITMAP_BITS
))
242 nr_irqs
= IRQ_BITMAP_BITS
;
244 if (WARN_ON(initcnt
> IRQ_BITMAP_BITS
))
245 initcnt
= IRQ_BITMAP_BITS
;
247 if (initcnt
> nr_irqs
)
250 for (i
= 0; i
< initcnt
; i
++) {
251 desc
= alloc_desc(i
, node
, NULL
);
252 set_bit(i
, allocated_irqs
);
253 irq_insert_desc(i
, desc
);
255 return arch_early_irq_init();
258 #else /* !CONFIG_SPARSE_IRQ */
260 struct irq_desc irq_desc
[NR_IRQS
] __cacheline_aligned_in_smp
= {
261 [0 ... NR_IRQS
-1] = {
262 .handle_irq
= handle_bad_irq
,
264 .lock
= __RAW_SPIN_LOCK_UNLOCKED(irq_desc
->lock
),
268 int __init
early_irq_init(void)
270 int count
, i
, node
= first_online_node
;
271 struct irq_desc
*desc
;
273 init_irq_default_affinity();
275 printk(KERN_INFO
"NR_IRQS:%d\n", NR_IRQS
);
278 count
= ARRAY_SIZE(irq_desc
);
280 for (i
= 0; i
< count
; i
++) {
281 desc
[i
].kstat_irqs
= alloc_percpu(unsigned int);
282 alloc_masks(&desc
[i
], GFP_KERNEL
, node
);
283 raw_spin_lock_init(&desc
[i
].lock
);
284 lockdep_set_class(&desc
[i
].lock
, &irq_desc_lock_class
);
285 desc_set_defaults(i
, &desc
[i
], node
, NULL
);
287 return arch_early_irq_init();
290 struct irq_desc
*irq_to_desc(unsigned int irq
)
292 return (irq
< NR_IRQS
) ? irq_desc
+ irq
: NULL
;
294 EXPORT_SYMBOL(irq_to_desc
);
296 static void free_desc(unsigned int irq
)
298 struct irq_desc
*desc
= irq_to_desc(irq
);
301 raw_spin_lock_irqsave(&desc
->lock
, flags
);
302 desc_set_defaults(irq
, desc
, desc_node(desc
), NULL
);
303 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
306 static inline int alloc_descs(unsigned int start
, unsigned int cnt
, int node
,
307 struct module
*owner
)
311 for (i
= 0; i
< cnt
; i
++) {
312 struct irq_desc
*desc
= irq_to_desc(start
+ i
);
319 static int irq_expand_nr_irqs(unsigned int nr
)
324 void irq_mark_irq(unsigned int irq
)
326 mutex_lock(&sparse_irq_lock
);
327 bitmap_set(allocated_irqs
, irq
, 1);
328 mutex_unlock(&sparse_irq_lock
);
331 #ifdef CONFIG_GENERIC_IRQ_LEGACY
332 void irq_init_desc(unsigned int irq
)
338 #endif /* !CONFIG_SPARSE_IRQ */
341 * generic_handle_irq - Invoke the handler for a particular irq
342 * @irq: The irq number to handle
345 int generic_handle_irq(unsigned int irq
)
347 struct irq_desc
*desc
= irq_to_desc(irq
);
351 generic_handle_irq_desc(irq
, desc
);
354 EXPORT_SYMBOL_GPL(generic_handle_irq
);
356 #ifdef CONFIG_HANDLE_DOMAIN_IRQ
358 * __handle_domain_irq - Invoke the handler for a HW irq belonging to a domain
359 * @domain: The domain where to perform the lookup
360 * @hwirq: The HW irq number to convert to a logical one
361 * @lookup: Whether to perform the domain lookup or not
362 * @regs: Register file coming from the low-level handling code
364 * Returns: 0 on success, or -EINVAL if conversion has failed
366 int __handle_domain_irq(struct irq_domain
*domain
, unsigned int hwirq
,
367 bool lookup
, struct pt_regs
*regs
)
369 struct pt_regs
*old_regs
= set_irq_regs(regs
);
370 unsigned int irq
= hwirq
;
375 #ifdef CONFIG_IRQ_DOMAIN
377 irq
= irq_find_mapping(domain
, hwirq
);
381 * Some hardware gives randomly wrong interrupts. Rather
382 * than crashing, do something sensible.
384 if (unlikely(!irq
|| irq
>= nr_irqs
)) {
388 generic_handle_irq(irq
);
392 set_irq_regs(old_regs
);
397 /* Dynamic interrupt handling */
400 * irq_free_descs - free irq descriptors
401 * @from: Start of descriptor range
402 * @cnt: Number of consecutive irqs to free
404 void irq_free_descs(unsigned int from
, unsigned int cnt
)
408 if (from
>= nr_irqs
|| (from
+ cnt
) > nr_irqs
)
411 for (i
= 0; i
< cnt
; i
++)
414 mutex_lock(&sparse_irq_lock
);
415 bitmap_clear(allocated_irqs
, from
, cnt
);
416 mutex_unlock(&sparse_irq_lock
);
418 EXPORT_SYMBOL_GPL(irq_free_descs
);
421 * irq_alloc_descs - allocate and initialize a range of irq descriptors
422 * @irq: Allocate for specific irq number if irq >= 0
423 * @from: Start the search from this irq number
424 * @cnt: Number of consecutive irqs to allocate.
425 * @node: Preferred node on which the irq descriptor should be allocated
426 * @owner: Owning module (can be NULL)
428 * Returns the first irq number or error code
431 __irq_alloc_descs(int irq
, unsigned int from
, unsigned int cnt
, int node
,
432 struct module
*owner
)
445 * For interrupts which are freely allocated the
446 * architecture can force a lower bound to the @from
447 * argument. x86 uses this to exclude the GSI space.
449 from
= arch_dynirq_lower_bound(from
);
452 mutex_lock(&sparse_irq_lock
);
454 start
= bitmap_find_next_zero_area(allocated_irqs
, IRQ_BITMAP_BITS
,
457 if (irq
>=0 && start
!= irq
)
460 if (start
+ cnt
> nr_irqs
) {
461 ret
= irq_expand_nr_irqs(start
+ cnt
);
466 bitmap_set(allocated_irqs
, start
, cnt
);
467 mutex_unlock(&sparse_irq_lock
);
468 return alloc_descs(start
, cnt
, node
, owner
);
471 mutex_unlock(&sparse_irq_lock
);
474 EXPORT_SYMBOL_GPL(__irq_alloc_descs
);
476 #ifdef CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
478 * irq_alloc_hwirqs - Allocate an irq descriptor and initialize the hardware
479 * @cnt: number of interrupts to allocate
480 * @node: node on which to allocate
482 * Returns an interrupt number > 0 or 0, if the allocation fails.
484 unsigned int irq_alloc_hwirqs(int cnt
, int node
)
486 int i
, irq
= __irq_alloc_descs(-1, 0, cnt
, node
, NULL
);
491 for (i
= irq
; cnt
> 0; i
++, cnt
--) {
492 if (arch_setup_hwirq(i
, node
))
494 irq_clear_status_flags(i
, _IRQ_NOREQUEST
);
499 for (i
--; i
>= irq
; i
--) {
500 irq_set_status_flags(i
, _IRQ_NOREQUEST
| _IRQ_NOPROBE
);
501 arch_teardown_hwirq(i
);
503 irq_free_descs(irq
, cnt
);
506 EXPORT_SYMBOL_GPL(irq_alloc_hwirqs
);
509 * irq_free_hwirqs - Free irq descriptor and cleanup the hardware
510 * @from: Free from irq number
511 * @cnt: number of interrupts to free
514 void irq_free_hwirqs(unsigned int from
, int cnt
)
518 for (i
= from
, j
= cnt
; j
> 0; i
++, j
--) {
519 irq_set_status_flags(i
, _IRQ_NOREQUEST
| _IRQ_NOPROBE
);
520 arch_teardown_hwirq(i
);
522 irq_free_descs(from
, cnt
);
524 EXPORT_SYMBOL_GPL(irq_free_hwirqs
);
528 * irq_get_next_irq - get next allocated irq number
529 * @offset: where to start the search
531 * Returns next irq number after offset or nr_irqs if none is found.
533 unsigned int irq_get_next_irq(unsigned int offset
)
535 return find_next_bit(allocated_irqs
, nr_irqs
, offset
);
539 __irq_get_desc_lock(unsigned int irq
, unsigned long *flags
, bool bus
,
542 struct irq_desc
*desc
= irq_to_desc(irq
);
545 if (check
& _IRQ_DESC_CHECK
) {
546 if ((check
& _IRQ_DESC_PERCPU
) &&
547 !irq_settings_is_per_cpu_devid(desc
))
550 if (!(check
& _IRQ_DESC_PERCPU
) &&
551 irq_settings_is_per_cpu_devid(desc
))
557 raw_spin_lock_irqsave(&desc
->lock
, *flags
);
562 void __irq_put_desc_unlock(struct irq_desc
*desc
, unsigned long flags
, bool bus
)
564 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
566 chip_bus_sync_unlock(desc
);
569 int irq_set_percpu_devid(unsigned int irq
)
571 struct irq_desc
*desc
= irq_to_desc(irq
);
576 if (desc
->percpu_enabled
)
579 desc
->percpu_enabled
= kzalloc(sizeof(*desc
->percpu_enabled
), GFP_KERNEL
);
581 if (!desc
->percpu_enabled
)
584 irq_set_percpu_devid_flags(irq
);
588 void kstat_incr_irq_this_cpu(unsigned int irq
)
590 kstat_incr_irqs_this_cpu(irq
, irq_to_desc(irq
));
594 * kstat_irqs_cpu - Get the statistics for an interrupt on a cpu
595 * @irq: The interrupt number
596 * @cpu: The cpu number
598 * Returns the sum of interrupt counts on @cpu since boot for
599 * @irq. The caller must ensure that the interrupt is not removed
602 unsigned int kstat_irqs_cpu(unsigned int irq
, int cpu
)
604 struct irq_desc
*desc
= irq_to_desc(irq
);
606 return desc
&& desc
->kstat_irqs
?
607 *per_cpu_ptr(desc
->kstat_irqs
, cpu
) : 0;
611 * kstat_irqs - Get the statistics for an interrupt
612 * @irq: The interrupt number
614 * Returns the sum of interrupt counts on all cpus since boot for
615 * @irq. The caller must ensure that the interrupt is not removed
618 unsigned int kstat_irqs(unsigned int irq
)
620 struct irq_desc
*desc
= irq_to_desc(irq
);
624 if (!desc
|| !desc
->kstat_irqs
)
626 for_each_possible_cpu(cpu
)
627 sum
+= *per_cpu_ptr(desc
->kstat_irqs
, cpu
);
632 * kstat_irqs_usr - Get the statistics for an interrupt
633 * @irq: The interrupt number
635 * Returns the sum of interrupt counts on all cpus since boot for
636 * @irq. Contrary to kstat_irqs() this can be called from any
637 * preemptible context. It's protected against concurrent removal of
638 * an interrupt descriptor when sparse irqs are enabled.
640 unsigned int kstat_irqs_usr(unsigned int irq
)
645 sum
= kstat_irqs(irq
);