blob: 0a2a4b697bcbffcc219b024a04113e1358d109d9 [file] [log] [blame]
Thomas Gleixner3795de22010-09-22 17:09:43 +02001/*
2 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
3 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
4 *
5 * This file contains the interrupt descriptor management code
6 *
7 * Detailed information is available in Documentation/DocBook/genericirq
8 *
9 */
10#include <linux/irq.h>
11#include <linux/slab.h>
Paul Gortmakerec53cf22011-09-19 20:33:19 -040012#include <linux/export.h>
Thomas Gleixner3795de22010-09-22 17:09:43 +020013#include <linux/interrupt.h>
14#include <linux/kernel_stat.h>
15#include <linux/radix-tree.h>
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020016#include <linux/bitmap.h>
Marc Zyngier76ba59f2014-08-26 11:03:16 +010017#include <linux/irqdomain.h>
Thomas Gleixner3795de22010-09-22 17:09:43 +020018
19#include "internals.h"
20
21/*
22 * lockdep: we want to handle all irq_desc locks as a single lock-class:
23 */
Thomas Gleixner78f90d92010-09-29 17:18:47 +020024static struct lock_class_key irq_desc_lock_class;
Thomas Gleixner3795de22010-09-22 17:09:43 +020025
Thomas Gleixnerfe051432011-05-18 12:53:03 +020026#if defined(CONFIG_SMP)
Thomas Gleixner3795de22010-09-22 17:09:43 +020027static void __init init_irq_default_affinity(void)
28{
29 alloc_cpumask_var(&irq_default_affinity, GFP_NOWAIT);
30 cpumask_setall(irq_default_affinity);
31}
32#else
33static void __init init_irq_default_affinity(void)
34{
35}
36#endif
37
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020038#ifdef CONFIG_SMP
39static int alloc_masks(struct irq_desc *desc, gfp_t gfp, int node)
40{
41 if (!zalloc_cpumask_var_node(&desc->irq_data.affinity, gfp, node))
42 return -ENOMEM;
43
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);
47 return -ENOMEM;
48 }
49#endif
50 return 0;
51}
52
53static void desc_smp_init(struct irq_desc *desc, int node)
54{
Thomas Gleixneraa99ec02010-09-27 20:02:56 +020055 desc->irq_data.node = node;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020056 cpumask_copy(desc->irq_data.affinity, irq_default_affinity);
Thomas Gleixnerb7b29332010-09-29 18:46:55 +020057#ifdef CONFIG_GENERIC_PENDING_IRQ
58 cpumask_clear(desc->pending_mask);
59#endif
60}
61
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020062#else
63static inline int
64alloc_masks(struct irq_desc *desc, gfp_t gfp, int node) { return 0; }
65static inline void desc_smp_init(struct irq_desc *desc, int node) { }
66#endif
67
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +020068static void desc_set_defaults(unsigned int irq, struct irq_desc *desc, int node,
69 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020070{
Eric Dumazet6c9ae002011-01-13 15:45:38 -080071 int cpu;
72
Jiang Liu0d0b4c82015-06-01 16:05:12 +080073 desc->irq_data.common = &desc->irq_common_data;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020074 desc->irq_data.irq = irq;
75 desc->irq_data.chip = &no_irq_chip;
76 desc->irq_data.chip_data = NULL;
77 desc->irq_data.handler_data = NULL;
78 desc->irq_data.msi_desc = NULL;
Thomas Gleixnerf9e49892011-02-09 14:54:49 +010079 irq_settings_clr_and_set(desc, ~0, _IRQ_DEFAULT_INIT_FLAGS);
Thomas Gleixner801a0e92011-03-27 11:02:49 +020080 irqd_set(&desc->irq_data, IRQD_IRQ_DISABLED);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020081 desc->handle_irq = handle_bad_irq;
82 desc->depth = 1;
Thomas Gleixnerb7b29332010-09-29 18:46:55 +020083 desc->irq_count = 0;
84 desc->irqs_unhandled = 0;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020085 desc->name = NULL;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +020086 desc->owner = owner;
Eric Dumazet6c9ae002011-01-13 15:45:38 -080087 for_each_possible_cpu(cpu)
88 *per_cpu_ptr(desc->kstat_irqs, cpu) = 0;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020089 desc_smp_init(desc, node);
90}
91
Thomas Gleixner3795de22010-09-22 17:09:43 +020092int nr_irqs = NR_IRQS;
93EXPORT_SYMBOL_GPL(nr_irqs);
94
Thomas Gleixnera05a9002010-10-08 12:47:53 +020095static DEFINE_MUTEX(sparse_irq_lock);
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +010096static DECLARE_BITMAP(allocated_irqs, IRQ_BITMAP_BITS);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020097
Thomas Gleixner3795de22010-09-22 17:09:43 +020098#ifdef CONFIG_SPARSE_IRQ
99
Thomas Gleixnerbaa0d232010-10-05 15:14:35 +0200100static RADIX_TREE(irq_desc_tree, GFP_KERNEL);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200101
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200102static void irq_insert_desc(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner3795de22010-09-22 17:09:43 +0200103{
104 radix_tree_insert(&irq_desc_tree, irq, desc);
105}
106
107struct irq_desc *irq_to_desc(unsigned int irq)
108{
109 return radix_tree_lookup(&irq_desc_tree, irq);
110}
Jiri Kosina3911ff32012-05-13 12:13:15 +0200111EXPORT_SYMBOL(irq_to_desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200112
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200113static void delete_irq_desc(unsigned int irq)
114{
115 radix_tree_delete(&irq_desc_tree, irq);
116}
117
118#ifdef CONFIG_SMP
119static void free_masks(struct irq_desc *desc)
120{
121#ifdef CONFIG_GENERIC_PENDING_IRQ
122 free_cpumask_var(desc->pending_mask);
123#endif
Thomas Gleixnerc0a19eb2010-10-12 21:58:27 +0200124 free_cpumask_var(desc->irq_data.affinity);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200125}
126#else
127static inline void free_masks(struct irq_desc *desc) { }
128#endif
129
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100130void irq_lock_sparse(void)
131{
132 mutex_lock(&sparse_irq_lock);
133}
134
135void irq_unlock_sparse(void)
136{
137 mutex_unlock(&sparse_irq_lock);
138}
139
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200140static struct irq_desc *alloc_desc(int irq, int node, struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200141{
142 struct irq_desc *desc;
Thomas Gleixnerbaa0d232010-10-05 15:14:35 +0200143 gfp_t gfp = GFP_KERNEL;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200144
145 desc = kzalloc_node(sizeof(*desc), gfp, node);
146 if (!desc)
147 return NULL;
148 /* allocate based on nr_cpu_ids */
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800149 desc->kstat_irqs = alloc_percpu(unsigned int);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200150 if (!desc->kstat_irqs)
151 goto err_desc;
152
153 if (alloc_masks(desc, gfp, node))
154 goto err_kstat;
155
156 raw_spin_lock_init(&desc->lock);
157 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
158
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200159 desc_set_defaults(irq, desc, node, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200160
161 return desc;
162
163err_kstat:
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800164 free_percpu(desc->kstat_irqs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200165err_desc:
166 kfree(desc);
167 return NULL;
168}
169
170static void free_desc(unsigned int irq)
171{
172 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200173
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200174 unregister_irq_proc(irq, desc);
175
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100176 /*
177 * sparse_irq_lock protects also show_interrupts() and
178 * kstat_irq_usr(). Once we deleted the descriptor from the
179 * sparse tree we can free it. Access in proc will fail to
180 * lookup the descriptor.
181 */
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200182 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200183 delete_irq_desc(irq);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200184 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200185
186 free_masks(desc);
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800187 free_percpu(desc->kstat_irqs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200188 kfree(desc);
189}
190
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200191static int alloc_descs(unsigned int start, unsigned int cnt, int node,
192 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200193{
194 struct irq_desc *desc;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200195 int i;
196
197 for (i = 0; i < cnt; i++) {
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200198 desc = alloc_desc(start + i, node, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200199 if (!desc)
200 goto err;
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200201 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200202 irq_insert_desc(start + i, desc);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200203 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200204 }
205 return start;
206
207err:
208 for (i--; i >= 0; i--)
209 free_desc(start + i);
210
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200211 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200212 bitmap_clear(allocated_irqs, start, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200213 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200214 return -ENOMEM;
215}
216
Yinghai Lued4dea62011-02-19 11:07:37 -0800217static int irq_expand_nr_irqs(unsigned int nr)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100218{
Yinghai Lued4dea62011-02-19 11:07:37 -0800219 if (nr > IRQ_BITMAP_BITS)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100220 return -ENOMEM;
Yinghai Lued4dea62011-02-19 11:07:37 -0800221 nr_irqs = nr;
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100222 return 0;
223}
224
Thomas Gleixner3795de22010-09-22 17:09:43 +0200225int __init early_irq_init(void)
226{
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200227 int i, initcnt, node = first_online_node;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200228 struct irq_desc *desc;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200229
230 init_irq_default_affinity();
231
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200232 /* Let arch update nr_irqs and return the nr of preallocated irqs */
233 initcnt = arch_probe_nr_irqs();
234 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d %d\n", NR_IRQS, nr_irqs, initcnt);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200235
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +0100236 if (WARN_ON(nr_irqs > IRQ_BITMAP_BITS))
237 nr_irqs = IRQ_BITMAP_BITS;
238
239 if (WARN_ON(initcnt > IRQ_BITMAP_BITS))
240 initcnt = IRQ_BITMAP_BITS;
241
242 if (initcnt > nr_irqs)
243 nr_irqs = initcnt;
244
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200245 for (i = 0; i < initcnt; i++) {
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200246 desc = alloc_desc(i, node, NULL);
Thomas Gleixneraa99ec02010-09-27 20:02:56 +0200247 set_bit(i, allocated_irqs);
248 irq_insert_desc(i, desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200249 }
Thomas Gleixner3795de22010-09-22 17:09:43 +0200250 return arch_early_irq_init();
251}
252
Thomas Gleixner3795de22010-09-22 17:09:43 +0200253#else /* !CONFIG_SPARSE_IRQ */
254
255struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
256 [0 ... NR_IRQS-1] = {
Thomas Gleixner3795de22010-09-22 17:09:43 +0200257 .handle_irq = handle_bad_irq,
258 .depth = 1,
259 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock),
260 }
261};
262
Thomas Gleixner3795de22010-09-22 17:09:43 +0200263int __init early_irq_init(void)
264{
Thomas Gleixneraa99ec02010-09-27 20:02:56 +0200265 int count, i, node = first_online_node;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200266 struct irq_desc *desc;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200267
268 init_irq_default_affinity();
269
270 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
271
272 desc = irq_desc;
273 count = ARRAY_SIZE(irq_desc);
274
275 for (i = 0; i < count; i++) {
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800276 desc[i].kstat_irqs = alloc_percpu(unsigned int);
Linus Walleije7fbad32011-05-31 18:14:39 +0200277 alloc_masks(&desc[i], GFP_KERNEL, node);
278 raw_spin_lock_init(&desc[i].lock);
Thomas Gleixner154cd382010-09-22 15:58:45 +0200279 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200280 desc_set_defaults(i, &desc[i], node, NULL);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200281 }
282 return arch_early_irq_init();
283}
284
285struct irq_desc *irq_to_desc(unsigned int irq)
286{
287 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
288}
Paul Gortmaker2c45aad2014-02-10 13:39:53 -0500289EXPORT_SYMBOL(irq_to_desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200290
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200291static void free_desc(unsigned int irq)
292{
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000293 struct irq_desc *desc = irq_to_desc(irq);
294 unsigned long flags;
295
296 raw_spin_lock_irqsave(&desc->lock, flags);
Jiang Liu67830112015-06-01 16:05:13 +0800297 desc_set_defaults(irq, desc, irq_desc_get_node(desc), NULL);
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000298 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200299}
300
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200301static inline int alloc_descs(unsigned int start, unsigned int cnt, int node,
302 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200303{
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200304 u32 i;
305
306 for (i = 0; i < cnt; i++) {
307 struct irq_desc *desc = irq_to_desc(start + i);
308
309 desc->owner = owner;
310 }
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200311 return start;
312}
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100313
Yinghai Lued4dea62011-02-19 11:07:37 -0800314static int irq_expand_nr_irqs(unsigned int nr)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100315{
316 return -ENOMEM;
317}
318
Thomas Gleixnerf63b6a02014-05-07 15:44:21 +0000319void irq_mark_irq(unsigned int irq)
320{
321 mutex_lock(&sparse_irq_lock);
322 bitmap_set(allocated_irqs, irq, 1);
323 mutex_unlock(&sparse_irq_lock);
324}
325
Thomas Gleixnerc940e012014-05-07 15:44:22 +0000326#ifdef CONFIG_GENERIC_IRQ_LEGACY
327void irq_init_desc(unsigned int irq)
328{
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000329 free_desc(irq);
Thomas Gleixnerc940e012014-05-07 15:44:22 +0000330}
331#endif
332
Thomas Gleixner3795de22010-09-22 17:09:43 +0200333#endif /* !CONFIG_SPARSE_IRQ */
334
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200335/**
336 * generic_handle_irq - Invoke the handler for a particular irq
337 * @irq: The irq number to handle
338 *
339 */
340int generic_handle_irq(unsigned int irq)
341{
342 struct irq_desc *desc = irq_to_desc(irq);
343
344 if (!desc)
345 return -EINVAL;
346 generic_handle_irq_desc(irq, desc);
347 return 0;
348}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100349EXPORT_SYMBOL_GPL(generic_handle_irq);
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200350
Marc Zyngier76ba59f2014-08-26 11:03:16 +0100351#ifdef CONFIG_HANDLE_DOMAIN_IRQ
352/**
353 * __handle_domain_irq - Invoke the handler for a HW irq belonging to a domain
354 * @domain: The domain where to perform the lookup
355 * @hwirq: The HW irq number to convert to a logical one
356 * @lookup: Whether to perform the domain lookup or not
357 * @regs: Register file coming from the low-level handling code
358 *
359 * Returns: 0 on success, or -EINVAL if conversion has failed
360 */
361int __handle_domain_irq(struct irq_domain *domain, unsigned int hwirq,
362 bool lookup, struct pt_regs *regs)
363{
364 struct pt_regs *old_regs = set_irq_regs(regs);
365 unsigned int irq = hwirq;
366 int ret = 0;
367
368 irq_enter();
369
370#ifdef CONFIG_IRQ_DOMAIN
371 if (lookup)
372 irq = irq_find_mapping(domain, hwirq);
373#endif
374
375 /*
376 * Some hardware gives randomly wrong interrupts. Rather
377 * than crashing, do something sensible.
378 */
379 if (unlikely(!irq || irq >= nr_irqs)) {
380 ack_bad_irq(irq);
381 ret = -EINVAL;
382 } else {
383 generic_handle_irq(irq);
384 }
385
386 irq_exit();
387 set_irq_regs(old_regs);
388 return ret;
389}
390#endif
391
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200392/* Dynamic interrupt handling */
393
394/**
395 * irq_free_descs - free irq descriptors
396 * @from: Start of descriptor range
397 * @cnt: Number of consecutive irqs to free
398 */
399void irq_free_descs(unsigned int from, unsigned int cnt)
400{
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200401 int i;
402
403 if (from >= nr_irqs || (from + cnt) > nr_irqs)
404 return;
405
406 for (i = 0; i < cnt; i++)
407 free_desc(from + i);
408
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200409 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200410 bitmap_clear(allocated_irqs, from, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200411 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200412}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100413EXPORT_SYMBOL_GPL(irq_free_descs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200414
415/**
416 * irq_alloc_descs - allocate and initialize a range of irq descriptors
417 * @irq: Allocate for specific irq number if irq >= 0
418 * @from: Start the search from this irq number
419 * @cnt: Number of consecutive irqs to allocate.
420 * @node: Preferred node on which the irq descriptor should be allocated
Randy Dunlapd522a0d2011-08-18 12:19:27 -0700421 * @owner: Owning module (can be NULL)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200422 *
423 * Returns the first irq number or error code
424 */
425int __ref
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200426__irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node,
427 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200428{
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200429 int start, ret;
430
431 if (!cnt)
432 return -EINVAL;
433
Mark Brownc5182b82011-06-02 18:55:13 +0100434 if (irq >= 0) {
435 if (from > irq)
436 return -EINVAL;
437 from = irq;
Thomas Gleixner62a08ae2014-04-24 09:50:53 +0200438 } else {
439 /*
440 * For interrupts which are freely allocated the
441 * architecture can force a lower bound to the @from
442 * argument. x86 uses this to exclude the GSI space.
443 */
444 from = arch_dynirq_lower_bound(from);
Mark Brownc5182b82011-06-02 18:55:13 +0100445 }
446
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200447 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200448
Yinghai Lued4dea62011-02-19 11:07:37 -0800449 start = bitmap_find_next_zero_area(allocated_irqs, IRQ_BITMAP_BITS,
450 from, cnt, 0);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200451 ret = -EEXIST;
452 if (irq >=0 && start != irq)
453 goto err;
454
Yinghai Lued4dea62011-02-19 11:07:37 -0800455 if (start + cnt > nr_irqs) {
456 ret = irq_expand_nr_irqs(start + cnt);
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100457 if (ret)
458 goto err;
459 }
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200460
461 bitmap_set(allocated_irqs, start, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200462 mutex_unlock(&sparse_irq_lock);
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200463 return alloc_descs(start, cnt, node, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200464
465err:
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200466 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200467 return ret;
468}
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200469EXPORT_SYMBOL_GPL(__irq_alloc_descs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200470
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000471#ifdef CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
472/**
473 * irq_alloc_hwirqs - Allocate an irq descriptor and initialize the hardware
474 * @cnt: number of interrupts to allocate
475 * @node: node on which to allocate
476 *
477 * Returns an interrupt number > 0 or 0, if the allocation fails.
478 */
479unsigned int irq_alloc_hwirqs(int cnt, int node)
480{
481 int i, irq = __irq_alloc_descs(-1, 0, cnt, node, NULL);
482
483 if (irq < 0)
484 return 0;
485
486 for (i = irq; cnt > 0; i++, cnt--) {
487 if (arch_setup_hwirq(i, node))
488 goto err;
489 irq_clear_status_flags(i, _IRQ_NOREQUEST);
490 }
491 return irq;
492
493err:
494 for (i--; i >= irq; i--) {
495 irq_set_status_flags(i, _IRQ_NOREQUEST | _IRQ_NOPROBE);
496 arch_teardown_hwirq(i);
497 }
498 irq_free_descs(irq, cnt);
499 return 0;
500}
501EXPORT_SYMBOL_GPL(irq_alloc_hwirqs);
502
503/**
504 * irq_free_hwirqs - Free irq descriptor and cleanup the hardware
505 * @from: Free from irq number
506 * @cnt: number of interrupts to free
507 *
508 */
509void irq_free_hwirqs(unsigned int from, int cnt)
510{
Keith Busch8844aad2014-06-30 16:24:44 -0600511 int i, j;
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000512
Keith Busch8844aad2014-06-30 16:24:44 -0600513 for (i = from, j = cnt; j > 0; i++, j--) {
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000514 irq_set_status_flags(i, _IRQ_NOREQUEST | _IRQ_NOPROBE);
515 arch_teardown_hwirq(i);
516 }
517 irq_free_descs(from, cnt);
518}
519EXPORT_SYMBOL_GPL(irq_free_hwirqs);
520#endif
521
Thomas Gleixnera98d24b2010-09-30 10:45:07 +0200522/**
523 * irq_get_next_irq - get next allocated irq number
524 * @offset: where to start the search
525 *
526 * Returns next irq number after offset or nr_irqs if none is found.
527 */
528unsigned int irq_get_next_irq(unsigned int offset)
529{
530 return find_next_bit(allocated_irqs, nr_irqs, offset);
531}
532
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100533struct irq_desc *
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100534__irq_get_desc_lock(unsigned int irq, unsigned long *flags, bool bus,
535 unsigned int check)
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100536{
537 struct irq_desc *desc = irq_to_desc(irq);
538
539 if (desc) {
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100540 if (check & _IRQ_DESC_CHECK) {
541 if ((check & _IRQ_DESC_PERCPU) &&
542 !irq_settings_is_per_cpu_devid(desc))
543 return NULL;
544
545 if (!(check & _IRQ_DESC_PERCPU) &&
546 irq_settings_is_per_cpu_devid(desc))
547 return NULL;
548 }
549
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100550 if (bus)
551 chip_bus_lock(desc);
552 raw_spin_lock_irqsave(&desc->lock, *flags);
553 }
554 return desc;
555}
556
557void __irq_put_desc_unlock(struct irq_desc *desc, unsigned long flags, bool bus)
558{
559 raw_spin_unlock_irqrestore(&desc->lock, flags);
560 if (bus)
561 chip_bus_sync_unlock(desc);
562}
563
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100564int irq_set_percpu_devid(unsigned int irq)
565{
566 struct irq_desc *desc = irq_to_desc(irq);
567
568 if (!desc)
569 return -EINVAL;
570
571 if (desc->percpu_enabled)
572 return -EINVAL;
573
574 desc->percpu_enabled = kzalloc(sizeof(*desc->percpu_enabled), GFP_KERNEL);
575
576 if (!desc->percpu_enabled)
577 return -ENOMEM;
578
579 irq_set_percpu_devid_flags(irq);
580 return 0;
581}
582
Thomas Gleixner792d0012014-02-23 21:40:14 +0000583void kstat_incr_irq_this_cpu(unsigned int irq)
584{
Jiang Liub51bf952015-06-04 12:13:25 +0800585 kstat_incr_irqs_this_cpu(irq_to_desc(irq));
Thomas Gleixner792d0012014-02-23 21:40:14 +0000586}
587
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100588/**
589 * kstat_irqs_cpu - Get the statistics for an interrupt on a cpu
590 * @irq: The interrupt number
591 * @cpu: The cpu number
592 *
593 * Returns the sum of interrupt counts on @cpu since boot for
594 * @irq. The caller must ensure that the interrupt is not removed
595 * concurrently.
596 */
Thomas Gleixner3795de22010-09-22 17:09:43 +0200597unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
598{
599 struct irq_desc *desc = irq_to_desc(irq);
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800600
601 return desc && desc->kstat_irqs ?
602 *per_cpu_ptr(desc->kstat_irqs, cpu) : 0;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200603}
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700604
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100605/**
606 * kstat_irqs - Get the statistics for an interrupt
607 * @irq: The interrupt number
608 *
609 * Returns the sum of interrupt counts on all cpus since boot for
610 * @irq. The caller must ensure that the interrupt is not removed
611 * concurrently.
612 */
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700613unsigned int kstat_irqs(unsigned int irq)
614{
615 struct irq_desc *desc = irq_to_desc(irq);
616 int cpu;
Nicholas Mc Guire5e9662f2015-05-03 10:48:50 +0200617 unsigned int sum = 0;
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700618
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800619 if (!desc || !desc->kstat_irqs)
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700620 return 0;
621 for_each_possible_cpu(cpu)
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800622 sum += *per_cpu_ptr(desc->kstat_irqs, cpu);
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700623 return sum;
624}
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100625
626/**
627 * kstat_irqs_usr - Get the statistics for an interrupt
628 * @irq: The interrupt number
629 *
630 * Returns the sum of interrupt counts on all cpus since boot for
631 * @irq. Contrary to kstat_irqs() this can be called from any
632 * preemptible context. It's protected against concurrent removal of
633 * an interrupt descriptor when sparse irqs are enabled.
634 */
635unsigned int kstat_irqs_usr(unsigned int irq)
636{
Nicholas Mc Guire7df0b272015-05-03 10:49:11 +0200637 unsigned int sum;
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100638
639 irq_lock_sparse();
640 sum = kstat_irqs(irq);
641 irq_unlock_sparse();
642 return sum;
643}