Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / kernel / irq / chip.c
blobad2e058154597d39a3d0fe58484310578d8589e3
1 /*
2 * linux/kernel/irq/chip.c
4 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
7 * This file contains the core interrupt handling code, for irq-chip
8 * based architectures.
10 * Detailed information is available in Documentation/DocBook/genericirq
13 #include <linux/irq.h>
14 #include <linux/msi.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/kernel_stat.h>
19 #include "internals.h"
21 /**
22 * dynamic_irq_init - initialize a dynamically allocated irq
23 * @irq: irq number to initialize
25 void dynamic_irq_init(unsigned int irq)
27 struct irq_desc *desc;
28 unsigned long flags;
30 if (irq >= NR_IRQS) {
31 printk(KERN_ERR "Trying to initialize invalid IRQ%d\n", irq);
32 WARN_ON(1);
33 return;
36 /* Ensure we don't have left over values from a previous use of this irq */
37 desc = irq_desc + irq;
38 spin_lock_irqsave(&desc->lock, flags);
39 desc->status = IRQ_DISABLED;
40 desc->chip = &no_irq_chip;
41 desc->handle_irq = handle_bad_irq;
42 desc->depth = 1;
43 desc->msi_desc = NULL;
44 desc->handler_data = NULL;
45 desc->chip_data = NULL;
46 desc->action = NULL;
47 desc->irq_count = 0;
48 desc->irqs_unhandled = 0;
49 #ifdef CONFIG_SMP
50 desc->affinity = CPU_MASK_ALL;
51 #endif
52 spin_unlock_irqrestore(&desc->lock, flags);
55 /**
56 * dynamic_irq_cleanup - cleanup a dynamically allocated irq
57 * @irq: irq number to initialize
59 void dynamic_irq_cleanup(unsigned int irq)
61 struct irq_desc *desc;
62 unsigned long flags;
64 if (irq >= NR_IRQS) {
65 printk(KERN_ERR "Trying to cleanup invalid IRQ%d\n", irq);
66 WARN_ON(1);
67 return;
70 desc = irq_desc + irq;
71 spin_lock_irqsave(&desc->lock, flags);
72 if (desc->action) {
73 spin_unlock_irqrestore(&desc->lock, flags);
74 printk(KERN_ERR "Destroying IRQ%d without calling free_irq\n",
75 irq);
76 WARN_ON(1);
77 return;
79 desc->msi_desc = NULL;
80 desc->handler_data = NULL;
81 desc->chip_data = NULL;
82 desc->handle_irq = handle_bad_irq;
83 desc->chip = &no_irq_chip;
84 spin_unlock_irqrestore(&desc->lock, flags);
88 /**
89 * set_irq_chip - set the irq chip for an irq
90 * @irq: irq number
91 * @chip: pointer to irq chip description structure
93 int set_irq_chip(unsigned int irq, struct irq_chip *chip)
95 struct irq_desc *desc;
96 unsigned long flags;
98 if (irq >= NR_IRQS) {
99 printk(KERN_ERR "Trying to install chip for IRQ%d\n", irq);
100 WARN_ON(1);
101 return -EINVAL;
104 if (!chip)
105 chip = &no_irq_chip;
107 desc = irq_desc + irq;
108 spin_lock_irqsave(&desc->lock, flags);
109 irq_chip_set_defaults(chip);
110 desc->chip = chip;
111 spin_unlock_irqrestore(&desc->lock, flags);
113 return 0;
115 EXPORT_SYMBOL(set_irq_chip);
118 * set_irq_type - set the irq type for an irq
119 * @irq: irq number
120 * @type: interrupt type - see include/linux/interrupt.h
122 int set_irq_type(unsigned int irq, unsigned int type)
124 struct irq_desc *desc;
125 unsigned long flags;
126 int ret = -ENXIO;
128 if (irq >= NR_IRQS) {
129 printk(KERN_ERR "Trying to set irq type for IRQ%d\n", irq);
130 return -ENODEV;
133 desc = irq_desc + irq;
134 if (desc->chip->set_type) {
135 spin_lock_irqsave(&desc->lock, flags);
136 ret = desc->chip->set_type(irq, type);
137 spin_unlock_irqrestore(&desc->lock, flags);
139 return ret;
141 EXPORT_SYMBOL(set_irq_type);
144 * set_irq_data - set irq type data for an irq
145 * @irq: Interrupt number
146 * @data: Pointer to interrupt specific data
148 * Set the hardware irq controller data for an irq
150 int set_irq_data(unsigned int irq, void *data)
152 struct irq_desc *desc;
153 unsigned long flags;
155 if (irq >= NR_IRQS) {
156 printk(KERN_ERR
157 "Trying to install controller data for IRQ%d\n", irq);
158 return -EINVAL;
161 desc = irq_desc + irq;
162 spin_lock_irqsave(&desc->lock, flags);
163 desc->handler_data = data;
164 spin_unlock_irqrestore(&desc->lock, flags);
165 return 0;
167 EXPORT_SYMBOL(set_irq_data);
170 * set_irq_data - set irq type data for an irq
171 * @irq: Interrupt number
172 * @entry: Pointer to MSI descriptor data
174 * Set the hardware irq controller data for an irq
176 int set_irq_msi(unsigned int irq, struct msi_desc *entry)
178 struct irq_desc *desc;
179 unsigned long flags;
181 if (irq >= NR_IRQS) {
182 printk(KERN_ERR
183 "Trying to install msi data for IRQ%d\n", irq);
184 return -EINVAL;
186 desc = irq_desc + irq;
187 spin_lock_irqsave(&desc->lock, flags);
188 desc->msi_desc = entry;
189 if (entry)
190 entry->irq = irq;
191 spin_unlock_irqrestore(&desc->lock, flags);
192 return 0;
196 * set_irq_chip_data - set irq chip data for an irq
197 * @irq: Interrupt number
198 * @data: Pointer to chip specific data
200 * Set the hardware irq chip data for an irq
202 int set_irq_chip_data(unsigned int irq, void *data)
204 struct irq_desc *desc = irq_desc + irq;
205 unsigned long flags;
207 if (irq >= NR_IRQS || !desc->chip) {
208 printk(KERN_ERR "BUG: bad set_irq_chip_data(IRQ#%d)\n", irq);
209 return -EINVAL;
212 spin_lock_irqsave(&desc->lock, flags);
213 desc->chip_data = data;
214 spin_unlock_irqrestore(&desc->lock, flags);
216 return 0;
218 EXPORT_SYMBOL(set_irq_chip_data);
221 * default enable function
223 static void default_enable(unsigned int irq)
225 struct irq_desc *desc = irq_desc + irq;
227 desc->chip->unmask(irq);
228 desc->status &= ~IRQ_MASKED;
232 * default disable function
234 static void default_disable(unsigned int irq)
239 * default startup function
241 static unsigned int default_startup(unsigned int irq)
243 irq_desc[irq].chip->enable(irq);
245 return 0;
249 <<<<<<< HEAD:kernel/irq/chip.c
250 =======
251 * default shutdown function
253 static void default_shutdown(unsigned int irq)
255 struct irq_desc *desc = irq_desc + irq;
257 desc->chip->mask(irq);
258 desc->status |= IRQ_MASKED;
262 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:kernel/irq/chip.c
263 * Fixup enable/disable function pointers
265 void irq_chip_set_defaults(struct irq_chip *chip)
267 if (!chip->enable)
268 chip->enable = default_enable;
269 if (!chip->disable)
270 chip->disable = default_disable;
271 if (!chip->startup)
272 chip->startup = default_startup;
273 <<<<<<< HEAD:kernel/irq/chip.c
274 =======
276 * We use chip->disable, when the user provided its own. When
277 * we have default_disable set for chip->disable, then we need
278 * to use default_shutdown, otherwise the irq line is not
279 * disabled on free_irq():
281 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:kernel/irq/chip.c
282 if (!chip->shutdown)
283 <<<<<<< HEAD:kernel/irq/chip.c
284 chip->shutdown = chip->disable;
285 =======
286 chip->shutdown = chip->disable != default_disable ?
287 chip->disable : default_shutdown;
288 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:kernel/irq/chip.c
289 if (!chip->name)
290 chip->name = chip->typename;
291 if (!chip->end)
292 chip->end = dummy_irq_chip.end;
295 static inline void mask_ack_irq(struct irq_desc *desc, int irq)
297 if (desc->chip->mask_ack)
298 desc->chip->mask_ack(irq);
299 else {
300 desc->chip->mask(irq);
301 desc->chip->ack(irq);
306 * handle_simple_irq - Simple and software-decoded IRQs.
307 * @irq: the interrupt number
308 * @desc: the interrupt description structure for this irq
310 * Simple interrupts are either sent from a demultiplexing interrupt
311 * handler or come from hardware, where no interrupt hardware control
312 * is necessary.
314 * Note: The caller is expected to handle the ack, clear, mask and
315 * unmask issues if necessary.
317 void
318 handle_simple_irq(unsigned int irq, struct irq_desc *desc)
320 struct irqaction *action;
321 irqreturn_t action_ret;
322 const unsigned int cpu = smp_processor_id();
324 spin_lock(&desc->lock);
326 if (unlikely(desc->status & IRQ_INPROGRESS))
327 goto out_unlock;
328 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
329 kstat_cpu(cpu).irqs[irq]++;
331 action = desc->action;
332 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
333 goto out_unlock;
335 desc->status |= IRQ_INPROGRESS;
336 spin_unlock(&desc->lock);
338 action_ret = handle_IRQ_event(irq, action);
339 if (!noirqdebug)
340 note_interrupt(irq, desc, action_ret);
342 spin_lock(&desc->lock);
343 desc->status &= ~IRQ_INPROGRESS;
344 out_unlock:
345 spin_unlock(&desc->lock);
349 * handle_level_irq - Level type irq handler
350 * @irq: the interrupt number
351 * @desc: the interrupt description structure for this irq
353 * Level type interrupts are active as long as the hardware line has
354 * the active level. This may require to mask the interrupt and unmask
355 * it after the associated handler has acknowledged the device, so the
356 * interrupt line is back to inactive.
358 void
359 handle_level_irq(unsigned int irq, struct irq_desc *desc)
361 unsigned int cpu = smp_processor_id();
362 struct irqaction *action;
363 irqreturn_t action_ret;
365 spin_lock(&desc->lock);
366 mask_ack_irq(desc, irq);
368 if (unlikely(desc->status & IRQ_INPROGRESS))
369 goto out_unlock;
370 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
371 kstat_cpu(cpu).irqs[irq]++;
374 * If its disabled or no action available
375 * keep it masked and get out of here
377 action = desc->action;
378 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
379 goto out_unlock;
381 desc->status |= IRQ_INPROGRESS;
382 spin_unlock(&desc->lock);
384 action_ret = handle_IRQ_event(irq, action);
385 if (!noirqdebug)
386 note_interrupt(irq, desc, action_ret);
388 spin_lock(&desc->lock);
389 desc->status &= ~IRQ_INPROGRESS;
390 if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
391 desc->chip->unmask(irq);
392 out_unlock:
393 spin_unlock(&desc->lock);
397 * handle_fasteoi_irq - irq handler for transparent controllers
398 * @irq: the interrupt number
399 * @desc: the interrupt description structure for this irq
401 * Only a single callback will be issued to the chip: an ->eoi()
402 * call when the interrupt has been serviced. This enables support
403 * for modern forms of interrupt handlers, which handle the flow
404 * details in hardware, transparently.
406 void
407 handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
409 unsigned int cpu = smp_processor_id();
410 struct irqaction *action;
411 irqreturn_t action_ret;
413 spin_lock(&desc->lock);
415 if (unlikely(desc->status & IRQ_INPROGRESS))
416 goto out;
418 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
419 kstat_cpu(cpu).irqs[irq]++;
422 * If its disabled or no action available
423 * then mask it and get out of here:
425 action = desc->action;
426 if (unlikely(!action || (desc->status & IRQ_DISABLED))) {
427 desc->status |= IRQ_PENDING;
428 if (desc->chip->mask)
429 desc->chip->mask(irq);
430 goto out;
433 desc->status |= IRQ_INPROGRESS;
434 desc->status &= ~IRQ_PENDING;
435 spin_unlock(&desc->lock);
437 action_ret = handle_IRQ_event(irq, action);
438 if (!noirqdebug)
439 note_interrupt(irq, desc, action_ret);
441 spin_lock(&desc->lock);
442 desc->status &= ~IRQ_INPROGRESS;
443 out:
444 desc->chip->eoi(irq);
446 spin_unlock(&desc->lock);
450 * handle_edge_irq - edge type IRQ handler
451 * @irq: the interrupt number
452 * @desc: the interrupt description structure for this irq
454 * Interrupt occures on the falling and/or rising edge of a hardware
455 * signal. The occurence is latched into the irq controller hardware
456 * and must be acked in order to be reenabled. After the ack another
457 * interrupt can happen on the same source even before the first one
458 * is handled by the assosiacted event handler. If this happens it
459 * might be necessary to disable (mask) the interrupt depending on the
460 * controller hardware. This requires to reenable the interrupt inside
461 * of the loop which handles the interrupts which have arrived while
462 * the handler was running. If all pending interrupts are handled, the
463 * loop is left.
465 void
466 handle_edge_irq(unsigned int irq, struct irq_desc *desc)
468 const unsigned int cpu = smp_processor_id();
470 spin_lock(&desc->lock);
472 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
475 * If we're currently running this IRQ, or its disabled,
476 * we shouldn't process the IRQ. Mark it pending, handle
477 * the necessary masking and go out
479 if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) ||
480 !desc->action)) {
481 desc->status |= (IRQ_PENDING | IRQ_MASKED);
482 mask_ack_irq(desc, irq);
483 goto out_unlock;
486 kstat_cpu(cpu).irqs[irq]++;
488 /* Start handling the irq */
489 desc->chip->ack(irq);
491 /* Mark the IRQ currently in progress.*/
492 desc->status |= IRQ_INPROGRESS;
494 do {
495 struct irqaction *action = desc->action;
496 irqreturn_t action_ret;
498 if (unlikely(!action)) {
499 desc->chip->mask(irq);
500 goto out_unlock;
504 * When another irq arrived while we were handling
505 * one, we could have masked the irq.
506 * Renable it, if it was not disabled in meantime.
508 if (unlikely((desc->status &
509 (IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
510 (IRQ_PENDING | IRQ_MASKED))) {
511 desc->chip->unmask(irq);
512 desc->status &= ~IRQ_MASKED;
515 desc->status &= ~IRQ_PENDING;
516 spin_unlock(&desc->lock);
517 action_ret = handle_IRQ_event(irq, action);
518 if (!noirqdebug)
519 note_interrupt(irq, desc, action_ret);
520 spin_lock(&desc->lock);
522 } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING);
524 desc->status &= ~IRQ_INPROGRESS;
525 out_unlock:
526 spin_unlock(&desc->lock);
530 * handle_percpu_IRQ - Per CPU local irq handler
531 * @irq: the interrupt number
532 * @desc: the interrupt description structure for this irq
534 * Per CPU interrupts on SMP machines without locking requirements
536 void
537 handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
539 irqreturn_t action_ret;
541 kstat_this_cpu.irqs[irq]++;
543 if (desc->chip->ack)
544 desc->chip->ack(irq);
546 action_ret = handle_IRQ_event(irq, desc->action);
547 if (!noirqdebug)
548 note_interrupt(irq, desc, action_ret);
550 if (desc->chip->eoi)
551 desc->chip->eoi(irq);
554 void
555 __set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
556 const char *name)
558 struct irq_desc *desc;
559 unsigned long flags;
561 if (irq >= NR_IRQS) {
562 printk(KERN_ERR
563 "Trying to install type control for IRQ%d\n", irq);
564 return;
567 desc = irq_desc + irq;
569 if (!handle)
570 handle = handle_bad_irq;
571 else if (desc->chip == &no_irq_chip) {
572 printk(KERN_WARNING "Trying to install %sinterrupt handler "
573 "for IRQ%d\n", is_chained ? "chained " : "", irq);
575 * Some ARM implementations install a handler for really dumb
576 * interrupt hardware without setting an irq_chip. This worked
577 * with the ARM no_irq_chip but the check in setup_irq would
578 * prevent us to setup the interrupt at all. Switch it to
579 * dummy_irq_chip for easy transition.
581 desc->chip = &dummy_irq_chip;
584 spin_lock_irqsave(&desc->lock, flags);
586 /* Uninstall? */
587 if (handle == handle_bad_irq) {
588 if (desc->chip != &no_irq_chip)
589 mask_ack_irq(desc, irq);
590 desc->status |= IRQ_DISABLED;
591 desc->depth = 1;
593 desc->handle_irq = handle;
594 desc->name = name;
596 if (handle != handle_bad_irq && is_chained) {
597 desc->status &= ~IRQ_DISABLED;
598 desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE;
599 desc->depth = 0;
600 desc->chip->unmask(irq);
602 spin_unlock_irqrestore(&desc->lock, flags);
605 void
606 set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
607 irq_flow_handler_t handle)
609 set_irq_chip(irq, chip);
610 __set_irq_handler(irq, handle, 0, NULL);
613 void
614 set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
615 irq_flow_handler_t handle, const char *name)
617 set_irq_chip(irq, chip);
618 __set_irq_handler(irq, handle, 0, name);
621 void __init set_irq_noprobe(unsigned int irq)
623 struct irq_desc *desc;
624 unsigned long flags;
626 if (irq >= NR_IRQS) {
627 printk(KERN_ERR "Trying to mark IRQ%d non-probeable\n", irq);
629 return;
632 desc = irq_desc + irq;
634 spin_lock_irqsave(&desc->lock, flags);
635 desc->status |= IRQ_NOPROBE;
636 spin_unlock_irqrestore(&desc->lock, flags);
639 void __init set_irq_probe(unsigned int irq)
641 struct irq_desc *desc;
642 unsigned long flags;
644 if (irq >= NR_IRQS) {
645 printk(KERN_ERR "Trying to mark IRQ%d probeable\n", irq);
647 return;
650 desc = irq_desc + irq;
652 spin_lock_irqsave(&desc->lock, flags);
653 desc->status &= ~IRQ_NOPROBE;
654 spin_unlock_irqrestore(&desc->lock, flags);