blob: 1516ab77355c928bd1e1f5c8b6759e53d3b0c7e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/irq/manage.c
3 *
Ingo Molnara34db9b2006-06-29 02:24:50 -07004 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006 Thomas Gleixner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This file contains driver APIs to the irq subsystem.
8 */
9
10#include <linux/irq.h>
11#include <linux/module.h>
12#include <linux/random.h>
13#include <linux/interrupt.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "internals.h"
17
David Daney1267a8d2009-01-27 09:53:21 -080018#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
Rusty Russelld036e672009-01-01 10:12:26 +103019cpumask_var_t irq_default_affinity;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/**
22 * synchronize_irq - wait for pending IRQ handlers (on other CPUs)
Randy Dunlap1e5d5332005-11-07 01:01:06 -080023 * @irq: interrupt number to wait for
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 * This function waits for any pending IRQ handlers for this interrupt
26 * to complete before returning. If you use this function while
27 * holding a resource the IRQ handler may need you will deadlock.
28 *
29 * This function may be called - with care - from IRQ context.
30 */
31void synchronize_irq(unsigned int irq)
32{
Yinghai Lucb5bc832008-08-19 20:50:17 -070033 struct irq_desc *desc = irq_to_desc(irq);
Herbert Xua98ce5c2007-10-23 11:26:25 +080034 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Yinghai Lu7d94f7c2008-08-19 20:50:14 -070036 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -070037 return;
38
Herbert Xua98ce5c2007-10-23 11:26:25 +080039 do {
40 unsigned long flags;
41
42 /*
43 * Wait until we're out of the critical section. This might
44 * give the wrong answer due to the lack of memory barriers.
45 */
46 while (desc->status & IRQ_INPROGRESS)
47 cpu_relax();
48
49 /* Ok, that indicated we're done: double-check carefully. */
50 spin_lock_irqsave(&desc->lock, flags);
51 status = desc->status;
52 spin_unlock_irqrestore(&desc->lock, flags);
53
54 /* Oops, that failed? */
55 } while (status & IRQ_INPROGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057EXPORT_SYMBOL(synchronize_irq);
58
Thomas Gleixner771ee3b2007-02-16 01:27:25 -080059/**
60 * irq_can_set_affinity - Check if the affinity of a given irq can be set
61 * @irq: Interrupt to check
62 *
63 */
64int irq_can_set_affinity(unsigned int irq)
65{
Yinghai Lu08678b02008-08-19 20:50:05 -070066 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner771ee3b2007-02-16 01:27:25 -080067
68 if (CHECK_IRQ_PER_CPU(desc->status) || !desc->chip ||
69 !desc->chip->set_affinity)
70 return 0;
71
72 return 1;
73}
74
75/**
76 * irq_set_affinity - Set the irq affinity of a given irq
77 * @irq: Interrupt to set affinity
78 * @cpumask: cpumask
79 *
80 */
Rusty Russell0de26522008-12-13 21:20:26 +103081int irq_set_affinity(unsigned int irq, const struct cpumask *cpumask)
Thomas Gleixner771ee3b2007-02-16 01:27:25 -080082{
Yinghai Lu08678b02008-08-19 20:50:05 -070083 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +010084 unsigned long flags;
Thomas Gleixner771ee3b2007-02-16 01:27:25 -080085
86 if (!desc->chip->set_affinity)
87 return -EINVAL;
88
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +010089 spin_lock_irqsave(&desc->lock, flags);
90
Thomas Gleixner771ee3b2007-02-16 01:27:25 -080091#ifdef CONFIG_GENERIC_PENDING_IRQ
venkatesh.pallipadi@intel.com932775a2008-09-05 18:02:15 -070092 if (desc->status & IRQ_MOVE_PCNTXT || desc->status & IRQ_DISABLED) {
Mike Travis7f7ace02009-01-10 21:58:08 -080093 cpumask_copy(desc->affinity, cpumask);
Suresh Siddha72b1e222008-07-10 11:16:45 -070094 desc->chip->set_affinity(irq, cpumask);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +010095 } else {
96 desc->status |= IRQ_MOVE_PENDING;
Mike Travis7f7ace02009-01-10 21:58:08 -080097 cpumask_copy(desc->pending_mask, cpumask);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +010098 }
Thomas Gleixner771ee3b2007-02-16 01:27:25 -080099#else
Mike Travis7f7ace02009-01-10 21:58:08 -0800100 cpumask_copy(desc->affinity, cpumask);
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800101 desc->chip->set_affinity(irq, cpumask);
102#endif
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100103 desc->status |= IRQ_AFFINITY_SET;
104 spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800105 return 0;
106}
107
Max Krasnyansky18404752008-05-29 11:02:52 -0700108#ifndef CONFIG_AUTO_IRQ_AFFINITY
109/*
110 * Generic version of the affinity autoselector.
111 */
Hannes Eder548c8932009-02-08 20:24:47 +0100112static int setup_affinity(unsigned int irq, struct irq_desc *desc)
Max Krasnyansky18404752008-05-29 11:02:52 -0700113{
Max Krasnyansky18404752008-05-29 11:02:52 -0700114 if (!irq_can_set_affinity(irq))
115 return 0;
116
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100117 /*
118 * Preserve an userspace affinity setup, but make sure that
119 * one of the targets is online.
120 */
Thomas Gleixner612e3682008-11-07 13:58:46 +0100121 if (desc->status & (IRQ_AFFINITY_SET | IRQ_NO_BALANCING)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800122 if (cpumask_any_and(desc->affinity, cpu_online_mask)
Rusty Russell0de26522008-12-13 21:20:26 +1030123 < nr_cpu_ids)
124 goto set_affinity;
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100125 else
126 desc->status &= ~IRQ_AFFINITY_SET;
127 }
128
Mike Travis7f7ace02009-01-10 21:58:08 -0800129 cpumask_and(desc->affinity, cpu_online_mask, irq_default_affinity);
Rusty Russell0de26522008-12-13 21:20:26 +1030130set_affinity:
Mike Travis7f7ace02009-01-10 21:58:08 -0800131 desc->chip->set_affinity(irq, desc->affinity);
Max Krasnyansky18404752008-05-29 11:02:52 -0700132
Max Krasnyansky18404752008-05-29 11:02:52 -0700133 return 0;
134}
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100135#else
Hannes Eder548c8932009-02-08 20:24:47 +0100136static inline int setup_affinity(unsigned int irq, struct irq_desc *d)
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100137{
138 return irq_select_affinity(irq);
139}
Max Krasnyansky18404752008-05-29 11:02:52 -0700140#endif
141
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100142/*
143 * Called when affinity is set via /proc/irq
144 */
145int irq_select_affinity_usr(unsigned int irq)
146{
147 struct irq_desc *desc = irq_to_desc(irq);
148 unsigned long flags;
149 int ret;
150
151 spin_lock_irqsave(&desc->lock, flags);
Hannes Eder548c8932009-02-08 20:24:47 +0100152 ret = setup_affinity(irq, desc);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100153 spin_unlock_irqrestore(&desc->lock, flags);
154
155 return ret;
156}
157
158#else
Hannes Eder548c8932009-02-08 20:24:47 +0100159static inline int setup_affinity(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100160{
161 return 0;
162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#endif
164
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100165void __disable_irq(struct irq_desc *desc, unsigned int irq, bool suspend)
166{
167 if (suspend) {
168 if (!desc->action || (desc->action->flags & IRQF_TIMER))
169 return;
170 desc->status |= IRQ_SUSPENDED;
171 }
172
173 if (!desc->depth++) {
174 desc->status |= IRQ_DISABLED;
175 desc->chip->disable(irq);
176 }
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/**
180 * disable_irq_nosync - disable an irq without waiting
181 * @irq: Interrupt to disable
182 *
183 * Disable the selected interrupt line. Disables and Enables are
184 * nested.
185 * Unlike disable_irq(), this function does not ensure existing
186 * instances of the IRQ handler have completed before returning.
187 *
188 * This function may be called from IRQ context.
189 */
190void disable_irq_nosync(unsigned int irq)
191{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200192 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unsigned long flags;
194
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700195 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -0700196 return;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 spin_lock_irqsave(&desc->lock, flags);
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100199 __disable_irq(desc, irq, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 spin_unlock_irqrestore(&desc->lock, flags);
201}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202EXPORT_SYMBOL(disable_irq_nosync);
203
204/**
205 * disable_irq - disable an irq and wait for completion
206 * @irq: Interrupt to disable
207 *
208 * Disable the selected interrupt line. Enables and Disables are
209 * nested.
210 * This function waits for any pending IRQ handlers for this interrupt
211 * to complete before returning. If you use this function while
212 * holding a resource the IRQ handler may need you will deadlock.
213 *
214 * This function may be called - with care - from IRQ context.
215 */
216void disable_irq(unsigned int irq)
217{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200218 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700220 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -0700221 return;
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 disable_irq_nosync(irq);
224 if (desc->action)
225 synchronize_irq(irq);
226}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227EXPORT_SYMBOL(disable_irq);
228
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100229void __enable_irq(struct irq_desc *desc, unsigned int irq, bool resume)
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200230{
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100231 if (resume)
232 desc->status &= ~IRQ_SUSPENDED;
233
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200234 switch (desc->depth) {
235 case 0:
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100236 err_out:
Arjan van de Venb8c512f2008-07-25 19:45:36 -0700237 WARN(1, KERN_WARNING "Unbalanced enable for IRQ %d\n", irq);
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200238 break;
239 case 1: {
240 unsigned int status = desc->status & ~IRQ_DISABLED;
241
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100242 if (desc->status & IRQ_SUSPENDED)
243 goto err_out;
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200244 /* Prevent probing on this irq: */
245 desc->status = status | IRQ_NOPROBE;
246 check_irq_resend(desc, irq);
247 /* fall-through */
248 }
249 default:
250 desc->depth--;
251 }
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/**
255 * enable_irq - enable handling of an irq
256 * @irq: Interrupt to enable
257 *
258 * Undoes the effect of one call to disable_irq(). If this
259 * matches the last disable, processing of interrupts on this
260 * IRQ line is re-enabled.
261 *
262 * This function may be called from IRQ context.
263 */
264void enable_irq(unsigned int irq)
265{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200266 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 unsigned long flags;
268
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700269 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -0700270 return;
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 spin_lock_irqsave(&desc->lock, flags);
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100273 __enable_irq(desc, irq, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 spin_unlock_irqrestore(&desc->lock, flags);
275}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276EXPORT_SYMBOL(enable_irq);
277
David Brownell0c5d1eb2008-10-01 14:46:18 -0700278static int set_irq_wake_real(unsigned int irq, unsigned int on)
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200279{
Yinghai Lu08678b02008-08-19 20:50:05 -0700280 struct irq_desc *desc = irq_to_desc(irq);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200281 int ret = -ENXIO;
282
283 if (desc->chip->set_wake)
284 ret = desc->chip->set_wake(irq, on);
285
286 return ret;
287}
288
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700289/**
290 * set_irq_wake - control irq power management wakeup
291 * @irq: interrupt to control
292 * @on: enable/disable power management wakeup
293 *
David Brownell15a647e2006-07-30 03:03:08 -0700294 * Enable/disable power management wakeup mode, which is
295 * disabled by default. Enables and disables must match,
296 * just as they match for non-wakeup mode support.
297 *
298 * Wakeup mode lets this IRQ wake the system from sleep
299 * states like "suspend to RAM".
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700300 */
301int set_irq_wake(unsigned int irq, unsigned int on)
302{
Yinghai Lu08678b02008-08-19 20:50:05 -0700303 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700304 unsigned long flags;
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200305 int ret = 0;
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700306
David Brownell15a647e2006-07-30 03:03:08 -0700307 /* wakeup-capable irqs can be shared between drivers that
308 * don't need to have the same sleep mode behaviors.
309 */
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700310 spin_lock_irqsave(&desc->lock, flags);
David Brownell15a647e2006-07-30 03:03:08 -0700311 if (on) {
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200312 if (desc->wake_depth++ == 0) {
313 ret = set_irq_wake_real(irq, on);
314 if (ret)
315 desc->wake_depth = 0;
316 else
317 desc->status |= IRQ_WAKEUP;
318 }
David Brownell15a647e2006-07-30 03:03:08 -0700319 } else {
320 if (desc->wake_depth == 0) {
Arjan van de Ven7a2c4772008-07-25 01:45:54 -0700321 WARN(1, "Unbalanced IRQ %d wake disable\n", irq);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200322 } else if (--desc->wake_depth == 0) {
323 ret = set_irq_wake_real(irq, on);
324 if (ret)
325 desc->wake_depth = 1;
326 else
327 desc->status &= ~IRQ_WAKEUP;
328 }
David Brownell15a647e2006-07-30 03:03:08 -0700329 }
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200330
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700331 spin_unlock_irqrestore(&desc->lock, flags);
332 return ret;
333}
334EXPORT_SYMBOL(set_irq_wake);
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/*
337 * Internal function that tells the architecture code whether a
338 * particular irq has been exclusively allocated or is available
339 * for driver use.
340 */
341int can_request_irq(unsigned int irq, unsigned long irqflags)
342{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200343 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct irqaction *action;
345
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700346 if (!desc)
347 return 0;
348
349 if (desc->status & IRQ_NOREQUEST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return 0;
351
Yinghai Lu08678b02008-08-19 20:50:05 -0700352 action = desc->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (action)
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700354 if (irqflags & action->flags & IRQF_SHARED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 action = NULL;
356
357 return !action;
358}
359
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700360void compat_irq_chip_set_default_handler(struct irq_desc *desc)
361{
362 /*
363 * If the architecture still has not overriden
364 * the flow handler then zap the default. This
365 * should catch incorrect flow-type setting.
366 */
367 if (desc->handle_irq == &handle_bad_irq)
368 desc->handle_irq = NULL;
369}
370
David Brownell0c5d1eb2008-10-01 14:46:18 -0700371int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700372 unsigned long flags)
373{
374 int ret;
David Brownell0c5d1eb2008-10-01 14:46:18 -0700375 struct irq_chip *chip = desc->chip;
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700376
377 if (!chip || !chip->set_type) {
378 /*
379 * IRQF_TRIGGER_* but the PIC does not support multiple
380 * flow-types?
381 */
Mark Nelson3ff68a62008-11-13 21:37:41 +1100382 pr_debug("No set_type function for IRQ %d (%s)\n", irq,
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700383 chip ? (chip->name ? : "unknown") : "unknown");
384 return 0;
385 }
386
David Brownellf2b662d2008-12-01 14:31:38 -0800387 /* caller masked out all except trigger mode flags */
388 ret = chip->set_type(irq, flags);
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700389
390 if (ret)
David Brownellc69ad712008-08-05 13:01:14 -0700391 pr_err("setting trigger mode %d for irq %u failed (%pF)\n",
David Brownellf2b662d2008-12-01 14:31:38 -0800392 (int)flags, irq, chip->set_type);
David Brownell0c5d1eb2008-10-01 14:46:18 -0700393 else {
David Brownellf2b662d2008-12-01 14:31:38 -0800394 if (flags & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
395 flags |= IRQ_LEVEL;
David Brownell0c5d1eb2008-10-01 14:46:18 -0700396 /* note that IRQF_TRIGGER_MASK == IRQ_TYPE_SENSE_MASK */
David Brownellf2b662d2008-12-01 14:31:38 -0800397 desc->status &= ~(IRQ_LEVEL | IRQ_TYPE_SENSE_MASK);
398 desc->status |= flags;
David Brownell0c5d1eb2008-10-01 14:46:18 -0700399 }
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700400
401 return ret;
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/*
405 * Internal function to register an irqaction - typically used to
406 * allocate special interrupts that are part of the architecture.
407 */
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200408static int
Ingo Molnar327ec562009-02-15 11:21:37 +0100409__setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Ingo Molnarf17c7542009-02-17 20:43:37 +0100411 struct irqaction *old, **old_ptr;
Andrew Morton8b126b72006-11-14 02:03:23 -0800412 const char *old_name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 unsigned long flags;
414 int shared = 0;
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700415 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700417 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -0700418 return -EINVAL;
419
Ingo Molnarf1c26622006-06-29 02:24:57 -0700420 if (desc->chip == &no_irq_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -ENOSYS;
422 /*
423 * Some drivers like serial.c use request_irq() heavily,
424 * so we have to be careful not to interfere with a
425 * running system.
426 */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700427 if (new->flags & IRQF_SAMPLE_RANDOM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 /*
429 * This function might sleep, we want to call it first,
430 * outside of the atomic block.
431 * Yes, this might clear the entropy pool if the wrong
432 * driver is attempted to be loaded, without actually
433 * installing a new handler, but is this really a problem,
434 * only the sysadmin is able to do this.
435 */
436 rand_initialize_irq(irq);
437 }
438
439 /*
440 * The following block of code has to be executed atomically
441 */
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700442 spin_lock_irqsave(&desc->lock, flags);
Ingo Molnarf17c7542009-02-17 20:43:37 +0100443 old_ptr = &desc->action;
444 old = *old_ptr;
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700445 if (old) {
Thomas Gleixnere76de9f2006-06-29 02:24:56 -0700446 /*
447 * Can't share interrupts unless both agree to and are
448 * the same type (level, edge, polarity). So both flag
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700449 * fields must have IRQF_SHARED set and the bits which
Thomas Gleixnere76de9f2006-06-29 02:24:56 -0700450 * set the trigger type must match.
451 */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700452 if (!((old->flags & new->flags) & IRQF_SHARED) ||
Andrew Morton8b126b72006-11-14 02:03:23 -0800453 ((old->flags ^ new->flags) & IRQF_TRIGGER_MASK)) {
454 old_name = old->name;
Dimitri Sivanichf5163422006-03-25 03:08:23 -0800455 goto mismatch;
Andrew Morton8b126b72006-11-14 02:03:23 -0800456 }
Dimitri Sivanichf5163422006-03-25 03:08:23 -0800457
Thomas Gleixner284c6682006-07-03 02:20:32 +0200458#if defined(CONFIG_IRQ_PER_CPU)
Dimitri Sivanichf5163422006-03-25 03:08:23 -0800459 /* All handlers must agree on per-cpuness */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700460 if ((old->flags & IRQF_PERCPU) !=
461 (new->flags & IRQF_PERCPU))
Dimitri Sivanichf5163422006-03-25 03:08:23 -0800462 goto mismatch;
463#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 /* add new interrupt at end of irq queue */
466 do {
Ingo Molnarf17c7542009-02-17 20:43:37 +0100467 old_ptr = &old->next;
468 old = *old_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 } while (old);
470 shared = 1;
471 }
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (!shared) {
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700474 irq_chip_set_defaults(desc->chip);
Thomas Gleixnere76de9f2006-06-29 02:24:56 -0700475
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700476 /* Setup the type (level, edge polarity) if configured: */
477 if (new->flags & IRQF_TRIGGER_MASK) {
David Brownellf2b662d2008-12-01 14:31:38 -0800478 ret = __irq_set_trigger(desc, irq,
479 new->flags & IRQF_TRIGGER_MASK);
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700480
481 if (ret) {
482 spin_unlock_irqrestore(&desc->lock, flags);
483 return ret;
484 }
485 } else
486 compat_irq_chip_set_default_handler(desc);
Ahmed S. Darwishf75d2222007-05-08 00:27:55 -0700487#if defined(CONFIG_IRQ_PER_CPU)
488 if (new->flags & IRQF_PERCPU)
489 desc->status |= IRQ_PER_CPU;
490#endif
491
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700492 desc->status &= ~(IRQ_AUTODETECT | IRQ_WAITING |
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200493 IRQ_INPROGRESS | IRQ_SPURIOUS_DISABLED);
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700494
495 if (!(desc->status & IRQ_NOAUTOEN)) {
496 desc->depth = 0;
497 desc->status &= ~IRQ_DISABLED;
Pawel MOLL7e6e1782008-09-01 10:12:11 +0100498 desc->chip->startup(irq);
Thomas Gleixnere76de9f2006-06-29 02:24:56 -0700499 } else
500 /* Undo nested disables: */
501 desc->depth = 1;
Max Krasnyansky18404752008-05-29 11:02:52 -0700502
Thomas Gleixner612e3682008-11-07 13:58:46 +0100503 /* Exclude IRQ from balancing if requested */
504 if (new->flags & IRQF_NOBALANCING)
505 desc->status |= IRQ_NO_BALANCING;
506
Max Krasnyansky18404752008-05-29 11:02:52 -0700507 /* Set default affinity mask once everything is setup */
Hannes Eder548c8932009-02-08 20:24:47 +0100508 setup_affinity(irq, desc);
David Brownell0c5d1eb2008-10-01 14:46:18 -0700509
510 } else if ((new->flags & IRQF_TRIGGER_MASK)
511 && (new->flags & IRQF_TRIGGER_MASK)
512 != (desc->status & IRQ_TYPE_SENSE_MASK)) {
513 /* hope the handler works with the actual trigger mode... */
514 pr_warning("IRQ %d uses trigger mode %d; requested %d\n",
515 irq, (int)(desc->status & IRQ_TYPE_SENSE_MASK),
516 (int)(new->flags & IRQF_TRIGGER_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700518
Ingo Molnarf17c7542009-02-17 20:43:37 +0100519 *old_ptr = new;
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700520
Linus Torvalds8528b0f2007-01-23 14:16:31 -0800521 /* Reset broken irq detection when installing new handler */
522 desc->irq_count = 0;
523 desc->irqs_unhandled = 0;
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200524
525 /*
526 * Check whether we disabled the irq via the spurious handler
527 * before. Reenable it and give it another chance.
528 */
529 if (shared && (desc->status & IRQ_SPURIOUS_DISABLED)) {
530 desc->status &= ~IRQ_SPURIOUS_DISABLED;
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100531 __enable_irq(desc, irq, false);
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200532 }
533
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700534 spin_unlock_irqrestore(&desc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 new->irq = irq;
Yinghai Lu2c6927a2008-08-19 20:50:11 -0700537 register_irq_proc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 new->dir = NULL;
539 register_handler_proc(irq, new);
540
541 return 0;
Dimitri Sivanichf5163422006-03-25 03:08:23 -0800542
543mismatch:
Alan Cox3f050442007-02-12 00:52:04 -0800544#ifdef CONFIG_DEBUG_SHIRQ
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700545 if (!(new->flags & IRQF_PROBE_SHARED)) {
Bjorn Helgaase8c4b9d2006-07-01 04:35:45 -0700546 printk(KERN_ERR "IRQ handler type mismatch for IRQ %d\n", irq);
Andrew Morton8b126b72006-11-14 02:03:23 -0800547 if (old_name)
548 printk(KERN_ERR "current handler: %s\n", old_name);
Andrew Morton13e87ec2006-04-27 18:39:18 -0700549 dump_stack();
550 }
Alan Cox3f050442007-02-12 00:52:04 -0800551#endif
Andrew Morton8b126b72006-11-14 02:03:23 -0800552 spin_unlock_irqrestore(&desc->lock, flags);
Dimitri Sivanichf5163422006-03-25 03:08:23 -0800553 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556/**
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200557 * setup_irq - setup an interrupt
558 * @irq: Interrupt line to setup
559 * @act: irqaction for the interrupt
560 *
561 * Used to statically setup interrupts in the early boot process.
562 */
563int setup_irq(unsigned int irq, struct irqaction *act)
564{
565 struct irq_desc *desc = irq_to_desc(irq);
566
567 return __setup_irq(irq, desc, act);
568}
Magnus Dammeb53b4e2009-03-12 21:05:59 +0900569EXPORT_SYMBOL_GPL(setup_irq);
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200570
Magnus Dammcbf94f02009-03-12 21:05:51 +0900571 /*
572 * Internal function to unregister an irqaction - used to free
573 * regular and special interrupts that are part of the architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 */
Magnus Dammcbf94f02009-03-12 21:05:51 +0900575static struct irqaction *__free_irq(unsigned int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200577 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnarf17c7542009-02-17 20:43:37 +0100578 struct irqaction *action, **action_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 unsigned long flags;
580
Ingo Molnarae88a232009-02-15 11:29:50 +0100581 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700582
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700583 if (!desc)
Magnus Dammf21cfb22009-03-12 21:05:42 +0900584 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700586 spin_lock_irqsave(&desc->lock, flags);
Ingo Molnarae88a232009-02-15 11:29:50 +0100587
588 /*
589 * There can be multiple actions per IRQ descriptor, find the right
590 * one based on the dev_id:
591 */
Ingo Molnarf17c7542009-02-17 20:43:37 +0100592 action_ptr = &desc->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 for (;;) {
Ingo Molnarf17c7542009-02-17 20:43:37 +0100594 action = *action_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Ingo Molnarae88a232009-02-15 11:29:50 +0100596 if (!action) {
597 WARN(1, "Trying to free already-free IRQ %d\n", irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700598 spin_unlock_irqrestore(&desc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Magnus Dammf21cfb22009-03-12 21:05:42 +0900600 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Ingo Molnarae88a232009-02-15 11:29:50 +0100602
Ingo Molnar8316e382009-02-17 20:28:29 +0100603 if (action->dev_id == dev_id)
604 break;
Ingo Molnarf17c7542009-02-17 20:43:37 +0100605 action_ptr = &action->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Ingo Molnarae88a232009-02-15 11:29:50 +0100607
608 /* Found it - now remove it from the list of entries: */
Ingo Molnarf17c7542009-02-17 20:43:37 +0100609 *action_ptr = action->next;
Ingo Molnarae88a232009-02-15 11:29:50 +0100610
611 /* Currently used only by UML, might disappear one day: */
612#ifdef CONFIG_IRQ_RELEASE_METHOD
613 if (desc->chip->release)
614 desc->chip->release(irq, dev_id);
615#endif
616
617 /* If this was the last handler, shut down the IRQ line: */
618 if (!desc->action) {
619 desc->status |= IRQ_DISABLED;
620 if (desc->chip->shutdown)
621 desc->chip->shutdown(irq);
622 else
623 desc->chip->disable(irq);
624 }
625 spin_unlock_irqrestore(&desc->lock, flags);
626
627 unregister_handler_proc(irq, action);
628
629 /* Make sure it's not being used on another CPU: */
630 synchronize_irq(irq);
631
632#ifdef CONFIG_DEBUG_SHIRQ
633 /*
634 * It's a shared IRQ -- the driver ought to be prepared for an IRQ
635 * event to happen even now it's being freed, so let's make sure that
636 * is so by doing an extra call to the handler ....
637 *
638 * ( We do this after actually deregistering it, to make sure that a
639 * 'real' IRQ doesn't run in * parallel with our fake. )
640 */
641 if (action->flags & IRQF_SHARED) {
642 local_irq_save(flags);
643 action->handler(irq, dev_id);
644 local_irq_restore(flags);
645 }
646#endif
Magnus Dammf21cfb22009-03-12 21:05:42 +0900647 return action;
648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650/**
Magnus Dammcbf94f02009-03-12 21:05:51 +0900651 * remove_irq - free an interrupt
652 * @irq: Interrupt line to free
653 * @act: irqaction for the interrupt
654 *
655 * Used to remove interrupts statically setup by the early boot process.
656 */
657void remove_irq(unsigned int irq, struct irqaction *act)
658{
659 __free_irq(irq, act->dev_id);
660}
Magnus Dammeb53b4e2009-03-12 21:05:59 +0900661EXPORT_SYMBOL_GPL(remove_irq);
Magnus Dammcbf94f02009-03-12 21:05:51 +0900662
663/**
Magnus Dammf21cfb22009-03-12 21:05:42 +0900664 * free_irq - free an interrupt allocated with request_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * @irq: Interrupt line to free
666 * @dev_id: Device identity to free
667 *
668 * Remove an interrupt handler. The handler is removed and if the
669 * interrupt line is no longer in use by any driver it is disabled.
670 * On a shared IRQ the caller must ensure the interrupt is disabled
671 * on the card it drives before calling this function. The function
672 * does not return until any executing interrupts for this IRQ
673 * have completed.
674 *
675 * This function must not be called from interrupt context.
676 */
677void free_irq(unsigned int irq, void *dev_id)
678{
Magnus Dammcbf94f02009-03-12 21:05:51 +0900679 kfree(__free_irq(irq, dev_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681EXPORT_SYMBOL(free_irq);
682
683/**
684 * request_irq - allocate an interrupt line
685 * @irq: Interrupt line to allocate
686 * @handler: Function to be called when the IRQ occurs
687 * @irqflags: Interrupt type flags
688 * @devname: An ascii name for the claiming device
689 * @dev_id: A cookie passed back to the handler function
690 *
691 * This call allocates interrupt resources and enables the
692 * interrupt line and IRQ handling. From the point this
693 * call is made your handler function may be invoked. Since
694 * your handler function must clear any interrupt the board
695 * raises, you must take care both to initialise your hardware
696 * and to set up the interrupt handler in the right order.
697 *
698 * Dev_id must be globally unique. Normally the address of the
699 * device data structure is used as the cookie. Since the handler
700 * receives this value it makes sense to use it.
701 *
702 * If your interrupt is shared you must pass a non NULL dev_id
703 * as this is required when freeing the interrupt.
704 *
705 * Flags:
706 *
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700707 * IRQF_SHARED Interrupt is shared
708 * IRQF_DISABLED Disable local interrupts while processing
709 * IRQF_SAMPLE_RANDOM The interrupt can be used for entropy
David Brownell0c5d1eb2008-10-01 14:46:18 -0700710 * IRQF_TRIGGER_* Specify active edge(s) or level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 *
712 */
David Howellsda482792006-10-05 13:06:34 +0100713int request_irq(unsigned int irq, irq_handler_t handler,
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700714 unsigned long irqflags, const char *devname, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700716 struct irqaction *action;
Yinghai Lu08678b02008-08-19 20:50:05 -0700717 struct irq_desc *desc;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200718 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
David Brownell470c6622008-12-01 14:31:37 -0800720 /*
721 * handle_IRQ_event() always ignores IRQF_DISABLED except for
722 * the _first_ irqaction (sigh). That can cause oopsing, but
723 * the behavior is classified as "will not fix" so we need to
724 * start nudging drivers away from using that idiom.
725 */
Ingo Molnar327ec562009-02-15 11:21:37 +0100726 if ((irqflags & (IRQF_SHARED|IRQF_DISABLED)) ==
727 (IRQF_SHARED|IRQF_DISABLED)) {
728 pr_warning(
729 "IRQ %d/%s: IRQF_DISABLED is not guaranteed on shared IRQs\n",
730 irq, devname);
731 }
David Brownell470c6622008-12-01 14:31:37 -0800732
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700733#ifdef CONFIG_LOCKDEP
734 /*
735 * Lockdep wants atomic interrupt handlers:
736 */
Thomas Gleixner38515e92007-02-14 00:33:16 -0800737 irqflags |= IRQF_DISABLED;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700738#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /*
740 * Sanity-check: shared interrupts must pass in a real dev-ID,
741 * otherwise we'll have trouble later trying to figure out
742 * which interrupt is which (messes up the interrupt freeing
743 * logic etc).
744 */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700745 if ((irqflags & IRQF_SHARED) && !dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -EINVAL;
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700747
Yinghai Lucb5bc832008-08-19 20:50:17 -0700748 desc = irq_to_desc(irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700749 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return -EINVAL;
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700751
Yinghai Lu08678b02008-08-19 20:50:05 -0700752 if (desc->status & IRQ_NOREQUEST)
Thomas Gleixner6550c772006-06-29 02:24:49 -0700753 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (!handler)
755 return -EINVAL;
756
Thomas Gleixner45535732009-02-22 23:00:32 +0100757 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (!action)
759 return -ENOMEM;
760
761 action->handler = handler;
762 action->flags = irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 action->name = devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 action->dev_id = dev_id;
765
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200766 retval = __setup_irq(irq, desc, action);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +0400767 if (retval)
768 kfree(action);
769
David Woodhousea304e1b2007-02-12 00:52:00 -0800770#ifdef CONFIG_DEBUG_SHIRQ
771 if (irqflags & IRQF_SHARED) {
772 /*
773 * It's a shared IRQ -- the driver ought to be prepared for it
774 * to happen immediately, so let's make sure....
Anton Vorontsov377bf1e2008-08-21 22:58:28 +0400775 * We disable the irq to make sure that a 'real' IRQ doesn't
776 * run in parallel with our fake.
David Woodhousea304e1b2007-02-12 00:52:00 -0800777 */
Jarek Poplawski59845b12007-08-30 23:56:34 -0700778 unsigned long flags;
David Woodhousea304e1b2007-02-12 00:52:00 -0800779
Anton Vorontsov377bf1e2008-08-21 22:58:28 +0400780 disable_irq(irq);
Jarek Poplawski59845b12007-08-30 23:56:34 -0700781 local_irq_save(flags);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +0400782
Jarek Poplawski59845b12007-08-30 23:56:34 -0700783 handler(irq, dev_id);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +0400784
Jarek Poplawski59845b12007-08-30 23:56:34 -0700785 local_irq_restore(flags);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +0400786 enable_irq(irq);
David Woodhousea304e1b2007-02-12 00:52:00 -0800787 }
788#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return retval;
790}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791EXPORT_SYMBOL(request_irq);