blob: 4aa00d325b8c8974e36b797ddde0a49848b5794d [file] [log] [blame]
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -07001/*
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>
Michael Ellerman7fe37302007-04-18 19:39:21 +100014#include <linux/msi.h>
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070015#include <linux/module.h>
16#include <linux/interrupt.h>
17#include <linux/kernel_stat.h>
Jiang Liuf8264e32014-11-06 22:20:14 +080018#include <linux/irqdomain.h>
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070019
Steven Rostedtf0696862012-01-25 20:18:55 -050020#include <trace/events/irq.h>
21
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070022#include "internals.h"
23
Mika Westerberge509bd72015-10-05 13:12:15 +030024static 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 */
34struct irqaction chained_action = {
35 .handler = bad_chained_irq,
36};
37
Eric W. Biederman3a16d712006-10-04 02:16:37 -070038/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010039 * irq_set_chip - set the irq chip for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070040 * @irq: irq number
41 * @chip: pointer to irq chip description structure
42 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010043int irq_set_chip(unsigned int irq, struct irq_chip *chip)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070044{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070045 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +010046 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070047
Thomas Gleixner02725e72011-02-12 10:37:36 +010048 if (!desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070049 return -EINVAL;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070050
51 if (!chip)
52 chip = &no_irq_chip;
53
Thomas Gleixner6b8ff312010-10-01 12:58:38 +020054 desc->irq_data.chip = chip;
Thomas Gleixner02725e72011-02-12 10:37:36 +010055 irq_put_desc_unlock(desc, flags);
David Daneyd72274e2011-03-25 12:38:48 -070056 /*
57 * For !CONFIG_SPARSE_IRQ make the irq show up in
Thomas Gleixnerf63b6a02014-05-07 15:44:21 +000058 * allocated_irqs.
David Daneyd72274e2011-03-25 12:38:48 -070059 */
Thomas Gleixnerf63b6a02014-05-07 15:44:21 +000060 irq_mark_irq(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070061 return 0;
62}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010063EXPORT_SYMBOL(irq_set_chip);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070064
65/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010066 * irq_set_type - set the irq trigger type for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070067 * @irq: irq number
David Brownell0c5d1eb2008-10-01 14:46:18 -070068 * @type: IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070069 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010070int irq_set_irq_type(unsigned int irq, unsigned int type)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070071{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070072 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +010073 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Thomas Gleixner02725e72011-02-12 10:37:36 +010074 int ret = 0;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070075
Thomas Gleixner02725e72011-02-12 10:37:36 +010076 if (!desc)
77 return -EINVAL;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070078
David Brownellf2b662d2008-12-01 14:31:38 -080079 type &= IRQ_TYPE_SENSE_MASK;
Jiang Liua1ff5412015-06-23 19:47:29 +020080 ret = __irq_set_trigger(desc, type);
Thomas Gleixner02725e72011-02-12 10:37:36 +010081 irq_put_desc_busunlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070082 return ret;
83}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010084EXPORT_SYMBOL(irq_set_irq_type);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070085
86/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010087 * irq_set_handler_data - set irq handler data for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070088 * @irq: Interrupt number
89 * @data: Pointer to interrupt specific data
90 *
91 * Set the hardware irq controller data for an irq
92 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010093int irq_set_handler_data(unsigned int irq, void *data)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070094{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070095 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +010096 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070097
Thomas Gleixner02725e72011-02-12 10:37:36 +010098 if (!desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070099 return -EINVAL;
Jiang Liuaf7080e2015-06-01 16:05:21 +0800100 desc->irq_common_data.handler_data = data;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100101 irq_put_desc_unlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700102 return 0;
103}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100104EXPORT_SYMBOL(irq_set_handler_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700105
106/**
Alexander Gordeev51906e72012-11-19 16:01:29 +0100107 * 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 */
114int 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;
Jiang Liub2377212015-06-01 16:05:43 +0800122 desc->irq_common_data.msi_desc = entry;
Alexander Gordeev51906e72012-11-19 16:01:29 +0100123 if (entry && !irq_offset)
124 entry->irq = irq_base;
125 irq_put_desc_unlock(desc, flags);
126 return 0;
127}
128
129/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100130 * irq_set_msi_desc - set MSI descriptor data for an irq
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700131 * @irq: Interrupt number
Randy Dunlap472900b2007-02-16 01:28:25 -0800132 * @entry: Pointer to MSI descriptor data
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700133 *
Liuweni24b26d42009-11-04 20:11:05 +0800134 * Set the MSI descriptor entry for an irq
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700135 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100136int irq_set_msi_desc(unsigned int irq, struct msi_desc *entry)
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700137{
Alexander Gordeev51906e72012-11-19 16:01:29 +0100138 return irq_set_msi_desc_off(irq, 0, entry);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700139}
140
141/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100142 * irq_set_chip_data - set irq chip data for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700143 * @irq: Interrupt number
144 * @data: Pointer to chip specific data
145 *
146 * Set the hardware irq chip data for an irq
147 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100148int irq_set_chip_data(unsigned int irq, void *data)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700149{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700150 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100151 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700152
Thomas Gleixner02725e72011-02-12 10:37:36 +0100153 if (!desc)
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700154 return -EINVAL;
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200155 desc->irq_data.chip_data = data;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100156 irq_put_desc_unlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700157 return 0;
158}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100159EXPORT_SYMBOL(irq_set_chip_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700160
Thomas Gleixnerf303a6d2010-09-28 17:34:01 +0200161struct 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}
167EXPORT_SYMBOL_GPL(irq_get_irq_data);
168
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100169static void irq_state_clr_disabled(struct irq_desc *desc)
170{
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200171 irqd_clear(&desc->irq_data, IRQD_IRQ_DISABLED);
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100172}
173
174static void irq_state_set_disabled(struct irq_desc *desc)
175{
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200176 irqd_set(&desc->irq_data, IRQD_IRQ_DISABLED);
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100177}
178
Thomas Gleixner6e402622011-02-08 12:36:06 +0100179static void irq_state_clr_masked(struct irq_desc *desc)
180{
Thomas Gleixner32f41252011-03-28 14:10:52 +0200181 irqd_clear(&desc->irq_data, IRQD_IRQ_MASKED);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100182}
183
184static void irq_state_set_masked(struct irq_desc *desc)
185{
Thomas Gleixner32f41252011-03-28 14:10:52 +0200186 irqd_set(&desc->irq_data, IRQD_IRQ_MASKED);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100187}
188
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100189int irq_startup(struct irq_desc *desc, bool resend)
Thomas Gleixner46999232011-02-02 21:41:14 +0000190{
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100191 int ret = 0;
192
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100193 irq_state_clr_disabled(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000194 desc->depth = 0;
195
Jiang Liuf8264e32014-11-06 22:20:14 +0800196 irq_domain_activate_irq(&desc->irq_data);
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100197 if (desc->irq_data.chip->irq_startup) {
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100198 ret = desc->irq_data.chip->irq_startup(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100199 irq_state_clr_masked(desc);
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100200 } else {
201 irq_enable(desc);
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100202 }
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100203 if (resend)
Jiang Liu0798abe2015-06-04 12:13:27 +0800204 check_irq_resend(desc);
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100205 return ret;
Thomas Gleixner46999232011-02-02 21:41:14 +0000206}
207
208void irq_shutdown(struct irq_desc *desc)
209{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100210 irq_state_set_disabled(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000211 desc->depth = 1;
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100212 if (desc->irq_data.chip->irq_shutdown)
213 desc->irq_data.chip->irq_shutdown(&desc->irq_data);
Geert Uytterhoevened585a62011-09-11 13:59:27 +0200214 else if (desc->irq_data.chip->irq_disable)
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100215 desc->irq_data.chip->irq_disable(&desc->irq_data);
216 else
217 desc->irq_data.chip->irq_mask(&desc->irq_data);
Jiang Liuf8264e32014-11-06 22:20:14 +0800218 irq_domain_deactivate_irq(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100219 irq_state_set_masked(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000220}
221
Thomas Gleixner87923472011-02-03 12:27:44 +0100222void irq_enable(struct irq_desc *desc)
223{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100224 irq_state_clr_disabled(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100225 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);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100229 irq_state_clr_masked(desc);
Thomas Gleixner87923472011-02-03 12:27:44 +0100230}
231
Andreas Fenkartd671a602013-05-10 12:21:30 +0200232/**
Xie XiuQif788e7b2013-10-18 09:12:04 +0800233 * irq_disable - Mark interrupt disabled
Andreas Fenkartd671a602013-05-10 12:21:30 +0200234 * @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 */
Thomas Gleixner87923472011-02-03 12:27:44 +0100245void irq_disable(struct irq_desc *desc)
246{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100247 irq_state_set_disabled(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100248 if (desc->irq_data.chip->irq_disable) {
249 desc->irq_data.chip->irq_disable(&desc->irq_data);
Thomas Gleixnera61d8252011-02-21 12:54:34 +0100250 irq_state_set_masked(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100251 }
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100252}
253
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100254void 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
263void 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
Thomas Gleixner9205e312010-09-27 12:44:50 +0000272static inline void mask_ack_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700273{
Thomas Gleixner9205e312010-09-27 12:44:50 +0000274 if (desc->irq_data.chip->irq_mask_ack)
275 desc->irq_data.chip->irq_mask_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700276 else {
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000277 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner22a49162010-09-27 12:44:47 +0000278 if (desc->irq_data.chip->irq_ack)
279 desc->irq_data.chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700280 }
Thomas Gleixner6e402622011-02-08 12:36:06 +0100281 irq_state_set_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100282}
283
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100284void mask_irq(struct irq_desc *desc)
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100285{
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000286 if (desc->irq_data.chip->irq_mask) {
287 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100288 irq_state_set_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100289 }
290}
291
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100292void unmask_irq(struct irq_desc *desc)
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100293{
Thomas Gleixner0eda58b2010-09-27 12:44:44 +0000294 if (desc->irq_data.chip->irq_unmask) {
295 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100296 irq_state_clr_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100297 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700298}
299
Thomas Gleixner328a4972014-03-13 19:03:51 +0100300void 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
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200313/*
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 */
321void 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
Thomas Gleixner239007b2009-11-17 16:46:45 +0100329 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200330
Thomas Gleixner293a7a02012-10-16 15:07:49 -0700331 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Jiang Liub51bf952015-06-04 12:13:25 +0800332 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200333
334 action = desc->action;
Ning Jiang23812b92012-05-22 00:19:20 +0800335 if (unlikely(!action || irqd_irq_disabled(&desc->irq_data))) {
336 desc->istate |= IRQS_PENDING;
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200337 goto out_unlock;
Ning Jiang23812b92012-05-22 00:19:20 +0800338 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200339
Thomas Gleixner32f41252011-03-28 14:10:52 +0200340 irqd_set(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100341 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200342
343 action_ret = action->thread_fn(action->irq, action->dev_id);
344 if (!noirqdebug)
Jiang Liu0dcdbc92015-06-04 12:13:28 +0800345 note_interrupt(desc, action_ret);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200346
Thomas Gleixner239007b2009-11-17 16:46:45 +0100347 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner32f41252011-03-28 14:10:52 +0200348 irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200349
350out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100351 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200352}
353EXPORT_SYMBOL_GPL(handle_nested_irq);
354
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100355static bool irq_check_poll(struct irq_desc *desc)
356{
Thomas Gleixner6954b752011-02-07 20:55:35 +0100357 if (!(desc->istate & IRQS_POLL_INPROGRESS))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100358 return false;
359 return irq_wait_for_poll(desc);
360}
361
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200362static bool irq_may_run(struct irq_desc *desc)
363{
Thomas Gleixner9ce7a252014-08-29 14:00:16 +0200364 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))
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200371 return true;
Thomas Gleixner9ce7a252014-08-29 14:00:16 +0200372
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 */
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200384 return irq_check_poll(desc);
385}
386
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700387/**
388 * handle_simple_irq - Simple and software-decoded IRQs.
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700389 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700390 *
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 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200398void handle_simple_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700399{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100400 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700401
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200402 if (!irq_may_run(desc))
403 goto out_unlock;
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100404
Thomas Gleixner163ef302011-02-08 11:39:15 +0100405 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Jiang Liub51bf952015-06-04 12:13:25 +0800406 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700407
Ning Jiang23812b92012-05-22 00:19:20 +0800408 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
409 desc->istate |= IRQS_PENDING;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700410 goto out_unlock;
Ning Jiang23812b92012-05-22 00:19:20 +0800411 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700412
Thomas Gleixner107781e2011-02-07 01:21:02 +0100413 handle_irq_event(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700414
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700415out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100416 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700417}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100418EXPORT_SYMBOL_GPL(handle_simple_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700419
Thomas Gleixnerac563762012-02-07 17:58:03 +0100420/*
421 * Called unconditionally from handle_level_irq() and only for oneshot
422 * interrupts from handle_fasteoi_irq()
423 */
424static 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
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700438/**
439 * handle_level_irq - Level type irq handler
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700440 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700441 *
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 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200447void handle_level_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700448{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100449 raw_spin_lock(&desc->lock);
Thomas Gleixner9205e312010-09-27 12:44:50 +0000450 mask_ack_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700451
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200452 if (!irq_may_run(desc))
453 goto out_unlock;
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100454
Thomas Gleixner163ef302011-02-08 11:39:15 +0100455 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Jiang Liub51bf952015-06-04 12:13:25 +0800456 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700457
458 /*
459 * If its disabled or no action available
460 * keep it masked and get out of here
461 */
Thomas Gleixnerd4dc0f92012-04-25 12:54:54 +0200462 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
463 desc->istate |= IRQS_PENDING;
Ingo Molnar86998aa2006-09-19 11:14:34 +0200464 goto out_unlock;
Thomas Gleixnerd4dc0f92012-04-25 12:54:54 +0200465 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700466
Thomas Gleixner15298662011-02-07 01:22:17 +0100467 handle_irq_event(desc);
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200468
Thomas Gleixnerac563762012-02-07 17:58:03 +0100469 cond_unmask_irq(desc);
470
Ingo Molnar86998aa2006-09-19 11:14:34 +0200471out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100472 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700473}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100474EXPORT_SYMBOL_GPL(handle_level_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700475
Thomas Gleixner78129572011-02-10 15:14:20 +0100476#ifdef CONFIG_IRQ_PREFLOW_FASTEOI
477static inline void preflow_handler(struct irq_desc *desc)
478{
479 if (desc->preflow_handler)
480 desc->preflow_handler(&desc->irq_data);
481}
482#else
483static inline void preflow_handler(struct irq_desc *desc) { }
484#endif
485
Thomas Gleixner328a4972014-03-13 19:03:51 +0100486static 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
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700507/**
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700508 * handle_fasteoi_irq - irq handler for transparent controllers
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700509 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700510 *
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700511 * Only a single callback will be issued to the chip: an ->eoi()
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700512 * 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 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200516void handle_fasteoi_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700517{
Thomas Gleixner328a4972014-03-13 19:03:51 +0100518 struct irq_chip *chip = desc->irq_data.chip;
519
Thomas Gleixner239007b2009-11-17 16:46:45 +0100520 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700521
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200522 if (!irq_may_run(desc))
523 goto out;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700524
Thomas Gleixner163ef302011-02-08 11:39:15 +0100525 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Jiang Liub51bf952015-06-04 12:13:25 +0800526 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700527
528 /*
529 * If its disabled or no action available
Ingo Molnar76d21602007-02-16 01:28:24 -0800530 * then mask it and get out of here:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700531 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200532 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100533 desc->istate |= IRQS_PENDING;
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000534 mask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700535 goto out;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700536 }
Thomas Gleixnerc69e3752011-03-02 11:49:21 +0100537
538 if (desc->istate & IRQS_ONESHOT)
539 mask_irq(desc);
540
Thomas Gleixner78129572011-02-10 15:14:20 +0100541 preflow_handler(desc);
Thomas Gleixnera7ae4de2011-02-07 01:23:07 +0100542 handle_irq_event(desc);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100543
Thomas Gleixner328a4972014-03-13 19:03:51 +0100544 cond_unmask_eoi_irq(desc, chip);
Thomas Gleixnerac563762012-02-07 17:58:03 +0100545
Thomas Gleixner239007b2009-11-17 16:46:45 +0100546 raw_spin_unlock(&desc->lock);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100547 return;
548out:
Thomas Gleixner328a4972014-03-13 19:03:51 +0100549 if (!(chip->flags & IRQCHIP_EOI_IF_HANDLED))
550 chip->irq_eoi(&desc->irq_data);
551 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700552}
Vincent Stehlé7cad45e2014-08-22 01:31:20 +0200553EXPORT_SYMBOL_GPL(handle_fasteoi_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700554
555/**
556 * handle_edge_irq - edge type IRQ handler
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700557 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700558 *
559 * Interrupt occures on the falling and/or rising edge of a hardware
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300560 * signal. The occurrence is latched into the irq controller hardware
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700561 * 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
Uwe Kleine-Königdfff0612010-02-12 21:58:11 +0100563 * is handled by the associated event handler. If this happens it
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700564 * 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 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200570void handle_edge_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700571{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100572 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700573
Thomas Gleixner163ef302011-02-08 11:39:15 +0100574 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerc3d7acd2014-08-29 13:46:08 +0200575
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200576 if (!irq_may_run(desc)) {
577 desc->istate |= IRQS_PENDING;
578 mask_ack_irq(desc);
579 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700580 }
Thomas Gleixnerc3d7acd2014-08-29 13:46:08 +0200581
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
Jiang Liub51bf952015-06-04 12:13:25 +0800592 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700593
594 /* Start handling the irq */
Thomas Gleixner22a49162010-09-27 12:44:47 +0000595 desc->irq_data.chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700596
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700597 do {
Thomas Gleixnera60a5dc2011-02-07 01:24:07 +0100598 if (unlikely(!desc->action)) {
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000599 mask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700600 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 */
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100608 if (unlikely(desc->istate & IRQS_PENDING)) {
Thomas Gleixner32f41252011-03-28 14:10:52 +0200609 if (!irqd_irq_disabled(&desc->irq_data) &&
610 irqd_irq_masked(&desc->irq_data))
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100611 unmask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700612 }
613
Thomas Gleixnera60a5dc2011-02-07 01:24:07 +0100614 handle_irq_event(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700615
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100616 } while ((desc->istate & IRQS_PENDING) &&
Thomas Gleixner32f41252011-03-28 14:10:52 +0200617 !irqd_irq_disabled(&desc->irq_data));
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700618
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700619out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100620 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700621}
Jiri Kosina3911ff32012-05-13 12:13:15 +0200622EXPORT_SYMBOL(handle_edge_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700623
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200624#ifdef CONFIG_IRQ_EDGE_EOI_HANDLER
625/**
626 * handle_edge_eoi_irq - edge eoi type IRQ handler
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200627 * @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 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200632void handle_edge_eoi_irq(struct irq_desc *desc)
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200633{
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);
Thomas Gleixnerc3d7acd2014-08-29 13:46:08 +0200639
Thomas Gleixnerc7bd3ec02014-08-29 13:39:37 +0200640 if (!irq_may_run(desc)) {
641 desc->istate |= IRQS_PENDING;
642 goto out_eoi;
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200643 }
Thomas Gleixnerc3d7acd2014-08-29 13:46:08 +0200644
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
Jiang Liub51bf952015-06-04 12:13:25 +0800654 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200655
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
Stephen Rothwellac0e0442011-03-30 10:55:12 +1100665out_eoi:
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200666 chip->irq_eoi(&desc->irq_data);
667 raw_spin_unlock(&desc->lock);
668}
669#endif
670
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700671/**
Liuweni24b26d42009-11-04 20:11:05 +0800672 * handle_percpu_irq - Per CPU local irq handler
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700673 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700674 *
675 * Per CPU interrupts on SMP machines without locking requirements
676 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200677void handle_percpu_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700678{
Thomas Gleixner35e857c2011-02-10 12:20:23 +0100679 struct irq_chip *chip = irq_desc_get_chip(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700680
Jiang Liub51bf952015-06-04 12:13:25 +0800681 kstat_incr_irqs_this_cpu(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700682
Thomas Gleixner849f0612011-02-07 01:25:41 +0100683 if (chip->irq_ack)
684 chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700685
Huang Shijie71f64342015-09-02 10:24:55 +0800686 handle_irq_event_percpu(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700687
Thomas Gleixner849f0612011-02-07 01:25:41 +0100688 if (chip->irq_eoi)
689 chip->irq_eoi(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700690}
691
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100692/**
693 * handle_percpu_devid_irq - Per CPU local irq handler with per cpu dev ids
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100694 * @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 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200703void handle_percpu_devid_irq(struct irq_desc *desc)
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100704{
705 struct irq_chip *chip = irq_desc_get_chip(desc);
706 struct irqaction *action = desc->action;
Christoph Lameter532d0d02014-08-17 12:30:39 -0500707 void *dev_id = raw_cpu_ptr(action->percpu_dev_id);
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200708 unsigned int irq = irq_desc_get_irq(desc);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100709 irqreturn_t res;
710
Jiang Liub51bf952015-06-04 12:13:25 +0800711 kstat_incr_irqs_this_cpu(desc);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100712
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
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700724void
Russell King3b0f95b2015-06-16 23:06:20 +0100725__irq_do_set_handler(struct irq_desc *desc, irq_flow_handler_t handle,
726 int is_chained, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700727{
Thomas Gleixner091738a2011-02-14 20:16:43 +0100728 if (!handle) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700729 handle = handle_bad_irq;
Thomas Gleixner091738a2011-02-14 20:16:43 +0100730 } else {
Marc Zyngierf86eff22014-11-15 10:49:13 +0000731 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))
Russell King3b0f95b2015-06-16 23:06:20 +0100749 return;
Marc Zyngierf86eff22014-11-15 10:49:13 +0000750 /* 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))
Russell King3b0f95b2015-06-16 23:06:20 +0100755 return;
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100756 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700757
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700758 /* Uninstall? */
759 if (handle == handle_bad_irq) {
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200760 if (desc->irq_data.chip != &no_irq_chip)
Thomas Gleixner9205e312010-09-27 12:44:50 +0000761 mask_ack_irq(desc);
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200762 irq_state_set_disabled(desc);
Mika Westerberge509bd72015-10-05 13:12:15 +0300763 if (is_chained)
764 desc->action = NULL;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700765 desc->depth = 1;
766 }
767 desc->handle_irq = handle;
Ingo Molnara460e742006-10-17 00:10:03 -0700768 desc->name = name;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700769
770 if (handle != handle_bad_irq && is_chained) {
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +0100771 irq_settings_set_noprobe(desc);
772 irq_settings_set_norequest(desc);
Paul Mundt7f1b1242011-04-07 06:01:44 +0900773 irq_settings_set_nothread(desc);
Mika Westerberge509bd72015-10-05 13:12:15 +0300774 desc->action = &chained_action;
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100775 irq_startup(desc, true);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700776 }
Russell King3b0f95b2015-06-16 23:06:20 +0100777}
778
779void
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);
Thomas Gleixner02725e72011-02-12 10:37:36 +0100790 irq_put_desc_busunlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700791}
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100792EXPORT_SYMBOL_GPL(__irq_set_handler);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700793
794void
Russell King3b0f95b2015-06-16 23:06:20 +0100795irq_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);
Jiang Liuaf7080e2015-06-01 16:05:21 +0800805 desc->irq_common_data.handler_data = data;
Russell King3b0f95b2015-06-16 23:06:20 +0100806
807 irq_put_desc_busunlock(desc, flags);
808}
809EXPORT_SYMBOL_GPL(irq_set_chained_handler_and_data);
810
811void
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100812irq_set_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
Ingo Molnara460e742006-10-17 00:10:03 -0700813 irq_flow_handler_t handle, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700814{
Thomas Gleixner35e857c2011-02-10 12:20:23 +0100815 irq_set_chip(irq, chip);
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100816 __irq_set_handler(irq, handle, 0, name);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700817}
Kuninori Morimotob3ae66f2012-07-30 22:39:06 -0700818EXPORT_SYMBOL_GPL(irq_set_chip_and_handler_name);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800819
Thomas Gleixner44247182010-09-28 10:40:18 +0200820void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set)
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800821{
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800822 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100823 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800824
Thomas Gleixner44247182010-09-28 10:40:18 +0200825 if (!desc)
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800826 return;
Thomas Gleixnera0056772011-02-08 17:11:03 +0100827 irq_settings_clr_and_set(desc, clr, set);
828
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100829 irqd_clear(&desc->irq_data, IRQD_NO_BALANCING | IRQD_PER_CPU |
Thomas Gleixnere1ef8242011-02-10 22:25:31 +0100830 IRQD_TRIGGER_MASK | IRQD_LEVEL | IRQD_MOVE_PCNTXT);
Thomas Gleixnera0056772011-02-08 17:11:03 +0100831 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);
Thomas Gleixnere1ef8242011-02-10 22:25:31 +0100835 if (irq_settings_can_move_pcntxt(desc))
836 irqd_set(&desc->irq_data, IRQD_MOVE_PCNTXT);
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200837 if (irq_settings_is_level(desc))
838 irqd_set(&desc->irq_data, IRQD_LEVEL);
Thomas Gleixnera0056772011-02-08 17:11:03 +0100839
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100840 irqd_set(&desc->irq_data, irq_settings_get_trigger_mask(desc));
841
Thomas Gleixner02725e72011-02-12 10:37:36 +0100842 irq_put_desc_unlock(desc, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800843}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100844EXPORT_SYMBOL_GPL(irq_modify_status);
David Daney0fdb4b22011-03-25 12:38:49 -0700845
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 */
852void 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);
Thomas Gleixnerb3d42232011-03-27 16:05:36 +0200867 if (chip && chip->irq_cpu_online &&
868 (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
Thomas Gleixner32f41252011-03-28 14:10:52 +0200869 !irqd_irq_disabled(&desc->irq_data)))
David Daney0fdb4b22011-03-25 12:38:49 -0700870 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 */
882void 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);
Thomas Gleixnerb3d42232011-03-27 16:05:36 +0200897 if (chip && chip->irq_cpu_offline &&
898 (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
Thomas Gleixner32f41252011-03-28 14:10:52 +0200899 !irqd_irq_disabled(&desc->irq_data)))
David Daney0fdb4b22011-03-25 12:38:49 -0700900 chip->irq_cpu_offline(&desc->irq_data);
901
902 raw_spin_unlock_irqrestore(&desc->lock, flags);
903 }
904}
Jiang Liu85f08c12014-11-06 22:20:16 +0800905
906#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
907/**
Stefan Agner3cfeffc2015-05-16 11:44:14 +0200908 * irq_chip_enable_parent - Enable the parent interrupt (defaults to unmask if
909 * NULL)
910 * @data: Pointer to interrupt specific data
911 */
912void 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 */
926void 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/**
Jiang Liu85f08c12014-11-06 22:20:16 +0800936 * irq_chip_ack_parent - Acknowledge the parent interrupt
937 * @data: Pointer to interrupt specific data
938 */
939void irq_chip_ack_parent(struct irq_data *data)
940{
941 data = data->parent_data;
942 data->chip->irq_ack(data);
943}
944
945/**
Yingjoe Chen56e8aba2014-11-13 23:37:05 +0800946 * irq_chip_mask_parent - Mask the parent interrupt
947 * @data: Pointer to interrupt specific data
948 */
949void 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 */
959void 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 */
969void 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 */
983int 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/**
Grygorii Strashkob7560de2015-08-14 15:20:26 +0300994 * 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 */
1000int 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/**
Jiang Liu85f08c12014-11-06 22:20:16 +08001011 * 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 */
1017int 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
Grygorii Strashko6d4affe2015-08-14 15:20:25 +03001023 return 0;
Jiang Liu85f08c12014-11-06 22:20:16 +08001024}
Marc Zyngier08b55e22015-03-11 15:43:43 +00001025
1026/**
Jiang Liu0a4377d2015-05-19 17:07:14 +08001027 * irq_chip_set_vcpu_affinity_parent - Set vcpu affinity on the parent interrupt
1028 * @data: Pointer to interrupt specific data
Masanari Iida8505a812015-07-29 19:09:36 +09001029 * @vcpu_info: The vcpu affinity information
Jiang Liu0a4377d2015-05-19 17:07:14 +08001030 */
1031int 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/**
Marc Zyngier08b55e22015-03-11 15:43:43 +00001041 * 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 */
1047int 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}
Jiang Liu85f08c12014-11-06 22:20:16 +08001055#endif
Jiang Liu515085e2014-11-06 22:20:17 +08001056
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 */
1066int 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}