blob: 0f6805b75fc89ae5816e284d495d95ed1f2920b6 [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 *
Mauro Carvalho Chehabc0c6e082017-05-14 12:03:39 -03007 * Detailed information is available in Documentation/core-api/genericirq.rst
Thomas Gleixner3795de22010-09-22 17:09:43 +02008 *
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>
Craig Gallekecb3f392016-09-13 12:14:51 -040018#include <linux/sysfs.h>
Thomas Gleixner3795de22010-09-22 17:09:43 +020019
20#include "internals.h"
21
22/*
23 * lockdep: we want to handle all irq_desc locks as a single lock-class:
24 */
Thomas Gleixner78f90d92010-09-29 17:18:47 +020025static struct lock_class_key irq_desc_lock_class;
Thomas Gleixner3795de22010-09-22 17:09:43 +020026
Thomas Gleixnerfe051432011-05-18 12:53:03 +020027#if defined(CONFIG_SMP)
Thomas Gleixnerfbf19802016-02-03 19:52:23 +010028static int __init irq_affinity_setup(char *str)
29{
30 zalloc_cpumask_var(&irq_default_affinity, GFP_NOWAIT);
31 cpulist_parse(str, irq_default_affinity);
32 /*
33 * Set at least the boot cpu. We don't want to end up with
34 * bugreports caused by random comandline masks
35 */
36 cpumask_set_cpu(smp_processor_id(), irq_default_affinity);
37 return 1;
38}
39__setup("irqaffinity=", irq_affinity_setup);
40
Thomas Gleixner3795de22010-09-22 17:09:43 +020041static void __init init_irq_default_affinity(void)
42{
Thomas Gleixnerfbf19802016-02-03 19:52:23 +010043#ifdef CONFIG_CPUMASK_OFFSTACK
44 if (!irq_default_affinity)
45 zalloc_cpumask_var(&irq_default_affinity, GFP_NOWAIT);
46#endif
47 if (cpumask_empty(irq_default_affinity))
48 cpumask_setall(irq_default_affinity);
Thomas Gleixner3795de22010-09-22 17:09:43 +020049}
50#else
51static void __init init_irq_default_affinity(void)
52{
53}
54#endif
55
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020056#ifdef CONFIG_SMP
Thomas Gleixner4ab764c2017-06-20 01:37:36 +020057static int alloc_masks(struct irq_desc *desc, int node)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020058{
Jiang Liu9df872f2015-06-03 11:47:50 +080059 if (!zalloc_cpumask_var_node(&desc->irq_common_data.affinity,
Thomas Gleixner4ab764c2017-06-20 01:37:36 +020060 GFP_KERNEL, node))
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020061 return -ENOMEM;
62
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020063#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
64 if (!zalloc_cpumask_var_node(&desc->irq_common_data.effective_affinity,
65 GFP_KERNEL, node)) {
66 free_cpumask_var(desc->irq_common_data.affinity);
67 return -ENOMEM;
68 }
69#endif
70
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020071#ifdef CONFIG_GENERIC_PENDING_IRQ
Thomas Gleixner4ab764c2017-06-20 01:37:36 +020072 if (!zalloc_cpumask_var_node(&desc->pending_mask, GFP_KERNEL, node)) {
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020073#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
74 free_cpumask_var(desc->irq_common_data.effective_affinity);
75#endif
Jiang Liu9df872f2015-06-03 11:47:50 +080076 free_cpumask_var(desc->irq_common_data.affinity);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020077 return -ENOMEM;
78 }
79#endif
80 return 0;
81}
82
Thomas Gleixner45ddcec2016-07-04 17:39:25 +090083static void desc_smp_init(struct irq_desc *desc, int node,
84 const struct cpumask *affinity)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020085{
Thomas Gleixner45ddcec2016-07-04 17:39:25 +090086 if (!affinity)
87 affinity = irq_default_affinity;
88 cpumask_copy(desc->irq_common_data.affinity, affinity);
89
Thomas Gleixnerb7b29332010-09-29 18:46:55 +020090#ifdef CONFIG_GENERIC_PENDING_IRQ
91 cpumask_clear(desc->pending_mask);
92#endif
Jiang Liu449e9ca2015-06-01 16:05:16 +080093#ifdef CONFIG_NUMA
94 desc->irq_common_data.node = node;
95#endif
Thomas Gleixnerb7b29332010-09-29 18:46:55 +020096}
97
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +020098#else
99static inline int
Thomas Gleixner4ab764c2017-06-20 01:37:36 +0200100alloc_masks(struct irq_desc *desc, int node) { return 0; }
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900101static inline void
102desc_smp_init(struct irq_desc *desc, int node, const struct cpumask *affinity) { }
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200103#endif
104
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200105static void desc_set_defaults(unsigned int irq, struct irq_desc *desc, int node,
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900106 const struct cpumask *affinity, struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200107{
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800108 int cpu;
109
Jiang Liuaf7080e2015-06-01 16:05:21 +0800110 desc->irq_common_data.handler_data = NULL;
Jiang Liub2377212015-06-01 16:05:43 +0800111 desc->irq_common_data.msi_desc = NULL;
Jiang Liuaf7080e2015-06-01 16:05:21 +0800112
Jiang Liu0d0b4c82015-06-01 16:05:12 +0800113 desc->irq_data.common = &desc->irq_common_data;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200114 desc->irq_data.irq = irq;
115 desc->irq_data.chip = &no_irq_chip;
116 desc->irq_data.chip_data = NULL;
Thomas Gleixnerf9e49892011-02-09 14:54:49 +0100117 irq_settings_clr_and_set(desc, ~0, _IRQ_DEFAULT_INIT_FLAGS);
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200118 irqd_set(&desc->irq_data, IRQD_IRQ_DISABLED);
Jeffy Chend829b8f2017-06-26 19:33:33 +0800119 irqd_set(&desc->irq_data, IRQD_IRQ_MASKED);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200120 desc->handle_irq = handle_bad_irq;
121 desc->depth = 1;
Thomas Gleixnerb7b29332010-09-29 18:46:55 +0200122 desc->irq_count = 0;
123 desc->irqs_unhandled = 0;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200124 desc->name = NULL;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200125 desc->owner = owner;
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800126 for_each_possible_cpu(cpu)
127 *per_cpu_ptr(desc->kstat_irqs, cpu) = 0;
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900128 desc_smp_init(desc, node, affinity);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200129}
130
Thomas Gleixner3795de22010-09-22 17:09:43 +0200131int nr_irqs = NR_IRQS;
132EXPORT_SYMBOL_GPL(nr_irqs);
133
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200134static DEFINE_MUTEX(sparse_irq_lock);
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +0100135static DECLARE_BITMAP(allocated_irqs, IRQ_BITMAP_BITS);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200136
Thomas Gleixner3795de22010-09-22 17:09:43 +0200137#ifdef CONFIG_SPARSE_IRQ
138
Craig Gallekecb3f392016-09-13 12:14:51 -0400139static void irq_kobj_release(struct kobject *kobj);
140
141#ifdef CONFIG_SYSFS
142static struct kobject *irq_kobj_base;
143
144#define IRQ_ATTR_RO(_name) \
145static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
146
147static ssize_t per_cpu_count_show(struct kobject *kobj,
148 struct kobj_attribute *attr, char *buf)
149{
150 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
151 int cpu, irq = desc->irq_data.irq;
152 ssize_t ret = 0;
153 char *p = "";
154
155 for_each_possible_cpu(cpu) {
156 unsigned int c = kstat_irqs_cpu(irq, cpu);
157
158 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%s%u", p, c);
159 p = ",";
160 }
161
162 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n");
163 return ret;
164}
165IRQ_ATTR_RO(per_cpu_count);
166
167static ssize_t chip_name_show(struct kobject *kobj,
168 struct kobj_attribute *attr, char *buf)
169{
170 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
171 ssize_t ret = 0;
172
173 raw_spin_lock_irq(&desc->lock);
174 if (desc->irq_data.chip && desc->irq_data.chip->name) {
175 ret = scnprintf(buf, PAGE_SIZE, "%s\n",
176 desc->irq_data.chip->name);
177 }
178 raw_spin_unlock_irq(&desc->lock);
179
180 return ret;
181}
182IRQ_ATTR_RO(chip_name);
183
184static ssize_t hwirq_show(struct kobject *kobj,
185 struct kobj_attribute *attr, char *buf)
186{
187 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
188 ssize_t ret = 0;
189
190 raw_spin_lock_irq(&desc->lock);
191 if (desc->irq_data.domain)
192 ret = sprintf(buf, "%d\n", (int)desc->irq_data.hwirq);
193 raw_spin_unlock_irq(&desc->lock);
194
195 return ret;
196}
197IRQ_ATTR_RO(hwirq);
198
199static ssize_t type_show(struct kobject *kobj,
200 struct kobj_attribute *attr, char *buf)
201{
202 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
203 ssize_t ret = 0;
204
205 raw_spin_lock_irq(&desc->lock);
206 ret = sprintf(buf, "%s\n",
207 irqd_is_level_type(&desc->irq_data) ? "level" : "edge");
208 raw_spin_unlock_irq(&desc->lock);
209
210 return ret;
211
212}
213IRQ_ATTR_RO(type);
214
215static ssize_t name_show(struct kobject *kobj,
216 struct kobj_attribute *attr, char *buf)
217{
218 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
219 ssize_t ret = 0;
220
221 raw_spin_lock_irq(&desc->lock);
222 if (desc->name)
223 ret = scnprintf(buf, PAGE_SIZE, "%s\n", desc->name);
224 raw_spin_unlock_irq(&desc->lock);
225
226 return ret;
227}
228IRQ_ATTR_RO(name);
229
230static ssize_t actions_show(struct kobject *kobj,
231 struct kobj_attribute *attr, char *buf)
232{
233 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
234 struct irqaction *action;
235 ssize_t ret = 0;
236 char *p = "";
237
238 raw_spin_lock_irq(&desc->lock);
239 for (action = desc->action; action != NULL; action = action->next) {
240 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%s%s",
241 p, action->name);
242 p = ",";
243 }
244 raw_spin_unlock_irq(&desc->lock);
245
246 if (ret)
247 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n");
248
249 return ret;
250}
251IRQ_ATTR_RO(actions);
252
253static struct attribute *irq_attrs[] = {
254 &per_cpu_count_attr.attr,
255 &chip_name_attr.attr,
256 &hwirq_attr.attr,
257 &type_attr.attr,
258 &name_attr.attr,
259 &actions_attr.attr,
260 NULL
261};
262
263static struct kobj_type irq_kobj_type = {
264 .release = irq_kobj_release,
265 .sysfs_ops = &kobj_sysfs_ops,
266 .default_attrs = irq_attrs,
267};
268
269static void irq_sysfs_add(int irq, struct irq_desc *desc)
270{
271 if (irq_kobj_base) {
272 /*
273 * Continue even in case of failure as this is nothing
274 * crucial.
275 */
276 if (kobject_add(&desc->kobj, irq_kobj_base, "%d", irq))
277 pr_warn("Failed to add kobject for irq %d\n", irq);
278 }
279}
280
281static int __init irq_sysfs_init(void)
282{
283 struct irq_desc *desc;
284 int irq;
285
286 /* Prevent concurrent irq alloc/free */
287 irq_lock_sparse();
288
289 irq_kobj_base = kobject_create_and_add("irq", kernel_kobj);
290 if (!irq_kobj_base) {
291 irq_unlock_sparse();
292 return -ENOMEM;
293 }
294
295 /* Add the already allocated interrupts */
296 for_each_irq_desc(irq, desc)
297 irq_sysfs_add(irq, desc);
298 irq_unlock_sparse();
299
300 return 0;
301}
302postcore_initcall(irq_sysfs_init);
303
304#else /* !CONFIG_SYSFS */
305
306static struct kobj_type irq_kobj_type = {
307 .release = irq_kobj_release,
308};
309
310static void irq_sysfs_add(int irq, struct irq_desc *desc) {}
311
312#endif /* CONFIG_SYSFS */
313
Thomas Gleixnerbaa0d232010-10-05 15:14:35 +0200314static RADIX_TREE(irq_desc_tree, GFP_KERNEL);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200315
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200316static void irq_insert_desc(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner3795de22010-09-22 17:09:43 +0200317{
318 radix_tree_insert(&irq_desc_tree, irq, desc);
319}
320
321struct irq_desc *irq_to_desc(unsigned int irq)
322{
323 return radix_tree_lookup(&irq_desc_tree, irq);
324}
Jiri Kosina3911ff32012-05-13 12:13:15 +0200325EXPORT_SYMBOL(irq_to_desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200326
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200327static void delete_irq_desc(unsigned int irq)
328{
329 radix_tree_delete(&irq_desc_tree, irq);
330}
331
332#ifdef CONFIG_SMP
333static void free_masks(struct irq_desc *desc)
334{
335#ifdef CONFIG_GENERIC_PENDING_IRQ
336 free_cpumask_var(desc->pending_mask);
337#endif
Jiang Liu9df872f2015-06-03 11:47:50 +0800338 free_cpumask_var(desc->irq_common_data.affinity);
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200339#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
340 free_cpumask_var(desc->irq_common_data.effective_affinity);
341#endif
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200342}
343#else
344static inline void free_masks(struct irq_desc *desc) { }
345#endif
346
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100347void irq_lock_sparse(void)
348{
349 mutex_lock(&sparse_irq_lock);
350}
351
352void irq_unlock_sparse(void)
353{
354 mutex_unlock(&sparse_irq_lock);
355}
356
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900357static struct irq_desc *alloc_desc(int irq, int node, unsigned int flags,
358 const struct cpumask *affinity,
359 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200360{
361 struct irq_desc *desc;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200362
Thomas Gleixner4ab764c2017-06-20 01:37:36 +0200363 desc = kzalloc_node(sizeof(*desc), GFP_KERNEL, node);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200364 if (!desc)
365 return NULL;
366 /* allocate based on nr_cpu_ids */
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800367 desc->kstat_irqs = alloc_percpu(unsigned int);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200368 if (!desc->kstat_irqs)
369 goto err_desc;
370
Thomas Gleixner4ab764c2017-06-20 01:37:36 +0200371 if (alloc_masks(desc, node))
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200372 goto err_kstat;
373
374 raw_spin_lock_init(&desc->lock);
375 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Thomas Gleixner91140142017-06-29 23:33:37 +0200376 mutex_init(&desc->request_mutex);
Thomas Gleixner425a50722015-12-13 18:02:22 +0100377 init_rcu_head(&desc->rcu);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200378
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900379 desc_set_defaults(irq, desc, node, affinity, owner);
380 irqd_set(&desc->irq_data, flags);
Craig Gallekecb3f392016-09-13 12:14:51 -0400381 kobject_init(&desc->kobj, &irq_kobj_type);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200382
383 return desc;
384
385err_kstat:
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800386 free_percpu(desc->kstat_irqs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200387err_desc:
388 kfree(desc);
389 return NULL;
390}
391
Craig Gallekecb3f392016-09-13 12:14:51 -0400392static void irq_kobj_release(struct kobject *kobj)
Thomas Gleixner425a50722015-12-13 18:02:22 +0100393{
Craig Gallekecb3f392016-09-13 12:14:51 -0400394 struct irq_desc *desc = container_of(kobj, struct irq_desc, kobj);
Thomas Gleixner425a50722015-12-13 18:02:22 +0100395
396 free_masks(desc);
397 free_percpu(desc->kstat_irqs);
398 kfree(desc);
399}
400
Craig Gallekecb3f392016-09-13 12:14:51 -0400401static void delayed_free_desc(struct rcu_head *rhp)
402{
403 struct irq_desc *desc = container_of(rhp, struct irq_desc, rcu);
404
405 kobject_put(&desc->kobj);
406}
407
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200408static void free_desc(unsigned int irq)
409{
410 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200411
Thomas Gleixner087cdfb2017-06-20 01:37:17 +0200412 irq_remove_debugfs_entry(desc);
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200413 unregister_irq_proc(irq, desc);
414
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100415 /*
416 * sparse_irq_lock protects also show_interrupts() and
417 * kstat_irq_usr(). Once we deleted the descriptor from the
418 * sparse tree we can free it. Access in proc will fail to
419 * lookup the descriptor.
Craig Gallekecb3f392016-09-13 12:14:51 -0400420 *
421 * The sysfs entry must be serialized against a concurrent
422 * irq_sysfs_init() as well.
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100423 */
Craig Gallekecb3f392016-09-13 12:14:51 -0400424 kobject_del(&desc->kobj);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200425 delete_irq_desc(irq);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200426
Thomas Gleixner425a50722015-12-13 18:02:22 +0100427 /*
428 * We free the descriptor, masks and stat fields via RCU. That
429 * allows demultiplex interrupts to do rcu based management of
430 * the child interrupts.
431 */
432 call_rcu(&desc->rcu, delayed_free_desc);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200433}
434
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200435static int alloc_descs(unsigned int start, unsigned int cnt, int node,
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900436 const struct cpumask *affinity, struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200437{
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900438 const struct cpumask *mask = NULL;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200439 struct irq_desc *desc;
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900440 unsigned int flags;
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200441 int i;
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900442
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200443 /* Validate affinity mask(s) */
444 if (affinity) {
445 for (i = 0, mask = affinity; i < cnt; i++, mask++) {
446 if (cpumask_empty(mask))
447 return -EINVAL;
448 }
449 }
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900450
451 flags = affinity ? IRQD_AFFINITY_MANAGED : 0;
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200452 mask = NULL;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200453
454 for (i = 0; i < cnt; i++) {
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900455 if (affinity) {
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200456 node = cpu_to_node(cpumask_first(affinity));
457 mask = affinity;
458 affinity++;
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900459 }
460 desc = alloc_desc(start + i, node, flags, mask, owner);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200461 if (!desc)
462 goto err;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200463 irq_insert_desc(start + i, desc);
Craig Gallekecb3f392016-09-13 12:14:51 -0400464 irq_sysfs_add(start + i, desc);
Thomas Gleixnere0b47792017-09-13 23:29:04 +0200465 irq_add_debugfs_entry(start + i, desc);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200466 }
Thomas Gleixner12ac1d02017-09-05 10:12:20 +0200467 bitmap_set(allocated_irqs, start, cnt);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200468 return start;
469
470err:
471 for (i--; i >= 0; i--)
472 free_desc(start + i);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200473 return -ENOMEM;
474}
475
Yinghai Lued4dea62011-02-19 11:07:37 -0800476static int irq_expand_nr_irqs(unsigned int nr)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100477{
Yinghai Lued4dea62011-02-19 11:07:37 -0800478 if (nr > IRQ_BITMAP_BITS)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100479 return -ENOMEM;
Yinghai Lued4dea62011-02-19 11:07:37 -0800480 nr_irqs = nr;
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100481 return 0;
482}
483
Thomas Gleixner3795de22010-09-22 17:09:43 +0200484int __init early_irq_init(void)
485{
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200486 int i, initcnt, node = first_online_node;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200487 struct irq_desc *desc;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200488
489 init_irq_default_affinity();
490
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200491 /* Let arch update nr_irqs and return the nr of preallocated irqs */
492 initcnt = arch_probe_nr_irqs();
Vincent Legoll5a29ef22017-05-09 10:34:09 +0200493 printk(KERN_INFO "NR_IRQS: %d, nr_irqs: %d, preallocated irqs: %d\n",
494 NR_IRQS, nr_irqs, initcnt);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200495
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +0100496 if (WARN_ON(nr_irqs > IRQ_BITMAP_BITS))
497 nr_irqs = IRQ_BITMAP_BITS;
498
499 if (WARN_ON(initcnt > IRQ_BITMAP_BITS))
500 initcnt = IRQ_BITMAP_BITS;
501
502 if (initcnt > nr_irqs)
503 nr_irqs = initcnt;
504
Thomas Gleixnerb683de22010-09-27 20:55:03 +0200505 for (i = 0; i < initcnt; i++) {
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900506 desc = alloc_desc(i, node, 0, NULL, NULL);
Thomas Gleixneraa99ec02010-09-27 20:02:56 +0200507 set_bit(i, allocated_irqs);
508 irq_insert_desc(i, desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200509 }
Thomas Gleixner3795de22010-09-22 17:09:43 +0200510 return arch_early_irq_init();
511}
512
Thomas Gleixner3795de22010-09-22 17:09:43 +0200513#else /* !CONFIG_SPARSE_IRQ */
514
515struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
516 [0 ... NR_IRQS-1] = {
Thomas Gleixner3795de22010-09-22 17:09:43 +0200517 .handle_irq = handle_bad_irq,
518 .depth = 1,
519 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock),
520 }
521};
522
Thomas Gleixner3795de22010-09-22 17:09:43 +0200523int __init early_irq_init(void)
524{
Thomas Gleixneraa99ec02010-09-27 20:02:56 +0200525 int count, i, node = first_online_node;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200526 struct irq_desc *desc;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200527
528 init_irq_default_affinity();
529
Vincent Legoll5a29ef22017-05-09 10:34:09 +0200530 printk(KERN_INFO "NR_IRQS: %d\n", NR_IRQS);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200531
532 desc = irq_desc;
533 count = ARRAY_SIZE(irq_desc);
534
535 for (i = 0; i < count; i++) {
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800536 desc[i].kstat_irqs = alloc_percpu(unsigned int);
Thomas Gleixner4ab764c2017-06-20 01:37:36 +0200537 alloc_masks(&desc[i], node);
Linus Walleije7fbad32011-05-31 18:14:39 +0200538 raw_spin_lock_init(&desc[i].lock);
Thomas Gleixner154cd382010-09-22 15:58:45 +0200539 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900540 desc_set_defaults(i, &desc[i], node, NULL, NULL);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200541 }
542 return arch_early_irq_init();
543}
544
545struct irq_desc *irq_to_desc(unsigned int irq)
546{
547 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
548}
Paul Gortmaker2c45aad2014-02-10 13:39:53 -0500549EXPORT_SYMBOL(irq_to_desc);
Thomas Gleixner3795de22010-09-22 17:09:43 +0200550
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200551static void free_desc(unsigned int irq)
552{
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000553 struct irq_desc *desc = irq_to_desc(irq);
554 unsigned long flags;
555
556 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner45ddcec2016-07-04 17:39:25 +0900557 desc_set_defaults(irq, desc, irq_desc_get_node(desc), NULL, NULL);
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000558 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200559}
560
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200561static inline int alloc_descs(unsigned int start, unsigned int cnt, int node,
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900562 const struct cpumask *affinity,
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200563 struct module *owner)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200564{
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200565 u32 i;
566
567 for (i = 0; i < cnt; i++) {
568 struct irq_desc *desc = irq_to_desc(start + i);
569
570 desc->owner = owner;
571 }
Thomas Gleixner12ac1d02017-09-05 10:12:20 +0200572 bitmap_set(allocated_irqs, start, cnt);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200573 return start;
574}
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100575
Yinghai Lued4dea62011-02-19 11:07:37 -0800576static int irq_expand_nr_irqs(unsigned int nr)
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100577{
578 return -ENOMEM;
579}
580
Thomas Gleixnerf63b6a02014-05-07 15:44:21 +0000581void irq_mark_irq(unsigned int irq)
582{
583 mutex_lock(&sparse_irq_lock);
584 bitmap_set(allocated_irqs, irq, 1);
585 mutex_unlock(&sparse_irq_lock);
586}
587
Thomas Gleixnerc940e012014-05-07 15:44:22 +0000588#ifdef CONFIG_GENERIC_IRQ_LEGACY
589void irq_init_desc(unsigned int irq)
590{
Thomas Gleixnerd8179bc2014-05-07 15:44:23 +0000591 free_desc(irq);
Thomas Gleixnerc940e012014-05-07 15:44:22 +0000592}
593#endif
594
Thomas Gleixner3795de22010-09-22 17:09:43 +0200595#endif /* !CONFIG_SPARSE_IRQ */
596
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200597/**
598 * generic_handle_irq - Invoke the handler for a particular irq
599 * @irq: The irq number to handle
600 *
601 */
602int generic_handle_irq(unsigned int irq)
603{
604 struct irq_desc *desc = irq_to_desc(irq);
605
606 if (!desc)
607 return -EINVAL;
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200608 generic_handle_irq_desc(desc);
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200609 return 0;
610}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100611EXPORT_SYMBOL_GPL(generic_handle_irq);
Thomas Gleixnerfe12bc22011-05-18 12:48:00 +0200612
Marc Zyngier76ba59f2014-08-26 11:03:16 +0100613#ifdef CONFIG_HANDLE_DOMAIN_IRQ
614/**
615 * __handle_domain_irq - Invoke the handler for a HW irq belonging to a domain
616 * @domain: The domain where to perform the lookup
617 * @hwirq: The HW irq number to convert to a logical one
618 * @lookup: Whether to perform the domain lookup or not
619 * @regs: Register file coming from the low-level handling code
620 *
621 * Returns: 0 on success, or -EINVAL if conversion has failed
622 */
623int __handle_domain_irq(struct irq_domain *domain, unsigned int hwirq,
624 bool lookup, struct pt_regs *regs)
625{
626 struct pt_regs *old_regs = set_irq_regs(regs);
627 unsigned int irq = hwirq;
628 int ret = 0;
629
630 irq_enter();
631
632#ifdef CONFIG_IRQ_DOMAIN
633 if (lookup)
634 irq = irq_find_mapping(domain, hwirq);
635#endif
636
637 /*
638 * Some hardware gives randomly wrong interrupts. Rather
639 * than crashing, do something sensible.
640 */
641 if (unlikely(!irq || irq >= nr_irqs)) {
642 ack_bad_irq(irq);
643 ret = -EINVAL;
644 } else {
645 generic_handle_irq(irq);
646 }
647
648 irq_exit();
649 set_irq_regs(old_regs);
650 return ret;
651}
652#endif
653
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200654/* Dynamic interrupt handling */
655
656/**
657 * irq_free_descs - free irq descriptors
658 * @from: Start of descriptor range
659 * @cnt: Number of consecutive irqs to free
660 */
661void irq_free_descs(unsigned int from, unsigned int cnt)
662{
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200663 int i;
664
665 if (from >= nr_irqs || (from + cnt) > nr_irqs)
666 return;
667
Thomas Gleixner12ac1d02017-09-05 10:12:20 +0200668 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200669 for (i = 0; i < cnt; i++)
670 free_desc(from + i);
671
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200672 bitmap_clear(allocated_irqs, from, cnt);
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200673 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200674}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100675EXPORT_SYMBOL_GPL(irq_free_descs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200676
677/**
678 * irq_alloc_descs - allocate and initialize a range of irq descriptors
679 * @irq: Allocate for specific irq number if irq >= 0
680 * @from: Start the search from this irq number
681 * @cnt: Number of consecutive irqs to allocate.
682 * @node: Preferred node on which the irq descriptor should be allocated
Randy Dunlapd522a0d2011-08-18 12:19:27 -0700683 * @owner: Owning module (can be NULL)
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200684 * @affinity: Optional pointer to an affinity mask array of size @cnt which
685 * hints where the irq descriptors should be allocated and which
686 * default affinities to use
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200687 *
688 * Returns the first irq number or error code
689 */
690int __ref
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200691__irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node,
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900692 struct module *owner, const struct cpumask *affinity)
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200693{
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200694 int start, ret;
695
696 if (!cnt)
697 return -EINVAL;
698
Mark Brownc5182b82011-06-02 18:55:13 +0100699 if (irq >= 0) {
700 if (from > irq)
701 return -EINVAL;
702 from = irq;
Thomas Gleixner62a08ae2014-04-24 09:50:53 +0200703 } else {
704 /*
705 * For interrupts which are freely allocated the
706 * architecture can force a lower bound to the @from
707 * argument. x86 uses this to exclude the GSI space.
708 */
709 from = arch_dynirq_lower_bound(from);
Mark Brownc5182b82011-06-02 18:55:13 +0100710 }
711
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200712 mutex_lock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200713
Yinghai Lued4dea62011-02-19 11:07:37 -0800714 start = bitmap_find_next_zero_area(allocated_irqs, IRQ_BITMAP_BITS,
715 from, cnt, 0);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200716 ret = -EEXIST;
717 if (irq >=0 && start != irq)
Thomas Gleixner12ac1d02017-09-05 10:12:20 +0200718 goto unlock;
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200719
Yinghai Lued4dea62011-02-19 11:07:37 -0800720 if (start + cnt > nr_irqs) {
721 ret = irq_expand_nr_irqs(start + cnt);
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100722 if (ret)
Thomas Gleixner12ac1d02017-09-05 10:12:20 +0200723 goto unlock;
Thomas Gleixnere7bcecb2011-02-16 17:12:57 +0100724 }
Thomas Gleixner12ac1d02017-09-05 10:12:20 +0200725 ret = alloc_descs(start, cnt, node, affinity, owner);
726unlock:
Thomas Gleixnera05a9002010-10-08 12:47:53 +0200727 mutex_unlock(&sparse_irq_lock);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200728 return ret;
729}
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +0200730EXPORT_SYMBOL_GPL(__irq_alloc_descs);
Thomas Gleixner1f5a5b82010-09-27 17:48:26 +0200731
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000732#ifdef CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
733/**
734 * irq_alloc_hwirqs - Allocate an irq descriptor and initialize the hardware
735 * @cnt: number of interrupts to allocate
736 * @node: node on which to allocate
737 *
738 * Returns an interrupt number > 0 or 0, if the allocation fails.
739 */
740unsigned int irq_alloc_hwirqs(int cnt, int node)
741{
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900742 int i, irq = __irq_alloc_descs(-1, 0, cnt, node, NULL, NULL);
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000743
744 if (irq < 0)
745 return 0;
746
747 for (i = irq; cnt > 0; i++, cnt--) {
748 if (arch_setup_hwirq(i, node))
749 goto err;
750 irq_clear_status_flags(i, _IRQ_NOREQUEST);
751 }
752 return irq;
753
754err:
755 for (i--; i >= irq; i--) {
756 irq_set_status_flags(i, _IRQ_NOREQUEST | _IRQ_NOPROBE);
757 arch_teardown_hwirq(i);
758 }
759 irq_free_descs(irq, cnt);
760 return 0;
761}
762EXPORT_SYMBOL_GPL(irq_alloc_hwirqs);
763
764/**
765 * irq_free_hwirqs - Free irq descriptor and cleanup the hardware
766 * @from: Free from irq number
767 * @cnt: number of interrupts to free
768 *
769 */
770void irq_free_hwirqs(unsigned int from, int cnt)
771{
Keith Busch8844aad2014-06-30 16:24:44 -0600772 int i, j;
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000773
Keith Busch8844aad2014-06-30 16:24:44 -0600774 for (i = from, j = cnt; j > 0; i++, j--) {
Thomas Gleixner7b6ef122014-05-07 15:44:05 +0000775 irq_set_status_flags(i, _IRQ_NOREQUEST | _IRQ_NOPROBE);
776 arch_teardown_hwirq(i);
777 }
778 irq_free_descs(from, cnt);
779}
780EXPORT_SYMBOL_GPL(irq_free_hwirqs);
781#endif
782
Thomas Gleixnera98d24b2010-09-30 10:45:07 +0200783/**
784 * irq_get_next_irq - get next allocated irq number
785 * @offset: where to start the search
786 *
787 * Returns next irq number after offset or nr_irqs if none is found.
788 */
789unsigned int irq_get_next_irq(unsigned int offset)
790{
791 return find_next_bit(allocated_irqs, nr_irqs, offset);
792}
793
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100794struct irq_desc *
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100795__irq_get_desc_lock(unsigned int irq, unsigned long *flags, bool bus,
796 unsigned int check)
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100797{
798 struct irq_desc *desc = irq_to_desc(irq);
799
800 if (desc) {
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100801 if (check & _IRQ_DESC_CHECK) {
802 if ((check & _IRQ_DESC_PERCPU) &&
803 !irq_settings_is_per_cpu_devid(desc))
804 return NULL;
805
806 if (!(check & _IRQ_DESC_PERCPU) &&
807 irq_settings_is_per_cpu_devid(desc))
808 return NULL;
809 }
810
Thomas Gleixnerd5eb4ad22011-02-12 12:16:16 +0100811 if (bus)
812 chip_bus_lock(desc);
813 raw_spin_lock_irqsave(&desc->lock, *flags);
814 }
815 return desc;
816}
817
818void __irq_put_desc_unlock(struct irq_desc *desc, unsigned long flags, bool bus)
819{
820 raw_spin_unlock_irqrestore(&desc->lock, flags);
821 if (bus)
822 chip_bus_sync_unlock(desc);
823}
824
Marc Zyngier222df542016-04-11 09:57:52 +0100825int irq_set_percpu_devid_partition(unsigned int irq,
826 const struct cpumask *affinity)
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100827{
828 struct irq_desc *desc = irq_to_desc(irq);
829
830 if (!desc)
831 return -EINVAL;
832
833 if (desc->percpu_enabled)
834 return -EINVAL;
835
836 desc->percpu_enabled = kzalloc(sizeof(*desc->percpu_enabled), GFP_KERNEL);
837
838 if (!desc->percpu_enabled)
839 return -ENOMEM;
840
Marc Zyngier222df542016-04-11 09:57:52 +0100841 if (affinity)
842 desc->percpu_affinity = affinity;
843 else
844 desc->percpu_affinity = cpu_possible_mask;
845
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100846 irq_set_percpu_devid_flags(irq);
847 return 0;
848}
849
Marc Zyngier222df542016-04-11 09:57:52 +0100850int irq_set_percpu_devid(unsigned int irq)
851{
852 return irq_set_percpu_devid_partition(irq, NULL);
853}
854
855int irq_get_percpu_devid_partition(unsigned int irq, struct cpumask *affinity)
856{
857 struct irq_desc *desc = irq_to_desc(irq);
858
859 if (!desc || !desc->percpu_enabled)
860 return -EINVAL;
861
862 if (affinity)
863 cpumask_copy(affinity, desc->percpu_affinity);
864
865 return 0;
866}
867
Thomas Gleixner792d0012014-02-23 21:40:14 +0000868void kstat_incr_irq_this_cpu(unsigned int irq)
869{
Jiang Liub51bf952015-06-04 12:13:25 +0800870 kstat_incr_irqs_this_cpu(irq_to_desc(irq));
Thomas Gleixner792d0012014-02-23 21:40:14 +0000871}
872
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100873/**
874 * kstat_irqs_cpu - Get the statistics for an interrupt on a cpu
875 * @irq: The interrupt number
876 * @cpu: The cpu number
877 *
878 * Returns the sum of interrupt counts on @cpu since boot for
879 * @irq. The caller must ensure that the interrupt is not removed
880 * concurrently.
881 */
Thomas Gleixner3795de22010-09-22 17:09:43 +0200882unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
883{
884 struct irq_desc *desc = irq_to_desc(irq);
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800885
886 return desc && desc->kstat_irqs ?
887 *per_cpu_ptr(desc->kstat_irqs, cpu) : 0;
Thomas Gleixner3795de22010-09-22 17:09:43 +0200888}
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700889
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100890/**
891 * kstat_irqs - Get the statistics for an interrupt
892 * @irq: The interrupt number
893 *
894 * Returns the sum of interrupt counts on all cpus since boot for
895 * @irq. The caller must ensure that the interrupt is not removed
896 * concurrently.
897 */
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700898unsigned int kstat_irqs(unsigned int irq)
899{
900 struct irq_desc *desc = irq_to_desc(irq);
901 int cpu;
Nicholas Mc Guire5e9662f2015-05-03 10:48:50 +0200902 unsigned int sum = 0;
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700903
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800904 if (!desc || !desc->kstat_irqs)
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700905 return 0;
906 for_each_possible_cpu(cpu)
Eric Dumazet6c9ae002011-01-13 15:45:38 -0800907 sum += *per_cpu_ptr(desc->kstat_irqs, cpu);
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -0700908 return sum;
909}
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100910
911/**
912 * kstat_irqs_usr - Get the statistics for an interrupt
913 * @irq: The interrupt number
914 *
915 * Returns the sum of interrupt counts on all cpus since boot for
916 * @irq. Contrary to kstat_irqs() this can be called from any
917 * preemptible context. It's protected against concurrent removal of
918 * an interrupt descriptor when sparse irqs are enabled.
919 */
920unsigned int kstat_irqs_usr(unsigned int irq)
921{
Nicholas Mc Guire7df0b272015-05-03 10:49:11 +0200922 unsigned int sum;
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100923
924 irq_lock_sparse();
925 sum = kstat_irqs(irq);
926 irq_unlock_sparse();
927 return sum;
928}