]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - kernel/irq/chip.c
genirq: Allow migration of chained interrupts by installing default action
[karo-tx-linux.git] / kernel / irq / chip.c
1 /*
2  * linux/kernel/irq/chip.c
3  *
4  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5  * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
6  *
7  * This file contains the core interrupt handling code, for irq-chip
8  * based architectures.
9  *
10  * Detailed information is available in Documentation/DocBook/genericirq
11  */
12
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>
18 #include <linux/irqdomain.h>
19
20 #include <trace/events/irq.h>
21
22 #include "internals.h"
23
24 static irqreturn_t bad_chained_irq(int irq, void *dev_id)
25 {
26         WARN_ONCE(1, "Chained irq %d should not call an action\n", irq);
27         return IRQ_NONE;
28 }
29
30 /*
31  * Chained handlers should never call action on their IRQ. This default
32  * action will emit warning if such thing happens.
33  */
34 struct irqaction chained_action = {
35         .handler = bad_chained_irq,
36 };
37
38 /**
39  *      irq_set_chip - set the irq chip for an irq
40  *      @irq:   irq number
41  *      @chip:  pointer to irq chip description structure
42  */
43 int irq_set_chip(unsigned int irq, struct irq_chip *chip)
44 {
45         unsigned long flags;
46         struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
47
48         if (!desc)
49                 return -EINVAL;
50
51         if (!chip)
52                 chip = &no_irq_chip;
53
54         desc->irq_data.chip = chip;
55         irq_put_desc_unlock(desc, flags);
56         /*
57          * For !CONFIG_SPARSE_IRQ make the irq show up in
58          * allocated_irqs.
59          */
60         irq_mark_irq(irq);
61         return 0;
62 }
63 EXPORT_SYMBOL(irq_set_chip);
64
65 /**
66  *      irq_set_type - set the irq trigger type for an irq
67  *      @irq:   irq number
68  *      @type:  IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
69  */
70 int irq_set_irq_type(unsigned int irq, unsigned int type)
71 {
72         unsigned long flags;
73         struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
74         int ret = 0;
75
76         if (!desc)
77                 return -EINVAL;
78
79         type &= IRQ_TYPE_SENSE_MASK;
80         ret = __irq_set_trigger(desc, type);
81         irq_put_desc_busunlock(desc, flags);
82         return ret;
83 }
84 EXPORT_SYMBOL(irq_set_irq_type);
85
86 /**
87  *      irq_set_handler_data - set irq handler data for an irq
88  *      @irq:   Interrupt number
89  *      @data:  Pointer to interrupt specific data
90  *
91  *      Set the hardware irq controller data for an irq
92  */
93 int irq_set_handler_data(unsigned int irq, void *data)
94 {
95         unsigned long flags;
96         struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
97
98         if (!desc)
99                 return -EINVAL;
100         desc->irq_common_data.handler_data = data;
101         irq_put_desc_unlock(desc, flags);
102         return 0;
103 }
104 EXPORT_SYMBOL(irq_set_handler_data);
105
106 /**
107  *      irq_set_msi_desc_off - set MSI descriptor data for an irq at offset
108  *      @irq_base:      Interrupt number base
109  *      @irq_offset:    Interrupt number offset
110  *      @entry:         Pointer to MSI descriptor data
111  *
112  *      Set the MSI descriptor entry for an irq at offset
113  */
114 int irq_set_msi_desc_off(unsigned int irq_base, unsigned int irq_offset,
115                          struct msi_desc *entry)
116 {
117         unsigned long flags;
118         struct irq_desc *desc = irq_get_desc_lock(irq_base + irq_offset, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
119
120         if (!desc)
121                 return -EINVAL;
122         desc->irq_common_data.msi_desc = entry;
123         if (entry && !irq_offset)
124                 entry->irq = irq_base;
125         irq_put_desc_unlock(desc, flags);
126         return 0;
127 }
128
129 /**
130  *      irq_set_msi_desc - set MSI descriptor data for an irq
131  *      @irq:   Interrupt number
132  *      @entry: Pointer to MSI descriptor data
133  *
134  *      Set the MSI descriptor entry for an irq
135  */
136 int irq_set_msi_desc(unsigned int irq, struct msi_desc *entry)
137 {
138         return irq_set_msi_desc_off(irq, 0, entry);
139 }
140
141 /**
142  *      irq_set_chip_data - set irq chip data for an irq
143  *      @irq:   Interrupt number
144  *      @data:  Pointer to chip specific data
145  *
146  *      Set the hardware irq chip data for an irq
147  */
148 int irq_set_chip_data(unsigned int irq, void *data)
149 {
150         unsigned long flags;
151         struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
152
153         if (!desc)
154                 return -EINVAL;
155         desc->irq_data.chip_data = data;
156         irq_put_desc_unlock(desc, flags);
157         return 0;
158 }
159 EXPORT_SYMBOL(irq_set_chip_data);
160
161 struct irq_data *irq_get_irq_data(unsigned int irq)
162 {
163         struct irq_desc *desc = irq_to_desc(irq);
164
165         return desc ? &desc->irq_data : NULL;
166 }
167 EXPORT_SYMBOL_GPL(irq_get_irq_data);
168
169 static void irq_state_clr_disabled(struct irq_desc *desc)
170 {
171         irqd_clear(&desc->irq_data, IRQD_IRQ_DISABLED);
172 }
173
174 static void irq_state_set_disabled(struct irq_desc *desc)
175 {
176         irqd_set(&desc->irq_data, IRQD_IRQ_DISABLED);
177 }
178
179 static void irq_state_clr_masked(struct irq_desc *desc)
180 {
181         irqd_clear(&desc->irq_data, IRQD_IRQ_MASKED);
182 }
183
184 static void irq_state_set_masked(struct irq_desc *desc)
185 {
186         irqd_set(&desc->irq_data, IRQD_IRQ_MASKED);
187 }
188
189 int irq_startup(struct irq_desc *desc, bool resend)
190 {
191         int ret = 0;
192
193         irq_state_clr_disabled(desc);
194         desc->depth = 0;
195
196         irq_domain_activate_irq(&desc->irq_data);
197         if (desc->irq_data.chip->irq_startup) {
198                 ret = desc->irq_data.chip->irq_startup(&desc->irq_data);
199                 irq_state_clr_masked(desc);
200         } else {
201                 irq_enable(desc);
202         }
203         if (resend)
204                 check_irq_resend(desc);
205         return ret;
206 }
207
208 void irq_shutdown(struct irq_desc *desc)
209 {
210         irq_state_set_disabled(desc);
211         desc->depth = 1;
212         if (desc->irq_data.chip->irq_shutdown)
213                 desc->irq_data.chip->irq_shutdown(&desc->irq_data);
214         else if (desc->irq_data.chip->irq_disable)
215                 desc->irq_data.chip->irq_disable(&desc->irq_data);
216         else
217                 desc->irq_data.chip->irq_mask(&desc->irq_data);
218         irq_domain_deactivate_irq(&desc->irq_data);
219         irq_state_set_masked(desc);
220 }
221
222 void irq_enable(struct irq_desc *desc)
223 {
224         irq_state_clr_disabled(desc);
225         if (desc->irq_data.chip->irq_enable)
226                 desc->irq_data.chip->irq_enable(&desc->irq_data);
227         else
228                 desc->irq_data.chip->irq_unmask(&desc->irq_data);
229         irq_state_clr_masked(desc);
230 }
231
232 /**
233  * irq_disable - Mark interrupt disabled
234  * @desc:       irq descriptor which should be disabled
235  *
236  * If the chip does not implement the irq_disable callback, we
237  * use a lazy disable approach. That means we mark the interrupt
238  * disabled, but leave the hardware unmasked. That's an
239  * optimization because we avoid the hardware access for the
240  * common case where no interrupt happens after we marked it
241  * disabled. If an interrupt happens, then the interrupt flow
242  * handler masks the line at the hardware level and marks it
243  * pending.
244  */
245 void irq_disable(struct irq_desc *desc)
246 {
247         irq_state_set_disabled(desc);
248         if (desc->irq_data.chip->irq_disable) {
249                 desc->irq_data.chip->irq_disable(&desc->irq_data);
250                 irq_state_set_masked(desc);
251         }
252 }
253
254 void irq_percpu_enable(struct irq_desc *desc, unsigned int cpu)
255 {
256         if (desc->irq_data.chip->irq_enable)
257                 desc->irq_data.chip->irq_enable(&desc->irq_data);
258         else
259                 desc->irq_data.chip->irq_unmask(&desc->irq_data);
260         cpumask_set_cpu(cpu, desc->percpu_enabled);
261 }
262
263 void irq_percpu_disable(struct irq_desc *desc, unsigned int cpu)
264 {
265         if (desc->irq_data.chip->irq_disable)
266                 desc->irq_data.chip->irq_disable(&desc->irq_data);
267         else
268                 desc->irq_data.chip->irq_mask(&desc->irq_data);
269         cpumask_clear_cpu(cpu, desc->percpu_enabled);
270 }
271
272 static inline void mask_ack_irq(struct irq_desc *desc)
273 {
274         if (desc->irq_data.chip->irq_mask_ack)
275                 desc->irq_data.chip->irq_mask_ack(&desc->irq_data);
276         else {
277                 desc->irq_data.chip->irq_mask(&desc->irq_data);
278                 if (desc->irq_data.chip->irq_ack)
279                         desc->irq_data.chip->irq_ack(&desc->irq_data);
280         }
281         irq_state_set_masked(desc);
282 }
283
284 void mask_irq(struct irq_desc *desc)
285 {
286         if (desc->irq_data.chip->irq_mask) {
287                 desc->irq_data.chip->irq_mask(&desc->irq_data);
288                 irq_state_set_masked(desc);
289         }
290 }
291
292 void unmask_irq(struct irq_desc *desc)
293 {
294         if (desc->irq_data.chip->irq_unmask) {
295                 desc->irq_data.chip->irq_unmask(&desc->irq_data);
296                 irq_state_clr_masked(desc);
297         }
298 }
299
300 void unmask_threaded_irq(struct irq_desc *desc)
301 {
302         struct irq_chip *chip = desc->irq_data.chip;
303
304         if (chip->flags & IRQCHIP_EOI_THREADED)
305                 chip->irq_eoi(&desc->irq_data);
306
307         if (chip->irq_unmask) {
308                 chip->irq_unmask(&desc->irq_data);
309                 irq_state_clr_masked(desc);
310         }
311 }
312
313 /*
314  *      handle_nested_irq - Handle a nested irq from a irq thread
315  *      @irq:   the interrupt number
316  *
317  *      Handle interrupts which are nested into a threaded interrupt
318  *      handler. The handler function is called inside the calling
319  *      threads context.
320  */
321 void handle_nested_irq(unsigned int irq)
322 {
323         struct irq_desc *desc = irq_to_desc(irq);
324         struct irqaction *action;
325         irqreturn_t action_ret;
326
327         might_sleep();
328
329         raw_spin_lock_irq(&desc->lock);
330
331         desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
332         kstat_incr_irqs_this_cpu(desc);
333
334         action = desc->action;
335         if (unlikely(!action || irqd_irq_disabled(&desc->irq_data))) {
336                 desc->istate |= IRQS_PENDING;
337                 goto out_unlock;
338         }
339
340         irqd_set(&desc->irq_data, IRQD_IRQ_INPROGRESS);
341         raw_spin_unlock_irq(&desc->lock);
342
343         action_ret = action->thread_fn(action->irq, action->dev_id);
344         if (!noirqdebug)
345                 note_interrupt(desc, action_ret);
346
347         raw_spin_lock_irq(&desc->lock);
348         irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
349
350 out_unlock:
351         raw_spin_unlock_irq(&desc->lock);
352 }
353 EXPORT_SYMBOL_GPL(handle_nested_irq);
354
355 static bool irq_check_poll(struct irq_desc *desc)
356 {
357         if (!(desc->istate & IRQS_POLL_INPROGRESS))
358                 return false;
359         return irq_wait_for_poll(desc);
360 }
361
362 static bool irq_may_run(struct irq_desc *desc)
363 {
364         unsigned int mask = IRQD_IRQ_INPROGRESS | IRQD_WAKEUP_ARMED;
365
366         /*
367          * If the interrupt is not in progress and is not an armed
368          * wakeup interrupt, proceed.
369          */
370         if (!irqd_has_set(&desc->irq_data, mask))
371                 return true;
372
373         /*
374          * If the interrupt is an armed wakeup source, mark it pending
375          * and suspended, disable it and notify the pm core about the
376          * event.
377          */
378         if (irq_pm_check_wakeup(desc))
379                 return false;
380
381         /*
382          * Handle a potential concurrent poll on a different core.
383          */
384         return irq_check_poll(desc);
385 }
386
387 /**
388  *      handle_simple_irq - Simple and software-decoded IRQs.
389  *      @desc:  the interrupt description structure for this irq
390  *
391  *      Simple interrupts are either sent from a demultiplexing interrupt
392  *      handler or come from hardware, where no interrupt hardware control
393  *      is necessary.
394  *
395  *      Note: The caller is expected to handle the ack, clear, mask and
396  *      unmask issues if necessary.
397  */
398 void handle_simple_irq(struct irq_desc *desc)
399 {
400         raw_spin_lock(&desc->lock);
401
402         if (!irq_may_run(desc))
403                 goto out_unlock;
404
405         desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
406         kstat_incr_irqs_this_cpu(desc);
407
408         if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
409                 desc->istate |= IRQS_PENDING;
410                 goto out_unlock;
411         }
412
413         handle_irq_event(desc);
414
415 out_unlock:
416         raw_spin_unlock(&desc->lock);
417 }
418 EXPORT_SYMBOL_GPL(handle_simple_irq);
419
420 /*
421  * Called unconditionally from handle_level_irq() and only for oneshot
422  * interrupts from handle_fasteoi_irq()
423  */
424 static void cond_unmask_irq(struct irq_desc *desc)
425 {
426         /*
427          * We need to unmask in the following cases:
428          * - Standard level irq (IRQF_ONESHOT is not set)
429          * - Oneshot irq which did not wake the thread (caused by a
430          *   spurious interrupt or a primary handler handling it
431          *   completely).
432          */
433         if (!irqd_irq_disabled(&desc->irq_data) &&
434             irqd_irq_masked(&desc->irq_data) && !desc->threads_oneshot)
435                 unmask_irq(desc);
436 }
437
438 /**
439  *      handle_level_irq - Level type irq handler
440  *      @desc:  the interrupt description structure for this irq
441  *
442  *      Level type interrupts are active as long as the hardware line has
443  *      the active level. This may require to mask the interrupt and unmask
444  *      it after the associated handler has acknowledged the device, so the
445  *      interrupt line is back to inactive.
446  */
447 void handle_level_irq(struct irq_desc *desc)
448 {
449         raw_spin_lock(&desc->lock);
450         mask_ack_irq(desc);
451
452         if (!irq_may_run(desc))
453                 goto out_unlock;
454
455         desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
456         kstat_incr_irqs_this_cpu(desc);
457
458         /*
459          * If its disabled or no action available
460          * keep it masked and get out of here
461          */
462         if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
463                 desc->istate |= IRQS_PENDING;
464                 goto out_unlock;
465         }
466
467         handle_irq_event(desc);
468
469         cond_unmask_irq(desc);
470
471 out_unlock:
472         raw_spin_unlock(&desc->lock);
473 }
474 EXPORT_SYMBOL_GPL(handle_level_irq);
475
476 #ifdef CONFIG_IRQ_PREFLOW_FASTEOI
477 static inline void preflow_handler(struct irq_desc *desc)
478 {
479         if (desc->preflow_handler)
480                 desc->preflow_handler(&desc->irq_data);
481 }
482 #else
483 static inline void preflow_handler(struct irq_desc *desc) { }
484 #endif
485
486 static void cond_unmask_eoi_irq(struct irq_desc *desc, struct irq_chip *chip)
487 {
488         if (!(desc->istate & IRQS_ONESHOT)) {
489                 chip->irq_eoi(&desc->irq_data);
490                 return;
491         }
492         /*
493          * We need to unmask in the following cases:
494          * - Oneshot irq which did not wake the thread (caused by a
495          *   spurious interrupt or a primary handler handling it
496          *   completely).
497          */
498         if (!irqd_irq_disabled(&desc->irq_data) &&
499             irqd_irq_masked(&desc->irq_data) && !desc->threads_oneshot) {
500                 chip->irq_eoi(&desc->irq_data);
501                 unmask_irq(desc);
502         } else if (!(chip->flags & IRQCHIP_EOI_THREADED)) {
503                 chip->irq_eoi(&desc->irq_data);
504         }
505 }
506
507 /**
508  *      handle_fasteoi_irq - irq handler for transparent controllers
509  *      @desc:  the interrupt description structure for this irq
510  *
511  *      Only a single callback will be issued to the chip: an ->eoi()
512  *      call when the interrupt has been serviced. This enables support
513  *      for modern forms of interrupt handlers, which handle the flow
514  *      details in hardware, transparently.
515  */
516 void handle_fasteoi_irq(struct irq_desc *desc)
517 {
518         struct irq_chip *chip = desc->irq_data.chip;
519
520         raw_spin_lock(&desc->lock);
521
522         if (!irq_may_run(desc))
523                 goto out;
524
525         desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
526         kstat_incr_irqs_this_cpu(desc);
527
528         /*
529          * If its disabled or no action available
530          * then mask it and get out of here:
531          */
532         if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
533                 desc->istate |= IRQS_PENDING;
534                 mask_irq(desc);
535                 goto out;
536         }
537
538         if (desc->istate & IRQS_ONESHOT)
539                 mask_irq(desc);
540
541         preflow_handler(desc);
542         handle_irq_event(desc);
543
544         cond_unmask_eoi_irq(desc, chip);
545
546         raw_spin_unlock(&desc->lock);
547         return;
548 out:
549         if (!(chip->flags & IRQCHIP_EOI_IF_HANDLED))
550                 chip->irq_eoi(&desc->irq_data);
551         raw_spin_unlock(&desc->lock);
552 }
553 EXPORT_SYMBOL_GPL(handle_fasteoi_irq);
554
555 /**
556  *      handle_edge_irq - edge type IRQ handler
557  *      @desc:  the interrupt description structure for this irq
558  *
559  *      Interrupt occures on the falling and/or rising edge of a hardware
560  *      signal. The occurrence is latched into the irq controller hardware
561  *      and must be acked in order to be reenabled. After the ack another
562  *      interrupt can happen on the same source even before the first one
563  *      is handled by the associated event handler. If this happens it
564  *      might be necessary to disable (mask) the interrupt depending on the
565  *      controller hardware. This requires to reenable the interrupt inside
566  *      of the loop which handles the interrupts which have arrived while
567  *      the handler was running. If all pending interrupts are handled, the
568  *      loop is left.
569  */
570 void handle_edge_irq(struct irq_desc *desc)
571 {
572         raw_spin_lock(&desc->lock);
573
574         desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
575
576         if (!irq_may_run(desc)) {
577                 desc->istate |= IRQS_PENDING;
578                 mask_ack_irq(desc);
579                 goto out_unlock;
580         }
581
582         /*
583          * If its disabled or no action available then mask it and get
584          * out of here.
585          */
586         if (irqd_irq_disabled(&desc->irq_data) || !desc->action) {
587                 desc->istate |= IRQS_PENDING;
588                 mask_ack_irq(desc);
589                 goto out_unlock;
590         }
591
592         kstat_incr_irqs_this_cpu(desc);
593
594         /* Start handling the irq */
595         desc->irq_data.chip->irq_ack(&desc->irq_data);
596
597         do {
598                 if (unlikely(!desc->action)) {
599                         mask_irq(desc);
600                         goto out_unlock;
601                 }
602
603                 /*
604                  * When another irq arrived while we were handling
605                  * one, we could have masked the irq.
606                  * Renable it, if it was not disabled in meantime.
607                  */
608                 if (unlikely(desc->istate & IRQS_PENDING)) {
609                         if (!irqd_irq_disabled(&desc->irq_data) &&
610                             irqd_irq_masked(&desc->irq_data))
611                                 unmask_irq(desc);
612                 }
613
614                 handle_irq_event(desc);
615
616         } while ((desc->istate & IRQS_PENDING) &&
617                  !irqd_irq_disabled(&desc->irq_data));
618
619 out_unlock:
620         raw_spin_unlock(&desc->lock);
621 }
622 EXPORT_SYMBOL(handle_edge_irq);
623
624 #ifdef CONFIG_IRQ_EDGE_EOI_HANDLER
625 /**
626  *      handle_edge_eoi_irq - edge eoi type IRQ handler
627  *      @desc:  the interrupt description structure for this irq
628  *
629  * Similar as the above handle_edge_irq, but using eoi and w/o the
630  * mask/unmask logic.
631  */
632 void handle_edge_eoi_irq(struct irq_desc *desc)
633 {
634         struct irq_chip *chip = irq_desc_get_chip(desc);
635
636         raw_spin_lock(&desc->lock);
637
638         desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
639
640         if (!irq_may_run(desc)) {
641                 desc->istate |= IRQS_PENDING;
642                 goto out_eoi;
643         }
644
645         /*
646          * If its disabled or no action available then mask it and get
647          * out of here.
648          */
649         if (irqd_irq_disabled(&desc->irq_data) || !desc->action) {
650                 desc->istate |= IRQS_PENDING;
651                 goto out_eoi;
652         }
653
654         kstat_incr_irqs_this_cpu(desc);
655
656         do {
657                 if (unlikely(!desc->action))
658                         goto out_eoi;
659
660                 handle_irq_event(desc);
661
662         } while ((desc->istate & IRQS_PENDING) &&
663                  !irqd_irq_disabled(&desc->irq_data));
664
665 out_eoi:
666         chip->irq_eoi(&desc->irq_data);
667         raw_spin_unlock(&desc->lock);
668 }
669 #endif
670
671 /**
672  *      handle_percpu_irq - Per CPU local irq handler
673  *      @desc:  the interrupt description structure for this irq
674  *
675  *      Per CPU interrupts on SMP machines without locking requirements
676  */
677 void handle_percpu_irq(struct irq_desc *desc)
678 {
679         struct irq_chip *chip = irq_desc_get_chip(desc);
680
681         kstat_incr_irqs_this_cpu(desc);
682
683         if (chip->irq_ack)
684                 chip->irq_ack(&desc->irq_data);
685
686         handle_irq_event_percpu(desc);
687
688         if (chip->irq_eoi)
689                 chip->irq_eoi(&desc->irq_data);
690 }
691
692 /**
693  * handle_percpu_devid_irq - Per CPU local irq handler with per cpu dev ids
694  * @desc:       the interrupt description structure for this irq
695  *
696  * Per CPU interrupts on SMP machines without locking requirements. Same as
697  * handle_percpu_irq() above but with the following extras:
698  *
699  * action->percpu_dev_id is a pointer to percpu variables which
700  * contain the real device id for the cpu on which this handler is
701  * called
702  */
703 void handle_percpu_devid_irq(struct irq_desc *desc)
704 {
705         struct irq_chip *chip = irq_desc_get_chip(desc);
706         struct irqaction *action = desc->action;
707         void *dev_id = raw_cpu_ptr(action->percpu_dev_id);
708         unsigned int irq = irq_desc_get_irq(desc);
709         irqreturn_t res;
710
711         kstat_incr_irqs_this_cpu(desc);
712
713         if (chip->irq_ack)
714                 chip->irq_ack(&desc->irq_data);
715
716         trace_irq_handler_entry(irq, action);
717         res = action->handler(irq, dev_id);
718         trace_irq_handler_exit(irq, action, res);
719
720         if (chip->irq_eoi)
721                 chip->irq_eoi(&desc->irq_data);
722 }
723
724 void
725 __irq_do_set_handler(struct irq_desc *desc, irq_flow_handler_t handle,
726                      int is_chained, const char *name)
727 {
728         if (!handle) {
729                 handle = handle_bad_irq;
730         } else {
731                 struct irq_data *irq_data = &desc->irq_data;
732 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
733                 /*
734                  * With hierarchical domains we might run into a
735                  * situation where the outermost chip is not yet set
736                  * up, but the inner chips are there.  Instead of
737                  * bailing we install the handler, but obviously we
738                  * cannot enable/startup the interrupt at this point.
739                  */
740                 while (irq_data) {
741                         if (irq_data->chip != &no_irq_chip)
742                                 break;
743                         /*
744                          * Bail out if the outer chip is not set up
745                          * and the interrrupt supposed to be started
746                          * right away.
747                          */
748                         if (WARN_ON(is_chained))
749                                 return;
750                         /* Try the parent */
751                         irq_data = irq_data->parent_data;
752                 }
753 #endif
754                 if (WARN_ON(!irq_data || irq_data->chip == &no_irq_chip))
755                         return;
756         }
757
758         /* Uninstall? */
759         if (handle == handle_bad_irq) {
760                 if (desc->irq_data.chip != &no_irq_chip)
761                         mask_ack_irq(desc);
762                 irq_state_set_disabled(desc);
763                 if (is_chained)
764                         desc->action = NULL;
765                 desc->depth = 1;
766         }
767         desc->handle_irq = handle;
768         desc->name = name;
769
770         if (handle != handle_bad_irq && is_chained) {
771                 irq_settings_set_noprobe(desc);
772                 irq_settings_set_norequest(desc);
773                 irq_settings_set_nothread(desc);
774                 desc->action = &chained_action;
775                 irq_startup(desc, true);
776         }
777 }
778
779 void
780 __irq_set_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
781                   const char *name)
782 {
783         unsigned long flags;
784         struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, 0);
785
786         if (!desc)
787                 return;
788
789         __irq_do_set_handler(desc, handle, is_chained, name);
790         irq_put_desc_busunlock(desc, flags);
791 }
792 EXPORT_SYMBOL_GPL(__irq_set_handler);
793
794 void
795 irq_set_chained_handler_and_data(unsigned int irq, irq_flow_handler_t handle,
796                                  void *data)
797 {
798         unsigned long flags;
799         struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, 0);
800
801         if (!desc)
802                 return;
803
804         __irq_do_set_handler(desc, handle, 1, NULL);
805         desc->irq_common_data.handler_data = data;
806
807         irq_put_desc_busunlock(desc, flags);
808 }
809 EXPORT_SYMBOL_GPL(irq_set_chained_handler_and_data);
810
811 void
812 irq_set_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
813                               irq_flow_handler_t handle, const char *name)
814 {
815         irq_set_chip(irq, chip);
816         __irq_set_handler(irq, handle, 0, name);
817 }
818 EXPORT_SYMBOL_GPL(irq_set_chip_and_handler_name);
819
820 void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set)
821 {
822         unsigned long flags;
823         struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
824
825         if (!desc)
826                 return;
827         irq_settings_clr_and_set(desc, clr, set);
828
829         irqd_clear(&desc->irq_data, IRQD_NO_BALANCING | IRQD_PER_CPU |
830                    IRQD_TRIGGER_MASK | IRQD_LEVEL | IRQD_MOVE_PCNTXT);
831         if (irq_settings_has_no_balance_set(desc))
832                 irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
833         if (irq_settings_is_per_cpu(desc))
834                 irqd_set(&desc->irq_data, IRQD_PER_CPU);
835         if (irq_settings_can_move_pcntxt(desc))
836                 irqd_set(&desc->irq_data, IRQD_MOVE_PCNTXT);
837         if (irq_settings_is_level(desc))
838                 irqd_set(&desc->irq_data, IRQD_LEVEL);
839
840         irqd_set(&desc->irq_data, irq_settings_get_trigger_mask(desc));
841
842         irq_put_desc_unlock(desc, flags);
843 }
844 EXPORT_SYMBOL_GPL(irq_modify_status);
845
846 /**
847  *      irq_cpu_online - Invoke all irq_cpu_online functions.
848  *
849  *      Iterate through all irqs and invoke the chip.irq_cpu_online()
850  *      for each.
851  */
852 void irq_cpu_online(void)
853 {
854         struct irq_desc *desc;
855         struct irq_chip *chip;
856         unsigned long flags;
857         unsigned int irq;
858
859         for_each_active_irq(irq) {
860                 desc = irq_to_desc(irq);
861                 if (!desc)
862                         continue;
863
864                 raw_spin_lock_irqsave(&desc->lock, flags);
865
866                 chip = irq_data_get_irq_chip(&desc->irq_data);
867                 if (chip && chip->irq_cpu_online &&
868                     (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
869                      !irqd_irq_disabled(&desc->irq_data)))
870                         chip->irq_cpu_online(&desc->irq_data);
871
872                 raw_spin_unlock_irqrestore(&desc->lock, flags);
873         }
874 }
875
876 /**
877  *      irq_cpu_offline - Invoke all irq_cpu_offline functions.
878  *
879  *      Iterate through all irqs and invoke the chip.irq_cpu_offline()
880  *      for each.
881  */
882 void irq_cpu_offline(void)
883 {
884         struct irq_desc *desc;
885         struct irq_chip *chip;
886         unsigned long flags;
887         unsigned int irq;
888
889         for_each_active_irq(irq) {
890                 desc = irq_to_desc(irq);
891                 if (!desc)
892                         continue;
893
894                 raw_spin_lock_irqsave(&desc->lock, flags);
895
896                 chip = irq_data_get_irq_chip(&desc->irq_data);
897                 if (chip && chip->irq_cpu_offline &&
898                     (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
899                      !irqd_irq_disabled(&desc->irq_data)))
900                         chip->irq_cpu_offline(&desc->irq_data);
901
902                 raw_spin_unlock_irqrestore(&desc->lock, flags);
903         }
904 }
905
906 #ifdef  CONFIG_IRQ_DOMAIN_HIERARCHY
907 /**
908  * irq_chip_enable_parent - Enable the parent interrupt (defaults to unmask if
909  * NULL)
910  * @data:       Pointer to interrupt specific data
911  */
912 void irq_chip_enable_parent(struct irq_data *data)
913 {
914         data = data->parent_data;
915         if (data->chip->irq_enable)
916                 data->chip->irq_enable(data);
917         else
918                 data->chip->irq_unmask(data);
919 }
920
921 /**
922  * irq_chip_disable_parent - Disable the parent interrupt (defaults to mask if
923  * NULL)
924  * @data:       Pointer to interrupt specific data
925  */
926 void irq_chip_disable_parent(struct irq_data *data)
927 {
928         data = data->parent_data;
929         if (data->chip->irq_disable)
930                 data->chip->irq_disable(data);
931         else
932                 data->chip->irq_mask(data);
933 }
934
935 /**
936  * irq_chip_ack_parent - Acknowledge the parent interrupt
937  * @data:       Pointer to interrupt specific data
938  */
939 void irq_chip_ack_parent(struct irq_data *data)
940 {
941         data = data->parent_data;
942         data->chip->irq_ack(data);
943 }
944
945 /**
946  * irq_chip_mask_parent - Mask the parent interrupt
947  * @data:       Pointer to interrupt specific data
948  */
949 void irq_chip_mask_parent(struct irq_data *data)
950 {
951         data = data->parent_data;
952         data->chip->irq_mask(data);
953 }
954
955 /**
956  * irq_chip_unmask_parent - Unmask the parent interrupt
957  * @data:       Pointer to interrupt specific data
958  */
959 void irq_chip_unmask_parent(struct irq_data *data)
960 {
961         data = data->parent_data;
962         data->chip->irq_unmask(data);
963 }
964
965 /**
966  * irq_chip_eoi_parent - Invoke EOI on the parent interrupt
967  * @data:       Pointer to interrupt specific data
968  */
969 void irq_chip_eoi_parent(struct irq_data *data)
970 {
971         data = data->parent_data;
972         data->chip->irq_eoi(data);
973 }
974
975 /**
976  * irq_chip_set_affinity_parent - Set affinity on the parent interrupt
977  * @data:       Pointer to interrupt specific data
978  * @dest:       The affinity mask to set
979  * @force:      Flag to enforce setting (disable online checks)
980  *
981  * Conditinal, as the underlying parent chip might not implement it.
982  */
983 int irq_chip_set_affinity_parent(struct irq_data *data,
984                                  const struct cpumask *dest, bool force)
985 {
986         data = data->parent_data;
987         if (data->chip->irq_set_affinity)
988                 return data->chip->irq_set_affinity(data, dest, force);
989
990         return -ENOSYS;
991 }
992
993 /**
994  * irq_chip_set_type_parent - Set IRQ type on the parent interrupt
995  * @data:       Pointer to interrupt specific data
996  * @type:       IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
997  *
998  * Conditional, as the underlying parent chip might not implement it.
999  */
1000 int irq_chip_set_type_parent(struct irq_data *data, unsigned int type)
1001 {
1002         data = data->parent_data;
1003
1004         if (data->chip->irq_set_type)
1005                 return data->chip->irq_set_type(data, type);
1006
1007         return -ENOSYS;
1008 }
1009
1010 /**
1011  * irq_chip_retrigger_hierarchy - Retrigger an interrupt in hardware
1012  * @data:       Pointer to interrupt specific data
1013  *
1014  * Iterate through the domain hierarchy of the interrupt and check
1015  * whether a hw retrigger function exists. If yes, invoke it.
1016  */
1017 int irq_chip_retrigger_hierarchy(struct irq_data *data)
1018 {
1019         for (data = data->parent_data; data; data = data->parent_data)
1020                 if (data->chip && data->chip->irq_retrigger)
1021                         return data->chip->irq_retrigger(data);
1022
1023         return 0;
1024 }
1025
1026 /**
1027  * irq_chip_set_vcpu_affinity_parent - Set vcpu affinity on the parent interrupt
1028  * @data:       Pointer to interrupt specific data
1029  * @vcpu_info:  The vcpu affinity information
1030  */
1031 int irq_chip_set_vcpu_affinity_parent(struct irq_data *data, void *vcpu_info)
1032 {
1033         data = data->parent_data;
1034         if (data->chip->irq_set_vcpu_affinity)
1035                 return data->chip->irq_set_vcpu_affinity(data, vcpu_info);
1036
1037         return -ENOSYS;
1038 }
1039
1040 /**
1041  * irq_chip_set_wake_parent - Set/reset wake-up on the parent interrupt
1042  * @data:       Pointer to interrupt specific data
1043  * @on:         Whether to set or reset the wake-up capability of this irq
1044  *
1045  * Conditional, as the underlying parent chip might not implement it.
1046  */
1047 int irq_chip_set_wake_parent(struct irq_data *data, unsigned int on)
1048 {
1049         data = data->parent_data;
1050         if (data->chip->irq_set_wake)
1051                 return data->chip->irq_set_wake(data, on);
1052
1053         return -ENOSYS;
1054 }
1055 #endif
1056
1057 /**
1058  * irq_chip_compose_msi_msg - Componse msi message for a irq chip
1059  * @data:       Pointer to interrupt specific data
1060  * @msg:        Pointer to the MSI message
1061  *
1062  * For hierarchical domains we find the first chip in the hierarchy
1063  * which implements the irq_compose_msi_msg callback. For non
1064  * hierarchical we use the top level chip.
1065  */
1066 int irq_chip_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
1067 {
1068         struct irq_data *pos = NULL;
1069
1070 #ifdef  CONFIG_IRQ_DOMAIN_HIERARCHY
1071         for (; data; data = data->parent_data)
1072 #endif
1073                 if (data->chip && data->chip->irq_compose_msi_msg)
1074                         pos = data;
1075         if (!pos)
1076                 return -ENOSYS;
1077
1078         pos->chip->irq_compose_msi_msg(pos, msg);
1079
1080         return 0;
1081 }