blob: 623b8136e9af3b86040102392e63c1ff4a5a04aa [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar
4 *
5 * This file contains the /proc/irq/ handling code.
6 */
7
8#include <linux/irq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/proc_fs.h>
Alexey Dobriyanf18e4392008-08-12 15:09:03 -070011#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/interrupt.h>
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +010013#include <linux/kernel_stat.h>
Ben Hutchings95c2b172015-09-26 12:23:56 +010014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Adrian Bunk97a41e22006-01-08 01:02:17 -080016#include "internals.h"
17
Thomas Gleixnerc291ee62014-12-11 23:01:41 +010018/*
19 * Access rules:
20 *
21 * procfs protects read/write of /proc/irq/N/ files against a
22 * concurrent free of the interrupt descriptor. remove_proc_entry()
23 * immediately prevents new read/writes to happen and waits for
24 * already running read/write functions to complete.
25 *
26 * We remove the proc entries first and then delete the interrupt
27 * descriptor from the radix tree and free it. So it is guaranteed
28 * that irq_to_desc(N) is valid as long as the read/writes are
29 * permitted by procfs.
30 *
31 * The read from /proc/interrupts is a different problem because there
32 * is no protection. So the lookup and the access to irqdesc
33 * information must be protected by sparse_irq_lock.
34 */
Ingo Molnar4a733ee2006-06-29 02:24:42 -070035static struct proc_dir_entry *root_irq_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#ifdef CONFIG_SMP
38
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020039enum {
40 AFFINITY,
41 AFFINITY_LIST,
42 EFFECTIVE,
43 EFFECTIVE_LIST,
44};
45
Thomas Gleixner047dc632017-06-20 01:37:35 +020046static int show_irq_affinity(int type, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Yinghai Lu08678b02008-08-19 20:50:05 -070048 struct irq_desc *desc = irq_to_desc((long)m->private);
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020049 const struct cpumask *mask;
Andi Kleen42ee2b72007-07-21 17:09:54 +020050
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020051 switch (type) {
52 case AFFINITY:
53 case AFFINITY_LIST:
54 mask = desc->irq_common_data.affinity;
Andi Kleen42ee2b72007-07-21 17:09:54 +020055#ifdef CONFIG_GENERIC_PENDING_IRQ
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020056 if (irqd_is_setaffinity_pending(&desc->irq_data))
57 mask = desc->pending_mask;
Andi Kleen42ee2b72007-07-21 17:09:54 +020058#endif
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020059 break;
60 case EFFECTIVE:
61 case EFFECTIVE_LIST:
62#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
Marc Zyngier6bc6d4a2017-08-18 09:39:15 +010063 mask = irq_data_get_effective_affinity_mask(&desc->irq_data);
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020064 break;
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020065#endif
Thomas Gleixnerb33394b2017-08-25 22:34:05 +020066 default:
67 return -EINVAL;
kbuild test robotce8bdd692017-08-22 15:50:53 +080068 }
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020069
70 switch (type) {
71 case AFFINITY_LIST:
72 case EFFECTIVE_LIST:
Tejun Heoc1d7f032015-02-13 14:38:10 -080073 seq_printf(m, "%*pbl\n", cpumask_pr_args(mask));
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020074 break;
75 case AFFINITY:
76 case EFFECTIVE:
Tejun Heoc1d7f032015-02-13 14:38:10 -080077 seq_printf(m, "%*pb\n", cpumask_pr_args(mask));
Thomas Gleixner0d3f5422017-06-20 01:37:38 +020078 break;
79 }
Alexey Dobriyanf18e4392008-08-12 15:09:03 -070080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -070083static int irq_affinity_hint_proc_show(struct seq_file *m, void *v)
84{
85 struct irq_desc *desc = irq_to_desc((long)m->private);
86 unsigned long flags;
87 cpumask_var_t mask;
88
Peter P Waskiewicz Jr4308ad82010-05-05 13:56:42 -070089 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -070090 return -ENOMEM;
91
92 raw_spin_lock_irqsave(&desc->lock, flags);
93 if (desc->affinity_hint)
94 cpumask_copy(mask, desc->affinity_hint);
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -070095 raw_spin_unlock_irqrestore(&desc->lock, flags);
96
Tejun Heoc1d7f032015-02-13 14:38:10 -080097 seq_printf(m, "%*pb\n", cpumask_pr_args(mask));
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -070098 free_cpumask_var(mask);
99
100 return 0;
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103int no_irq_affinity;
Mike Travis4b0604202011-05-24 17:13:12 -0700104static int irq_affinity_proc_show(struct seq_file *m, void *v)
105{
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200106 return show_irq_affinity(AFFINITY, m);
Mike Travis4b0604202011-05-24 17:13:12 -0700107}
108
109static int irq_affinity_list_proc_show(struct seq_file *m, void *v)
110{
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200111 return show_irq_affinity(AFFINITY_LIST, m);
Mike Travis4b0604202011-05-24 17:13:12 -0700112}
113
Thomas Gleixnercba64372020-02-12 12:19:41 +0100114#ifndef CONFIG_AUTO_IRQ_AFFINITY
115static inline int irq_select_affinity_usr(unsigned int irq)
116{
117 /*
118 * If the interrupt is started up already then this fails. The
119 * interrupt is assigned to an online CPU already. There is no
120 * point to move it around randomly. Tell user space that the
121 * selected mask is bogus.
122 *
123 * If not then any change to the affinity is pointless because the
124 * startup code invokes irq_setup_affinity() which will select
125 * a online CPU anyway.
126 */
127 return -EINVAL;
128}
129#else
130/* ALPHA magic affinity auto selector. Keep it for historical reasons. */
131static inline int irq_select_affinity_usr(unsigned int irq)
132{
133 return irq_select_affinity(irq);
134}
135#endif
Mike Travis4b0604202011-05-24 17:13:12 -0700136
137static ssize_t write_irq_affinity(int type, struct file *file,
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700138 const char __user *buffer, size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Muchun Song359745d2022-01-21 22:14:23 -0800140 unsigned int irq = (int)(long)pde_data(file_inode(file));
Rusty Russell0de26522008-12-13 21:20:26 +1030141 cpumask_var_t new_value;
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700142 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Thomas Gleixner9c255582016-07-04 17:39:23 +0900144 if (!irq_can_set_affinity_usr(irq) || no_irq_affinity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return -EIO;
146
Tetsuo Handac5e3a412021-04-01 14:58:23 +0900147 if (!zalloc_cpumask_var(&new_value, GFP_KERNEL))
Rusty Russell0de26522008-12-13 21:20:26 +1030148 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Mike Travis4b0604202011-05-24 17:13:12 -0700150 if (type)
151 err = cpumask_parselist_user(buffer, count, new_value);
152 else
153 err = cpumask_parse_user(buffer, count, new_value);
Rusty Russell0de26522008-12-13 21:20:26 +1030154 if (err)
155 goto free_cpumask;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 /*
158 * Do not allow disabling IRQs completely - it's a too easy
159 * way to make the system unusable accidentally :-) At least
160 * one online CPU still has to be targeted.
161 */
Rusty Russell0de26522008-12-13 21:20:26 +1030162 if (!cpumask_intersects(new_value, cpu_online_mask)) {
Thomas Gleixnercba42352017-06-20 01:37:21 +0200163 /*
164 * Special case for empty set - allow the architecture code
165 * to set default SMP affinity.
166 */
167 err = irq_select_affinity_usr(irq) ? -EINVAL : count;
Rusty Russell0de26522008-12-13 21:20:26 +1030168 } else {
Wen Yaxng67147962017-11-08 09:55:03 +0800169 err = irq_set_affinity(irq, new_value);
170 if (!err)
171 err = count;
Rusty Russell0de26522008-12-13 21:20:26 +1030172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Rusty Russell0de26522008-12-13 21:20:26 +1030174free_cpumask:
175 free_cpumask_var(new_value);
176 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Mike Travis4b0604202011-05-24 17:13:12 -0700179static ssize_t irq_affinity_proc_write(struct file *file,
180 const char __user *buffer, size_t count, loff_t *pos)
181{
182 return write_irq_affinity(0, file, buffer, count, pos);
183}
184
185static ssize_t irq_affinity_list_proc_write(struct file *file,
186 const char __user *buffer, size_t count, loff_t *pos)
187{
188 return write_irq_affinity(1, file, buffer, count, pos);
189}
190
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700191static int irq_affinity_proc_open(struct inode *inode, struct file *file)
Max Krasnyansky18404752008-05-29 11:02:52 -0700192{
Muchun Song359745d2022-01-21 22:14:23 -0800193 return single_open(file, irq_affinity_proc_show, pde_data(inode));
Max Krasnyansky18404752008-05-29 11:02:52 -0700194}
195
Mike Travis4b0604202011-05-24 17:13:12 -0700196static int irq_affinity_list_proc_open(struct inode *inode, struct file *file)
197{
Muchun Song359745d2022-01-21 22:14:23 -0800198 return single_open(file, irq_affinity_list_proc_show, pde_data(inode));
Mike Travis4b0604202011-05-24 17:13:12 -0700199}
200
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800201static const struct proc_ops irq_affinity_proc_ops = {
202 .proc_open = irq_affinity_proc_open,
203 .proc_read = seq_read,
204 .proc_lseek = seq_lseek,
205 .proc_release = single_release,
206 .proc_write = irq_affinity_proc_write,
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700207};
208
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800209static const struct proc_ops irq_affinity_list_proc_ops = {
210 .proc_open = irq_affinity_list_proc_open,
211 .proc_read = seq_read,
212 .proc_lseek = seq_lseek,
213 .proc_release = single_release,
214 .proc_write = irq_affinity_list_proc_write,
Mike Travis4b0604202011-05-24 17:13:12 -0700215};
216
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200217#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
218static int irq_effective_aff_proc_show(struct seq_file *m, void *v)
219{
220 return show_irq_affinity(EFFECTIVE, m);
221}
222
223static int irq_effective_aff_list_proc_show(struct seq_file *m, void *v)
224{
225 return show_irq_affinity(EFFECTIVE_LIST, m);
226}
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200227#endif
228
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700229static int default_affinity_show(struct seq_file *m, void *v)
Max Krasnyansky18404752008-05-29 11:02:52 -0700230{
Tejun Heoc1d7f032015-02-13 14:38:10 -0800231 seq_printf(m, "%*pb\n", cpumask_pr_args(irq_default_affinity));
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700232 return 0;
233}
234
235static ssize_t default_affinity_write(struct file *file,
236 const char __user *buffer, size_t count, loff_t *ppos)
237{
Rusty Russelld036e672009-01-01 10:12:26 +1030238 cpumask_var_t new_value;
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700239 int err;
Max Krasnyansky18404752008-05-29 11:02:52 -0700240
Tetsuo Handac5e3a412021-04-01 14:58:23 +0900241 if (!zalloc_cpumask_var(&new_value, GFP_KERNEL))
Rusty Russelld036e672009-01-01 10:12:26 +1030242 return -ENOMEM;
Max Krasnyansky18404752008-05-29 11:02:52 -0700243
Rusty Russelld036e672009-01-01 10:12:26 +1030244 err = cpumask_parse_user(buffer, count, new_value);
245 if (err)
246 goto out;
247
Max Krasnyansky18404752008-05-29 11:02:52 -0700248 /*
249 * Do not allow disabling IRQs completely - it's a too easy
250 * way to make the system unusable accidentally :-) At least
251 * one online CPU still has to be targeted.
252 */
Rusty Russelld036e672009-01-01 10:12:26 +1030253 if (!cpumask_intersects(new_value, cpu_online_mask)) {
254 err = -EINVAL;
255 goto out;
256 }
Max Krasnyansky18404752008-05-29 11:02:52 -0700257
Rusty Russelld036e672009-01-01 10:12:26 +1030258 cpumask_copy(irq_default_affinity, new_value);
259 err = count;
Max Krasnyansky18404752008-05-29 11:02:52 -0700260
Rusty Russelld036e672009-01-01 10:12:26 +1030261out:
262 free_cpumask_var(new_value);
263 return err;
Max Krasnyansky18404752008-05-29 11:02:52 -0700264}
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700265
266static int default_affinity_open(struct inode *inode, struct file *file)
267{
Muchun Song359745d2022-01-21 22:14:23 -0800268 return single_open(file, default_affinity_show, pde_data(inode));
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700269}
270
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800271static const struct proc_ops default_affinity_proc_ops = {
272 .proc_open = default_affinity_open,
273 .proc_read = seq_read,
274 .proc_lseek = seq_lseek,
275 .proc_release = single_release,
276 .proc_write = default_affinity_write,
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700277};
Dimitri Sivanich92d6b712010-03-11 14:08:56 -0800278
279static int irq_node_proc_show(struct seq_file *m, void *v)
280{
281 struct irq_desc *desc = irq_to_desc((long) m->private);
282
Jiang Liu67830112015-06-01 16:05:13 +0800283 seq_printf(m, "%d\n", irq_desc_get_node(desc));
Dimitri Sivanich92d6b712010-03-11 14:08:56 -0800284 return 0;
285}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286#endif
287
Alexey Dobriyana1afb632009-08-28 22:19:33 +0400288static int irq_spurious_proc_show(struct seq_file *m, void *v)
Andi Kleen96d97cf2008-01-30 13:32:48 +0100289{
Alexey Dobriyana1afb632009-08-28 22:19:33 +0400290 struct irq_desc *desc = irq_to_desc((long) m->private);
291
292 seq_printf(m, "count %u\n" "unhandled %u\n" "last_unhandled %u ms\n",
293 desc->irq_count, desc->irqs_unhandled,
294 jiffies_to_msecs(desc->last_unhandled));
295 return 0;
Andi Kleen96d97cf2008-01-30 13:32:48 +0100296}
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298#define MAX_NAMELEN 128
299
300static int name_unique(unsigned int irq, struct irqaction *new_action)
301{
Yinghai Lu08678b02008-08-19 20:50:05 -0700302 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 struct irqaction *action;
Dmitry Adamushkod2d94332007-05-08 00:27:31 -0700304 unsigned long flags;
305 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Thomas Gleixner239007b2009-11-17 16:46:45 +0100307 raw_spin_lock_irqsave(&desc->lock, flags);
Daniel Lezcanof944b5a2016-01-14 10:54:13 +0100308 for_each_action_of_desc(desc, action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if ((action != new_action) && action->name &&
Dmitry Adamushkod2d94332007-05-08 00:27:31 -0700310 !strcmp(new_action->name, action->name)) {
311 ret = 0;
312 break;
313 }
314 }
Thomas Gleixner239007b2009-11-17 16:46:45 +0100315 raw_spin_unlock_irqrestore(&desc->lock, flags);
Dmitry Adamushkod2d94332007-05-08 00:27:31 -0700316 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319void register_handler_proc(unsigned int irq, struct irqaction *action)
320{
321 char name [MAX_NAMELEN];
Yinghai Lu08678b02008-08-19 20:50:05 -0700322 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Yinghai Lu08678b02008-08-19 20:50:05 -0700324 if (!desc->dir || action->dir || !action->name ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 !name_unique(irq, action))
326 return;
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 snprintf(name, MAX_NAMELEN, "%s", action->name);
329
330 /* create /proc/irq/1234/handler/ */
Yinghai Lu08678b02008-08-19 20:50:05 -0700331 action->dir = proc_mkdir(name, desc->dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334#undef MAX_NAMELEN
335
336#define MAX_NAMELEN 10
337
Yinghai Lu2c6927a2008-08-19 20:50:11 -0700338void register_irq_proc(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Ben Hutchings95c2b172015-09-26 12:23:56 +0100340 static DEFINE_MUTEX(register_lock);
Thomas Gleixnerc1a80382017-06-20 01:37:37 +0200341 void __maybe_unused *irqp = (void *)(unsigned long) irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 char name [MAX_NAMELEN];
343
Ben Hutchings95c2b172015-09-26 12:23:56 +0100344 if (!root_irq_dir || (desc->irq_data.chip == &no_irq_chip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return;
346
Ben Hutchings95c2b172015-09-26 12:23:56 +0100347 /*
348 * irq directories are registered only when a handler is
349 * added, not when the descriptor is created, so multiple
350 * tasks might try to register at the same time.
351 */
352 mutex_lock(&register_lock);
353
354 if (desc->dir)
355 goto out_unlock;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 sprintf(name, "%d", irq);
358
359 /* create /proc/irq/1234 */
Yinghai Lu08678b02008-08-19 20:50:05 -0700360 desc->dir = proc_mkdir(name, root_irq_dir);
Cyrill Gorcunovc82a43d2009-10-26 23:28:11 +0300361 if (!desc->dir)
Ben Hutchings95c2b172015-09-26 12:23:56 +0100362 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364#ifdef CONFIG_SMP
Alexey Dobriyanf18e4392008-08-12 15:09:03 -0700365 /* create /proc/irq/<irq>/smp_affinity */
Chema Gonzalezbab5c792014-03-13 19:50:55 -0700366 proc_create_data("smp_affinity", 0644, desc->dir,
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800367 &irq_affinity_proc_ops, irqp);
Dimitri Sivanich92d6b712010-03-11 14:08:56 -0800368
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700369 /* create /proc/irq/<irq>/affinity_hint */
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200370 proc_create_single_data("affinity_hint", 0444, desc->dir,
371 irq_affinity_hint_proc_show, irqp);
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700372
Mike Travis4b0604202011-05-24 17:13:12 -0700373 /* create /proc/irq/<irq>/smp_affinity_list */
Chema Gonzalezbab5c792014-03-13 19:50:55 -0700374 proc_create_data("smp_affinity_list", 0644, desc->dir,
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800375 &irq_affinity_list_proc_ops, irqp);
Mike Travis4b0604202011-05-24 17:13:12 -0700376
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200377 proc_create_single_data("node", 0444, desc->dir, irq_node_proc_show,
378 irqp);
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200379# ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200380 proc_create_single_data("effective_affinity", 0444, desc->dir,
381 irq_effective_aff_proc_show, irqp);
382 proc_create_single_data("effective_affinity_list", 0444, desc->dir,
383 irq_effective_aff_list_proc_show, irqp);
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200384# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#endif
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200386 proc_create_single_data("spurious", 0444, desc->dir,
387 irq_spurious_proc_show, (void *)(long)irq);
Ben Hutchings95c2b172015-09-26 12:23:56 +0100388
389out_unlock:
390 mutex_unlock(&register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200393void unregister_irq_proc(unsigned int irq, struct irq_desc *desc)
394{
395 char name [MAX_NAMELEN];
396
397 if (!root_irq_dir || !desc->dir)
398 return;
399#ifdef CONFIG_SMP
400 remove_proc_entry("smp_affinity", desc->dir);
401 remove_proc_entry("affinity_hint", desc->dir);
Yinghai Ludef945e2011-05-25 22:09:40 -0700402 remove_proc_entry("smp_affinity_list", desc->dir);
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200403 remove_proc_entry("node", desc->dir);
Thomas Gleixner0d3f5422017-06-20 01:37:38 +0200404# ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
405 remove_proc_entry("effective_affinity", desc->dir);
406 remove_proc_entry("effective_affinity_list", desc->dir);
407# endif
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200408#endif
409 remove_proc_entry("spurious", desc->dir);
410
Thomas Gleixner13bfe992010-09-30 02:46:07 +0200411 sprintf(name, "%u", irq);
412 remove_proc_entry(name, root_irq_dir);
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#undef MAX_NAMELEN
416
417void unregister_handler_proc(unsigned int irq, struct irqaction *action)
418{
David Howellsa8ca16e2013-04-12 17:27:28 +0100419 proc_remove(action->dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
roel kluin3786fc72008-10-21 19:49:09 -0400422static void register_default_affinity_proc(void)
Max Krasnyansky18404752008-05-29 11:02:52 -0700423{
424#ifdef CONFIG_SMP
Chema Gonzalezbab5c792014-03-13 19:50:55 -0700425 proc_create("irq/default_smp_affinity", 0644, NULL,
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800426 &default_affinity_proc_ops);
Max Krasnyansky18404752008-05-29 11:02:52 -0700427#endif
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430void init_irq_proc(void)
431{
Yinghai Lu2c6927a2008-08-19 20:50:11 -0700432 unsigned int irq;
433 struct irq_desc *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 /* create /proc/irq */
436 root_irq_dir = proc_mkdir("irq", NULL);
437 if (!root_irq_dir)
438 return;
439
Max Krasnyansky18404752008-05-29 11:02:52 -0700440 register_default_affinity_proc();
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /*
443 * Create entries for all existing IRQs.
444 */
Jianyu Zhanfe3464c2016-03-19 21:59:19 +0800445 for_each_irq_desc(irq, desc)
Yinghai Lu2c6927a2008-08-19 20:50:11 -0700446 register_irq_proc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100449#ifdef CONFIG_GENERIC_IRQ_SHOW
450
451int __weak arch_show_interrupts(struct seq_file *p, int prec)
452{
453 return 0;
454}
455
Thomas Gleixnera6e120e2011-03-25 22:20:51 +0100456#ifndef ACTUAL_NR_IRQS
457# define ACTUAL_NR_IRQS nr_irqs
458#endif
459
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100460int show_interrupts(struct seq_file *p, void *v)
461{
462 static int prec;
463
464 unsigned long flags, any_count = 0;
465 int i = *(loff_t *) v, j;
466 struct irqaction *action;
467 struct irq_desc *desc;
468
Thomas Gleixnera6e120e2011-03-25 22:20:51 +0100469 if (i > ACTUAL_NR_IRQS)
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100470 return 0;
471
Thomas Gleixnera6e120e2011-03-25 22:20:51 +0100472 if (i == ACTUAL_NR_IRQS)
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100473 return arch_show_interrupts(p, prec);
474
475 /* print header and calculate the width of the first column */
476 if (i == 0) {
477 for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec)
478 j *= 10;
479
480 seq_printf(p, "%*s", prec + 8, "");
481 for_each_online_cpu(j)
482 seq_printf(p, "CPU%-8d", j);
483 seq_putc(p, '\n');
484 }
485
Eric Dumazet74bdf782018-06-20 08:03:32 -0700486 rcu_read_lock();
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100487 desc = irq_to_desc(i);
Marc Zyngier83cfac92020-05-19 14:58:13 +0100488 if (!desc || irq_settings_is_hidden(desc))
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100489 goto outsparse;
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100490
Thomas Gleixner9e42ad12020-12-10 20:25:41 +0100491 if (desc->kstat_irqs) {
Eric Dumazet74bdf782018-06-20 08:03:32 -0700492 for_each_online_cpu(j)
Thomas Gleixner9e42ad12020-12-10 20:25:41 +0100493 any_count |= data_race(*per_cpu_ptr(desc->kstat_irqs, j));
494 }
Eric Dumazet74bdf782018-06-20 08:03:32 -0700495
496 if ((!desc->action || irq_desc_is_chained(desc)) && !any_count)
497 goto outsparse;
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100498
499 seq_printf(p, "%*d: ", prec, i);
500 for_each_online_cpu(j)
Eric Dumazet74bdf782018-06-20 08:03:32 -0700501 seq_printf(p, "%10u ", desc->kstat_irqs ?
502 *per_cpu_ptr(desc->kstat_irqs, j) : 0);
Thomas Gleixnerab7798f2011-03-25 16:48:50 +0100503
Eric Dumazet74bdf782018-06-20 08:03:32 -0700504 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixnerab7798f2011-03-25 16:48:50 +0100505 if (desc->irq_data.chip) {
506 if (desc->irq_data.chip->irq_print_chip)
507 desc->irq_data.chip->irq_print_chip(&desc->irq_data, p);
508 else if (desc->irq_data.chip->name)
509 seq_printf(p, " %8s", desc->irq_data.chip->name);
510 else
511 seq_printf(p, " %8s", "-");
512 } else {
513 seq_printf(p, " %8s", "None");
514 }
Grant Likelyc12d2f42012-01-26 16:29:19 -0700515 if (desc->irq_data.domain)
Cédric Le Goaterd92df422021-07-01 15:27:50 +0200516 seq_printf(p, " %*lu", prec, desc->irq_data.hwirq);
H Hartley Sweetenf435da42017-02-10 09:54:16 -0700517 else
518 seq_printf(p, " %*s", prec, "");
Geert Uytterhoeven94b2c362011-04-30 22:56:20 +0200519#ifdef CONFIG_GENERIC_IRQ_SHOW_LEVEL
Thomas Gleixnerab7798f2011-03-25 16:48:50 +0100520 seq_printf(p, " %-8s", irqd_is_level_type(&desc->irq_data) ? "Level" : "Edge");
521#endif
Thomas Gleixneree0401e2011-03-17 13:36:57 +0100522 if (desc->name)
523 seq_printf(p, "-%-8s", desc->name);
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100524
Eric Dumazet74bdf782018-06-20 08:03:32 -0700525 action = desc->action;
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100526 if (action) {
527 seq_printf(p, " %s", action->name);
528 while ((action = action->next) != NULL)
529 seq_printf(p, ", %s", action->name);
530 }
531
532 seq_putc(p, '\n');
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100533 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerc291ee62014-12-11 23:01:41 +0100534outsparse:
Eric Dumazet74bdf782018-06-20 08:03:32 -0700535 rcu_read_unlock();
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +0100536 return 0;
537}
538#endif