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_common_data
.affinity
,
45 #ifdef CONFIG_GENERIC_PENDING_IRQ
46 if (!zalloc_cpumask_var_node(&desc
->pending_mask
, gfp
, node
)) {
47 free_cpumask_var(desc
->irq_common_data
.affinity
);
54 static void desc_smp_init(struct irq_desc
*desc
, int node
)
56 cpumask_copy(desc
->irq_common_data
.affinity
, irq_default_affinity
);
57 #ifdef CONFIG_GENERIC_PENDING_IRQ
58 cpumask_clear(desc
->pending_mask
);
61 desc
->irq_common_data
.node
= node
;
67 alloc_masks(struct irq_desc
*desc
, gfp_t gfp
, int node
) { return 0; }
68 static inline void desc_smp_init(struct irq_desc
*desc
, int node
) { }
71 static void desc_set_defaults(unsigned int irq
, struct irq_desc
*desc
, int node
,
76 desc
->irq_common_data
.handler_data
= NULL
;
77 desc
->irq_common_data
.msi_desc
= NULL
;
79 desc
->irq_data
.common
= &desc
->irq_common_data
;
80 desc
->irq_data
.irq
= irq
;
81 desc
->irq_data
.chip
= &no_irq_chip
;
82 desc
->irq_data
.chip_data
= NULL
;
83 irq_settings_clr_and_set(desc
, ~0, _IRQ_DEFAULT_INIT_FLAGS
);
84 irqd_set(&desc
->irq_data
, IRQD_IRQ_DISABLED
);
85 desc
->handle_irq
= handle_bad_irq
;
88 desc
->irqs_unhandled
= 0;
91 for_each_possible_cpu(cpu
)
92 *per_cpu_ptr(desc
->kstat_irqs
, cpu
) = 0;
93 desc_smp_init(desc
, node
);
96 int nr_irqs
= NR_IRQS
;
97 EXPORT_SYMBOL_GPL(nr_irqs
);
99 static DEFINE_MUTEX(sparse_irq_lock
);
100 static DECLARE_BITMAP(allocated_irqs
, IRQ_BITMAP_BITS
);
102 #ifdef CONFIG_SPARSE_IRQ
104 static RADIX_TREE(irq_desc_tree
, GFP_KERNEL
);
106 static void irq_insert_desc(unsigned int irq
, struct irq_desc
*desc
)
108 radix_tree_insert(&irq_desc_tree
, irq
, desc
);
111 struct irq_desc
*irq_to_desc(unsigned int irq
)
113 return radix_tree_lookup(&irq_desc_tree
, irq
);
115 EXPORT_SYMBOL(irq_to_desc
);
117 static void delete_irq_desc(unsigned int irq
)
119 radix_tree_delete(&irq_desc_tree
, irq
);
123 static void free_masks(struct irq_desc
*desc
)
125 #ifdef CONFIG_GENERIC_PENDING_IRQ
126 free_cpumask_var(desc
->pending_mask
);
128 free_cpumask_var(desc
->irq_common_data
.affinity
);
131 static inline void free_masks(struct irq_desc
*desc
) { }
134 void irq_lock_sparse(void)
136 mutex_lock(&sparse_irq_lock
);
139 void irq_unlock_sparse(void)
141 mutex_unlock(&sparse_irq_lock
);
144 static struct irq_desc
*alloc_desc(int irq
, int node
, struct module
*owner
)
146 struct irq_desc
*desc
;
147 gfp_t gfp
= GFP_KERNEL
;
149 desc
= kzalloc_node(sizeof(*desc
), gfp
, node
);
152 /* allocate based on nr_cpu_ids */
153 desc
->kstat_irqs
= alloc_percpu(unsigned int);
154 if (!desc
->kstat_irqs
)
157 if (alloc_masks(desc
, gfp
, node
))
160 raw_spin_lock_init(&desc
->lock
);
161 lockdep_set_class(&desc
->lock
, &irq_desc_lock_class
);
163 desc_set_defaults(irq
, desc
, node
, owner
);
168 free_percpu(desc
->kstat_irqs
);
174 static void free_desc(unsigned int irq
)
176 struct irq_desc
*desc
= irq_to_desc(irq
);
178 unregister_irq_proc(irq
, desc
);
181 * sparse_irq_lock protects also show_interrupts() and
182 * kstat_irq_usr(). Once we deleted the descriptor from the
183 * sparse tree we can free it. Access in proc will fail to
184 * lookup the descriptor.
186 mutex_lock(&sparse_irq_lock
);
187 delete_irq_desc(irq
);
188 mutex_unlock(&sparse_irq_lock
);
191 free_percpu(desc
->kstat_irqs
);
195 static int alloc_descs(unsigned int start
, unsigned int cnt
, int node
,
196 struct module
*owner
)
198 struct irq_desc
*desc
;
201 for (i
= 0; i
< cnt
; i
++) {
202 desc
= alloc_desc(start
+ i
, node
, owner
);
205 mutex_lock(&sparse_irq_lock
);
206 irq_insert_desc(start
+ i
, desc
);
207 mutex_unlock(&sparse_irq_lock
);
212 for (i
--; i
>= 0; i
--)
213 free_desc(start
+ i
);
215 mutex_lock(&sparse_irq_lock
);
216 bitmap_clear(allocated_irqs
, start
, cnt
);
217 mutex_unlock(&sparse_irq_lock
);
221 static int irq_expand_nr_irqs(unsigned int nr
)
223 if (nr
> IRQ_BITMAP_BITS
)
229 int __init
early_irq_init(void)
231 int i
, initcnt
, node
= first_online_node
;
232 struct irq_desc
*desc
;
234 init_irq_default_affinity();
236 /* Let arch update nr_irqs and return the nr of preallocated irqs */
237 initcnt
= arch_probe_nr_irqs();
238 printk(KERN_INFO
"NR_IRQS:%d nr_irqs:%d %d\n", NR_IRQS
, nr_irqs
, initcnt
);
240 if (WARN_ON(nr_irqs
> IRQ_BITMAP_BITS
))
241 nr_irqs
= IRQ_BITMAP_BITS
;
243 if (WARN_ON(initcnt
> IRQ_BITMAP_BITS
))
244 initcnt
= IRQ_BITMAP_BITS
;
246 if (initcnt
> nr_irqs
)
249 for (i
= 0; i
< initcnt
; i
++) {
250 desc
= alloc_desc(i
, node
, NULL
);
251 set_bit(i
, allocated_irqs
);
252 irq_insert_desc(i
, desc
);
254 return arch_early_irq_init();
257 #else /* !CONFIG_SPARSE_IRQ */
259 struct irq_desc irq_desc
[NR_IRQS
] __cacheline_aligned_in_smp
= {
260 [0 ... NR_IRQS
-1] = {
261 .handle_irq
= handle_bad_irq
,
263 .lock
= __RAW_SPIN_LOCK_UNLOCKED(irq_desc
->lock
),
267 int __init
early_irq_init(void)
269 int count
, i
, node
= first_online_node
;
270 struct irq_desc
*desc
;
272 init_irq_default_affinity();
274 printk(KERN_INFO
"NR_IRQS:%d\n", NR_IRQS
);
277 count
= ARRAY_SIZE(irq_desc
);
279 for (i
= 0; i
< count
; i
++) {
280 desc
[i
].kstat_irqs
= alloc_percpu(unsigned int);
281 alloc_masks(&desc
[i
], GFP_KERNEL
, node
);
282 raw_spin_lock_init(&desc
[i
].lock
);
283 lockdep_set_class(&desc
[i
].lock
, &irq_desc_lock_class
);
284 desc_set_defaults(i
, &desc
[i
], node
, NULL
);
286 return arch_early_irq_init();
289 struct irq_desc
*irq_to_desc(unsigned int irq
)
291 return (irq
< NR_IRQS
) ? irq_desc
+ irq
: NULL
;
293 EXPORT_SYMBOL(irq_to_desc
);
295 static void free_desc(unsigned int irq
)
297 struct irq_desc
*desc
= irq_to_desc(irq
);
300 raw_spin_lock_irqsave(&desc
->lock
, flags
);
301 desc_set_defaults(irq
, desc
, irq_desc_get_node(desc
), NULL
);
302 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
305 static inline int alloc_descs(unsigned int start
, unsigned int cnt
, int node
,
306 struct module
*owner
)
310 for (i
= 0; i
< cnt
; i
++) {
311 struct irq_desc
*desc
= irq_to_desc(start
+ i
);
318 static int irq_expand_nr_irqs(unsigned int nr
)
323 void irq_mark_irq(unsigned int irq
)
325 mutex_lock(&sparse_irq_lock
);
326 bitmap_set(allocated_irqs
, irq
, 1);
327 mutex_unlock(&sparse_irq_lock
);
330 #ifdef CONFIG_GENERIC_IRQ_LEGACY
331 void irq_init_desc(unsigned int irq
)
337 #endif /* !CONFIG_SPARSE_IRQ */
340 * generic_handle_irq - Invoke the handler for a particular irq
341 * @irq: The irq number to handle
344 int generic_handle_irq(unsigned int irq
)
346 struct irq_desc
*desc
= irq_to_desc(irq
);
350 generic_handle_irq_desc(desc
);
353 EXPORT_SYMBOL_GPL(generic_handle_irq
);
355 #ifdef CONFIG_HANDLE_DOMAIN_IRQ
357 * __handle_domain_irq - Invoke the handler for a HW irq belonging to a domain
358 * @domain: The domain where to perform the lookup
359 * @hwirq: The HW irq number to convert to a logical one
360 * @lookup: Whether to perform the domain lookup or not
361 * @regs: Register file coming from the low-level handling code
363 * Returns: 0 on success, or -EINVAL if conversion has failed
365 int __handle_domain_irq(struct irq_domain
*domain
, unsigned int hwirq
,
366 bool lookup
, struct pt_regs
*regs
)
368 struct pt_regs
*old_regs
= set_irq_regs(regs
);
369 unsigned int irq
= hwirq
;
374 #ifdef CONFIG_IRQ_DOMAIN
376 irq
= irq_find_mapping(domain
, hwirq
);
380 * Some hardware gives randomly wrong interrupts. Rather
381 * than crashing, do something sensible.
383 if (unlikely(!irq
|| irq
>= nr_irqs
)) {
387 generic_handle_irq(irq
);
391 set_irq_regs(old_regs
);
396 /* Dynamic interrupt handling */
399 * irq_free_descs - free irq descriptors
400 * @from: Start of descriptor range
401 * @cnt: Number of consecutive irqs to free
403 void irq_free_descs(unsigned int from
, unsigned int cnt
)
407 if (from
>= nr_irqs
|| (from
+ cnt
) > nr_irqs
)
410 for (i
= 0; i
< cnt
; i
++)
413 mutex_lock(&sparse_irq_lock
);
414 bitmap_clear(allocated_irqs
, from
, cnt
);
415 mutex_unlock(&sparse_irq_lock
);
417 EXPORT_SYMBOL_GPL(irq_free_descs
);
420 * irq_alloc_descs - allocate and initialize a range of irq descriptors
421 * @irq: Allocate for specific irq number if irq >= 0
422 * @from: Start the search from this irq number
423 * @cnt: Number of consecutive irqs to allocate.
424 * @node: Preferred node on which the irq descriptor should be allocated
425 * @owner: Owning module (can be NULL)
427 * Returns the first irq number or error code
430 __irq_alloc_descs(int irq
, unsigned int from
, unsigned int cnt
, int node
,
431 struct module
*owner
)
444 * For interrupts which are freely allocated the
445 * architecture can force a lower bound to the @from
446 * argument. x86 uses this to exclude the GSI space.
448 from
= arch_dynirq_lower_bound(from
);
451 mutex_lock(&sparse_irq_lock
);
453 start
= bitmap_find_next_zero_area(allocated_irqs
, IRQ_BITMAP_BITS
,
456 if (irq
>=0 && start
!= irq
)
459 if (start
+ cnt
> nr_irqs
) {
460 ret
= irq_expand_nr_irqs(start
+ cnt
);
465 bitmap_set(allocated_irqs
, start
, cnt
);
466 mutex_unlock(&sparse_irq_lock
);
467 return alloc_descs(start
, cnt
, node
, owner
);
470 mutex_unlock(&sparse_irq_lock
);
473 EXPORT_SYMBOL_GPL(__irq_alloc_descs
);
475 #ifdef CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
477 * irq_alloc_hwirqs - Allocate an irq descriptor and initialize the hardware
478 * @cnt: number of interrupts to allocate
479 * @node: node on which to allocate
481 * Returns an interrupt number > 0 or 0, if the allocation fails.
483 unsigned int irq_alloc_hwirqs(int cnt
, int node
)
485 int i
, irq
= __irq_alloc_descs(-1, 0, cnt
, node
, NULL
);
490 for (i
= irq
; cnt
> 0; i
++, cnt
--) {
491 if (arch_setup_hwirq(i
, node
))
493 irq_clear_status_flags(i
, _IRQ_NOREQUEST
);
498 for (i
--; i
>= irq
; i
--) {
499 irq_set_status_flags(i
, _IRQ_NOREQUEST
| _IRQ_NOPROBE
);
500 arch_teardown_hwirq(i
);
502 irq_free_descs(irq
, cnt
);
505 EXPORT_SYMBOL_GPL(irq_alloc_hwirqs
);
508 * irq_free_hwirqs - Free irq descriptor and cleanup the hardware
509 * @from: Free from irq number
510 * @cnt: number of interrupts to free
513 void irq_free_hwirqs(unsigned int from
, int cnt
)
517 for (i
= from
, j
= cnt
; j
> 0; i
++, j
--) {
518 irq_set_status_flags(i
, _IRQ_NOREQUEST
| _IRQ_NOPROBE
);
519 arch_teardown_hwirq(i
);
521 irq_free_descs(from
, cnt
);
523 EXPORT_SYMBOL_GPL(irq_free_hwirqs
);
527 * irq_get_next_irq - get next allocated irq number
528 * @offset: where to start the search
530 * Returns next irq number after offset or nr_irqs if none is found.
532 unsigned int irq_get_next_irq(unsigned int offset
)
534 return find_next_bit(allocated_irqs
, nr_irqs
, offset
);
538 __irq_get_desc_lock(unsigned int irq
, unsigned long *flags
, bool bus
,
541 struct irq_desc
*desc
= irq_to_desc(irq
);
544 if (check
& _IRQ_DESC_CHECK
) {
545 if ((check
& _IRQ_DESC_PERCPU
) &&
546 !irq_settings_is_per_cpu_devid(desc
))
549 if (!(check
& _IRQ_DESC_PERCPU
) &&
550 irq_settings_is_per_cpu_devid(desc
))
556 raw_spin_lock_irqsave(&desc
->lock
, *flags
);
561 void __irq_put_desc_unlock(struct irq_desc
*desc
, unsigned long flags
, bool bus
)
563 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
565 chip_bus_sync_unlock(desc
);
568 int irq_set_percpu_devid(unsigned int irq
)
570 struct irq_desc
*desc
= irq_to_desc(irq
);
575 if (desc
->percpu_enabled
)
578 desc
->percpu_enabled
= kzalloc(sizeof(*desc
->percpu_enabled
), GFP_KERNEL
);
580 if (!desc
->percpu_enabled
)
583 irq_set_percpu_devid_flags(irq
);
587 void kstat_incr_irq_this_cpu(unsigned int irq
)
589 kstat_incr_irqs_this_cpu(irq_to_desc(irq
));
593 * kstat_irqs_cpu - Get the statistics for an interrupt on a cpu
594 * @irq: The interrupt number
595 * @cpu: The cpu number
597 * Returns the sum of interrupt counts on @cpu since boot for
598 * @irq. The caller must ensure that the interrupt is not removed
601 unsigned int kstat_irqs_cpu(unsigned int irq
, int cpu
)
603 struct irq_desc
*desc
= irq_to_desc(irq
);
605 return desc
&& desc
->kstat_irqs
?
606 *per_cpu_ptr(desc
->kstat_irqs
, cpu
) : 0;
610 * kstat_irqs - Get the statistics for an interrupt
611 * @irq: The interrupt number
613 * Returns the sum of interrupt counts on all cpus since boot for
614 * @irq. The caller must ensure that the interrupt is not removed
617 unsigned int kstat_irqs(unsigned int irq
)
619 struct irq_desc
*desc
= irq_to_desc(irq
);
621 unsigned int sum
= 0;
623 if (!desc
|| !desc
->kstat_irqs
)
625 for_each_possible_cpu(cpu
)
626 sum
+= *per_cpu_ptr(desc
->kstat_irqs
, cpu
);
631 * kstat_irqs_usr - Get the statistics for an interrupt
632 * @irq: The interrupt number
634 * Returns the sum of interrupt counts on all cpus since boot for
635 * @irq. Contrary to kstat_irqs() this can be called from any
636 * preemptible context. It's protected against concurrent removal of
637 * an interrupt descriptor when sparse irqs are enabled.
639 unsigned int kstat_irqs_usr(unsigned int irq
)
644 sum
= kstat_irqs(irq
);