blob: 73a76e2ee936036f7be01e58e0d2bc46ee2ccc05 [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
62static inline int desc_node(struct irq_desc *desc)
63{
64 return desc->irq_data.node;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020065}
66
67#else
68static inline int
69alloc_masks(struct irq_desc *desc, gfp_t gfp, int node) { return 0; }
70static inline void desc_smp_init(struct irq_desc *desc, int node) { }
Thomas Gleixnerb7b29332010-09-29 18:46:55 +020071static inline int desc_node(struct irq_desc *desc) { return 0; }
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020072#endif
73
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +020074static void desc_set_defaults(unsigned int irq, struct irq_desc *desc, int node,
75 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020076{
Eric Dumazet6c9ae002011-01-13 15:45:38 -080077 int cpu;
78
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020079 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;
Thomas Gleixnerf9e49892011-02-09 14:54:49 +010084 irq_settings_clr_and_set(desc, ~0, _IRQ_DEFAULT_INIT_FLAGS);
Thomas Gleixner801a0e92011-03-27 11:02:49 +020085 irqd_set(&desc->irq_data, IRQD_IRQ_DISABLED);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020086 desc->handle_irq = handle_bad_irq;
87 desc->depth = 1;
Thomas Gleixnerb7b29332010-09-29 18:46:55 +020088 desc->irq_count = 0;
89 desc->irqs_unhandled = 0;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020090 desc->name = NULL;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +020091 desc->owner = owner;
Eric Dumazet6c9ae002011-01-13 15:45:38 -080092 for_each_possible_cpu(cpu)
93 *per_cpu_ptr(desc->kstat_irqs, cpu) = 0;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020094 desc_smp_init(desc, node);
95}
96
Thomas Gleixner3795de22010-09-22 17:09:43 +020097int nr_irqs = NR_IRQS;
98EXPORT_SYMBOL_GPL(nr_irqs);
99
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200100static DEFINE_MUTEX(sparse_irq_lock);
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +0100101static DECLARE_BITMAP(allocated_irqs, IRQ_BITMAP_BITS);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200102
Thomas Gleixner3795de22010-09-22 17:09:43 +0200103#ifdef CONFIG_SPARSE_IRQ
104
Thomas Gleixnerbaa0d232010-10-05 15:14:35 +0200105static RADIX_TREE(irq_desc_tree, GFP_KERNEL);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200106
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200107static void irq_insert_desc(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner3795de22010-09-22 17:09:43 +0200108{
109 radix_tree_insert(&irq_desc_tree, irq, desc);
110}
111
112struct irq_desc *irq_to_desc(unsigned int irq)
113{
114 return radix_tree_lookup(&irq_desc_tree, irq);
115}
Jiri Kosina3911ff32012-05-13 12:13:15 +0200116EXPORT_SYMBOL(irq_to_desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200117
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200118static void delete_irq_desc(unsigned int irq)
119{
120 radix_tree_delete(&irq_desc_tree, irq);
121}
122
123#ifdef CONFIG_SMP
124static void free_masks(struct irq_desc *desc)
125{
126#ifdef CONFIG_GENERIC_PENDING_IRQ
127 free_cpumask_var(desc->pending_mask);
128#endif
Thomas Gleixnerc0a19eb2010-10-12 21:58:27 +0200129 free_cpumask_var(desc->irq_data.affinity);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200130}
131#else
132static inline void free_masks(struct irq_desc *desc) { }
133#endif
134
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100135void irq_lock_sparse(void)
136{
137 mutex_lock(&sparse_irq_lock);
138}
139
140void irq_unlock_sparse(void)
141{
142 mutex_unlock(&sparse_irq_lock);
143}
144
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200145static struct irq_desc *alloc_desc(int irq, int node, struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200146{
147 struct irq_desc *desc;
Thomas Gleixnerbaa0d232010-10-05 15:14:35 +0200148 gfp_t gfp = GFP_KERNEL;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200149
150 desc = kzalloc_node(sizeof(*desc), gfp, node);
151 if (!desc)
152 return NULL;
153 /* allocate based on nr_cpu_ids */
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800154 desc->kstat_irqs = alloc_percpu(unsigned int);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200155 if (!desc->kstat_irqs)
156 goto err_desc;
157
158 if (alloc_masks(desc, gfp, node))
159 goto err_kstat;
160
161 raw_spin_lock_init(&desc->lock);
162 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
163
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200164 desc_set_defaults(irq, desc, node, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200165
166 return desc;
167
168err_kstat:
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800169 free_percpu(desc->kstat_irqs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200170err_desc:
171 kfree(desc);
172 return NULL;
173}
174
175static void free_desc(unsigned int irq)
176{
177 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200178
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200179 unregister_irq_proc(irq, desc);
180
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100181 /*
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.
186 */
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200187 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200188 delete_irq_desc(irq);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200189 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200190
191 free_masks(desc);
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800192 free_percpu(desc->kstat_irqs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200193 kfree(desc);
194}
195
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200196static int alloc_descs(unsigned int start, unsigned int cnt, int node,
197 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200198{
199 struct irq_desc *desc;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200200 int i;
201
202 for (i = 0; i < cnt; i++) {
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200203 desc = alloc_desc(start + i, node, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200204 if (!desc)
205 goto err;
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200206 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200207 irq_insert_desc(start + i, desc);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200208 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200209 }
210 return start;
211
212err:
213 for (i--; i >= 0; i--)
214 free_desc(start + i);
215
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200216 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200217 bitmap_clear(allocated_irqs, start, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200218 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200219 return -ENOMEM;
220}
221
Yinghai Lued4dea62011-02-19 11:07:37 -0800222static int irq_expand_nr_irqs(unsigned int nr)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100223{
Yinghai Lued4dea62011-02-19 11:07:37 -0800224 if (nr > IRQ_BITMAP_BITS)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100225 return -ENOMEM;
Yinghai Lued4dea62011-02-19 11:07:37 -0800226 nr_irqs = nr;
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100227 return 0;
228}
229
Thomas Gleixner3795de22010-09-22 17:09:43 +0200230int __init early_irq_init(void)
231{
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200232 int i, initcnt, node = first_online_node;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200233 struct irq_desc *desc;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200234
235 init_irq_default_affinity();
236
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200237 /* 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);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200240
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +0100241 if (WARN_ON(nr_irqs > IRQ_BITMAP_BITS))
242 nr_irqs = IRQ_BITMAP_BITS;
243
244 if (WARN_ON(initcnt > IRQ_BITMAP_BITS))
245 initcnt = IRQ_BITMAP_BITS;
246
247 if (initcnt > nr_irqs)
248 nr_irqs = initcnt;
249
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200250 for (i = 0; i < initcnt; i++) {
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200251 desc = alloc_desc(i, node, NULL);
Thomas Gleixneraa99ec02010-09-27 20:02:56 +0200252 set_bit(i, allocated_irqs);
253 irq_insert_desc(i, desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200254 }
Thomas Gleixner3795de22010-09-22 17:09:43 +0200255 return arch_early_irq_init();
256}
257
Thomas Gleixner3795de22010-09-22 17:09:43 +0200258#else /* !CONFIG_SPARSE_IRQ */
259
260struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
261 [0 ... NR_IRQS-1] = {
Thomas Gleixner3795de22010-09-22 17:09:43 +0200262 .handle_irq = handle_bad_irq,
263 .depth = 1,
264 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock),
265 }
266};
267
Thomas Gleixner3795de22010-09-22 17:09:43 +0200268int __init early_irq_init(void)
269{
Thomas Gleixneraa99ec02010-09-27 20:02:56 +0200270 int count, i, node = first_online_node;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200271 struct irq_desc *desc;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200272
273 init_irq_default_affinity();
274
275 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
276
277 desc = irq_desc;
278 count = ARRAY_SIZE(irq_desc);
279
280 for (i = 0; i < count; i++) {
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800281 desc[i].kstat_irqs = alloc_percpu(unsigned int);
Linus Walleije7fbad32011-05-31 18:14:39 +0200282 alloc_masks(&desc[i], GFP_KERNEL, node);
283 raw_spin_lock_init(&desc[i].lock);
Thomas Gleixner154cd382010-09-22 15:58:45 +0200284 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200285 desc_set_defaults(i, &desc[i], node, NULL);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200286 }
287 return arch_early_irq_init();
288}
289
290struct irq_desc *irq_to_desc(unsigned int irq)
291{
292 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
293}
Paul Gortmaker2c45aad2014-02-10 13:39:53 -0500294EXPORT_SYMBOL(irq_to_desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200295
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200296static void free_desc(unsigned int irq)
297{
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000298 struct irq_desc *desc = irq_to_desc(irq);
299 unsigned long flags;
300
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);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200304}
305
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200306static inline int alloc_descs(unsigned int start, unsigned int cnt, int node,
307 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200308{
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200309 u32 i;
310
311 for (i = 0; i < cnt; i++) {
312 struct irq_desc *desc = irq_to_desc(start + i);
313
314 desc->owner = owner;
315 }
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200316 return start;
317}
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100318
Yinghai Lued4dea62011-02-19 11:07:37 -0800319static int irq_expand_nr_irqs(unsigned int nr)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100320{
321 return -ENOMEM;
322}
323
Thomas Gleixnerf63b6a02014-05-07 15:44:21 +0000324void irq_mark_irq(unsigned int irq)
325{
326 mutex_lock(&sparse_irq_lock);
327 bitmap_set(allocated_irqs, irq, 1);
328 mutex_unlock(&sparse_irq_lock);
329}
330
Thomas Gleixnerc940e012014-05-07 15:44:22 +0000331#ifdef CONFIG_GENERIC_IRQ_LEGACY
332void irq_init_desc(unsigned int irq)
333{
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000334 free_desc(irq);
Thomas Gleixnerc940e012014-05-07 15:44:22 +0000335}
336#endif
337
Thomas Gleixner3795de22010-09-22 17:09:43 +0200338#endif /* !CONFIG_SPARSE_IRQ */
339
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200340/**
341 * generic_handle_irq - Invoke the handler for a particular irq
342 * @irq: The irq number to handle
343 *
344 */
345int generic_handle_irq(unsigned int irq)
346{
347 struct irq_desc *desc = irq_to_desc(irq);
348
349 if (!desc)
350 return -EINVAL;
351 generic_handle_irq_desc(irq, desc);
352 return 0;
353}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100354EXPORT_SYMBOL_GPL(generic_handle_irq);
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200355
Marc Zyngier76ba59f2014-08-26 11:03:16 +0100356#ifdef CONFIG_HANDLE_DOMAIN_IRQ
357/**
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
363 *
364 * Returns: 0 on success, or -EINVAL if conversion has failed
365 */
366int __handle_domain_irq(struct irq_domain *domain, unsigned int hwirq,
367 bool lookup, struct pt_regs *regs)
368{
369 struct pt_regs *old_regs = set_irq_regs(regs);
370 unsigned int irq = hwirq;
371 int ret = 0;
372
373 irq_enter();
374
375#ifdef CONFIG_IRQ_DOMAIN
376 if (lookup)
377 irq = irq_find_mapping(domain, hwirq);
378#endif
379
380 /*
381 * Some hardware gives randomly wrong interrupts. Rather
382 * than crashing, do something sensible.
383 */
384 if (unlikely(!irq || irq >= nr_irqs)) {
385 ack_bad_irq(irq);
386 ret = -EINVAL;
387 } else {
388 generic_handle_irq(irq);
389 }
390
391 irq_exit();
392 set_irq_regs(old_regs);
393 return ret;
394}
395#endif
396
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200397/* Dynamic interrupt handling */
398
399/**
400 * irq_free_descs - free irq descriptors
401 * @from: Start of descriptor range
402 * @cnt: Number of consecutive irqs to free
403 */
404void irq_free_descs(unsigned int from, unsigned int cnt)
405{
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200406 int i;
407
408 if (from >= nr_irqs || (from + cnt) > nr_irqs)
409 return;
410
411 for (i = 0; i < cnt; i++)
412 free_desc(from + i);
413
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200414 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200415 bitmap_clear(allocated_irqs, from, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200416 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200417}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100418EXPORT_SYMBOL_GPL(irq_free_descs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200419
420/**
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
Randy Dunlapd522a0d2011-08-18 12:19:27 -0700426 * @owner: Owning module (can be NULL)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200427 *
428 * Returns the first irq number or error code
429 */
430int __ref
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200431__irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node,
432 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200433{
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200434 int start, ret;
435
436 if (!cnt)
437 return -EINVAL;
438
Mark Brownc5182b82011-06-02 18:55:13 +0100439 if (irq >= 0) {
440 if (from > irq)
441 return -EINVAL;
442 from = irq;
Thomas Gleixner62a08ae2014-04-24 09:50:53 +0200443 } else {
444 /*
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.
448 */
449 from = arch_dynirq_lower_bound(from);
Mark Brownc5182b82011-06-02 18:55:13 +0100450 }
451
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200452 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200453
Yinghai Lued4dea62011-02-19 11:07:37 -0800454 start = bitmap_find_next_zero_area(allocated_irqs, IRQ_BITMAP_BITS,
455 from, cnt, 0);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200456 ret = -EEXIST;
457 if (irq >=0 && start != irq)
458 goto err;
459
Yinghai Lued4dea62011-02-19 11:07:37 -0800460 if (start + cnt > nr_irqs) {
461 ret = irq_expand_nr_irqs(start + cnt);
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100462 if (ret)
463 goto err;
464 }
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200465
466 bitmap_set(allocated_irqs, start, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200467 mutex_unlock(&sparse_irq_lock);
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200468 return alloc_descs(start, cnt, node, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200469
470err:
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200471 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200472 return ret;
473}
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200474EXPORT_SYMBOL_GPL(__irq_alloc_descs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200475
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000476#ifdef CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
477/**
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
481 *
482 * Returns an interrupt number > 0 or 0, if the allocation fails.
483 */
484unsigned int irq_alloc_hwirqs(int cnt, int node)
485{
486 int i, irq = __irq_alloc_descs(-1, 0, cnt, node, NULL);
487
488 if (irq < 0)
489 return 0;
490
491 for (i = irq; cnt > 0; i++, cnt--) {
492 if (arch_setup_hwirq(i, node))
493 goto err;
494 irq_clear_status_flags(i, _IRQ_NOREQUEST);
495 }
496 return irq;
497
498err:
499 for (i--; i >= irq; i--) {
500 irq_set_status_flags(i, _IRQ_NOREQUEST | _IRQ_NOPROBE);
501 arch_teardown_hwirq(i);
502 }
503 irq_free_descs(irq, cnt);
504 return 0;
505}
506EXPORT_SYMBOL_GPL(irq_alloc_hwirqs);
507
508/**
509 * irq_free_hwirqs - Free irq descriptor and cleanup the hardware
510 * @from: Free from irq number
511 * @cnt: number of interrupts to free
512 *
513 */
514void irq_free_hwirqs(unsigned int from, int cnt)
515{
Keith Busch8844aad2014-06-30 16:24:44 -0600516 int i, j;
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000517
Keith Busch8844aad2014-06-30 16:24:44 -0600518 for (i = from, j = cnt; j > 0; i++, j--) {
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000519 irq_set_status_flags(i, _IRQ_NOREQUEST | _IRQ_NOPROBE);
520 arch_teardown_hwirq(i);
521 }
522 irq_free_descs(from, cnt);
523}
524EXPORT_SYMBOL_GPL(irq_free_hwirqs);
525#endif
526
Thomas Gleixnera98d24b2010-09-30 10:45:07 +0200527/**
528 * irq_get_next_irq - get next allocated irq number
529 * @offset: where to start the search
530 *
531 * Returns next irq number after offset or nr_irqs if none is found.
532 */
533unsigned int irq_get_next_irq(unsigned int offset)
534{
535 return find_next_bit(allocated_irqs, nr_irqs, offset);
536}
537
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100538struct irq_desc *
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100539__irq_get_desc_lock(unsigned int irq, unsigned long *flags, bool bus,
540 unsigned int check)
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100541{
542 struct irq_desc *desc = irq_to_desc(irq);
543
544 if (desc) {
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100545 if (check & _IRQ_DESC_CHECK) {
546 if ((check & _IRQ_DESC_PERCPU) &&
547 !irq_settings_is_per_cpu_devid(desc))
548 return NULL;
549
550 if (!(check & _IRQ_DESC_PERCPU) &&
551 irq_settings_is_per_cpu_devid(desc))
552 return NULL;
553 }
554
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100555 if (bus)
556 chip_bus_lock(desc);
557 raw_spin_lock_irqsave(&desc->lock, *flags);
558 }
559 return desc;
560}
561
562void __irq_put_desc_unlock(struct irq_desc *desc, unsigned long flags, bool bus)
563{
564 raw_spin_unlock_irqrestore(&desc->lock, flags);
565 if (bus)
566 chip_bus_sync_unlock(desc);
567}
568
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100569int irq_set_percpu_devid(unsigned int irq)
570{
571 struct irq_desc *desc = irq_to_desc(irq);
572
573 if (!desc)
574 return -EINVAL;
575
576 if (desc->percpu_enabled)
577 return -EINVAL;
578
579 desc->percpu_enabled = kzalloc(sizeof(*desc->percpu_enabled), GFP_KERNEL);
580
581 if (!desc->percpu_enabled)
582 return -ENOMEM;
583
584 irq_set_percpu_devid_flags(irq);
585 return 0;
586}
587
Thomas Gleixner792d0012014-02-23 21:40:14 +0000588void kstat_incr_irq_this_cpu(unsigned int irq)
589{
590 kstat_incr_irqs_this_cpu(irq, irq_to_desc(irq));
591}
592
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100593/**
594 * kstat_irqs_cpu - Get the statistics for an interrupt on a cpu
595 * @irq: The interrupt number
596 * @cpu: The cpu number
597 *
598 * Returns the sum of interrupt counts on @cpu since boot for
599 * @irq. The caller must ensure that the interrupt is not removed
600 * concurrently.
601 */
Thomas Gleixner3795de22010-09-22 17:09:43 +0200602unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
603{
604 struct irq_desc *desc = irq_to_desc(irq);
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800605
606 return desc && desc->kstat_irqs ?
607 *per_cpu_ptr(desc->kstat_irqs, cpu) : 0;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200608}
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700609
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100610/**
611 * kstat_irqs - Get the statistics for an interrupt
612 * @irq: The interrupt number
613 *
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
616 * concurrently.
617 */
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700618unsigned int kstat_irqs(unsigned int irq)
619{
620 struct irq_desc *desc = irq_to_desc(irq);
621 int cpu;
Nicholas Mc Guire5e9662f2015-05-03 10:48:50 +0200622 unsigned int sum = 0;
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700623
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800624 if (!desc || !desc->kstat_irqs)
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700625 return 0;
626 for_each_possible_cpu(cpu)
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800627 sum += *per_cpu_ptr(desc->kstat_irqs, cpu);
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700628 return sum;
629}
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100630
631/**
632 * kstat_irqs_usr - Get the statistics for an interrupt
633 * @irq: The interrupt number
634 *
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.
639 */
640unsigned int kstat_irqs_usr(unsigned int irq)
641{
Nicholas Mc Guire7df0b272015-05-03 10:49:11 +0200642 unsigned int sum;
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100643
644 irq_lock_sparse();
645 sum = kstat_irqs(irq);
646 irq_unlock_sparse();
647 return sum;
648}