blob: fb7db75ee0c87884d40ada2cb88e355cb2ca353c [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>
18
19#include "internals.h"
20
Eric W. Biederman3a16d712006-10-04 02:16:37 -070021/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010022 * irq_set_chip - set the irq chip for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070023 * @irq: irq number
24 * @chip: pointer to irq chip description structure
25 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010026int irq_set_chip(unsigned int irq, struct irq_chip *chip)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070027{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070028 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +010029 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070030
Thomas Gleixner02725e72011-02-12 10:37:36 +010031 if (!desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070032 return -EINVAL;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070033
34 if (!chip)
35 chip = &no_irq_chip;
36
Thomas Gleixner6b8ff312010-10-01 12:58:38 +020037 desc->irq_data.chip = chip;
Thomas Gleixner02725e72011-02-12 10:37:36 +010038 irq_put_desc_unlock(desc, flags);
David Daneyd72274e2011-03-25 12:38:48 -070039 /*
40 * For !CONFIG_SPARSE_IRQ make the irq show up in
41 * allocated_irqs. For the CONFIG_SPARSE_IRQ case, it is
42 * already marked, and this call is harmless.
43 */
44 irq_reserve_irq(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070045 return 0;
46}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010047EXPORT_SYMBOL(irq_set_chip);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070048
49/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010050 * irq_set_type - set the irq trigger type for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070051 * @irq: irq number
David Brownell0c5d1eb2008-10-01 14:46:18 -070052 * @type: IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070053 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010054int irq_set_irq_type(unsigned int irq, unsigned int type)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070055{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070056 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +010057 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Thomas Gleixner02725e72011-02-12 10:37:36 +010058 int ret = 0;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070059
Thomas Gleixner02725e72011-02-12 10:37:36 +010060 if (!desc)
61 return -EINVAL;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070062
David Brownellf2b662d2008-12-01 14:31:38 -080063 type &= IRQ_TYPE_SENSE_MASK;
Thomas Gleixner02725e72011-02-12 10:37:36 +010064 if (type != IRQ_TYPE_NONE)
65 ret = __irq_set_trigger(desc, irq, type);
66 irq_put_desc_busunlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070067 return ret;
68}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010069EXPORT_SYMBOL(irq_set_irq_type);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070070
71/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010072 * irq_set_handler_data - set irq handler data for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070073 * @irq: Interrupt number
74 * @data: Pointer to interrupt specific data
75 *
76 * Set the hardware irq controller data for an irq
77 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010078int irq_set_handler_data(unsigned int irq, void *data)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070079{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070080 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +010081 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070082
Thomas Gleixner02725e72011-02-12 10:37:36 +010083 if (!desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070084 return -EINVAL;
Thomas Gleixner6b8ff312010-10-01 12:58:38 +020085 desc->irq_data.handler_data = data;
Thomas Gleixner02725e72011-02-12 10:37:36 +010086 irq_put_desc_unlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070087 return 0;
88}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010089EXPORT_SYMBOL(irq_set_handler_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070090
91/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010092 * irq_set_msi_desc - set MSI descriptor data for an irq
Eric W. Biederman5b912c12007-01-28 12:52:03 -070093 * @irq: Interrupt number
Randy Dunlap472900b2007-02-16 01:28:25 -080094 * @entry: Pointer to MSI descriptor data
Eric W. Biederman5b912c12007-01-28 12:52:03 -070095 *
Liuweni24b26d42009-11-04 20:11:05 +080096 * Set the MSI descriptor entry for an irq
Eric W. Biederman5b912c12007-01-28 12:52:03 -070097 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +010098int irq_set_msi_desc(unsigned int irq, struct msi_desc *entry)
Eric W. Biederman5b912c12007-01-28 12:52:03 -070099{
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700100 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100101 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700102
Thomas Gleixner02725e72011-02-12 10:37:36 +0100103 if (!desc)
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700104 return -EINVAL;
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200105 desc->irq_data.msi_desc = entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000106 if (entry)
107 entry->irq = irq;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100108 irq_put_desc_unlock(desc, flags);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700109 return 0;
110}
111
112/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100113 * irq_set_chip_data - set irq chip data for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700114 * @irq: Interrupt number
115 * @data: Pointer to chip specific data
116 *
117 * Set the hardware irq chip data for an irq
118 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100119int irq_set_chip_data(unsigned int irq, void *data)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700120{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700121 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100122 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700123
Thomas Gleixner02725e72011-02-12 10:37:36 +0100124 if (!desc)
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700125 return -EINVAL;
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200126 desc->irq_data.chip_data = data;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100127 irq_put_desc_unlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700128 return 0;
129}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100130EXPORT_SYMBOL(irq_set_chip_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700131
Thomas Gleixnerf303a6d2010-09-28 17:34:01 +0200132struct irq_data *irq_get_irq_data(unsigned int irq)
133{
134 struct irq_desc *desc = irq_to_desc(irq);
135
136 return desc ? &desc->irq_data : NULL;
137}
138EXPORT_SYMBOL_GPL(irq_get_irq_data);
139
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100140static void irq_state_clr_disabled(struct irq_desc *desc)
141{
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200142 irqd_clear(&desc->irq_data, IRQD_IRQ_DISABLED);
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100143}
144
145static void irq_state_set_disabled(struct irq_desc *desc)
146{
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200147 irqd_set(&desc->irq_data, IRQD_IRQ_DISABLED);
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100148}
149
Thomas Gleixner6e402622011-02-08 12:36:06 +0100150static void irq_state_clr_masked(struct irq_desc *desc)
151{
Thomas Gleixner32f41252011-03-28 14:10:52 +0200152 irqd_clear(&desc->irq_data, IRQD_IRQ_MASKED);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100153}
154
155static void irq_state_set_masked(struct irq_desc *desc)
156{
Thomas Gleixner32f41252011-03-28 14:10:52 +0200157 irqd_set(&desc->irq_data, IRQD_IRQ_MASKED);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100158}
159
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100160int irq_startup(struct irq_desc *desc, bool resend)
Thomas Gleixner46999232011-02-02 21:41:14 +0000161{
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100162 int ret = 0;
163
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100164 irq_state_clr_disabled(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000165 desc->depth = 0;
166
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100167 if (desc->irq_data.chip->irq_startup) {
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100168 ret = desc->irq_data.chip->irq_startup(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100169 irq_state_clr_masked(desc);
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100170 } else {
171 irq_enable(desc);
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100172 }
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100173 if (resend)
174 check_irq_resend(desc, desc->irq_data.irq);
175 return ret;
Thomas Gleixner46999232011-02-02 21:41:14 +0000176}
177
178void irq_shutdown(struct irq_desc *desc)
179{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100180 irq_state_set_disabled(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000181 desc->depth = 1;
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100182 if (desc->irq_data.chip->irq_shutdown)
183 desc->irq_data.chip->irq_shutdown(&desc->irq_data);
Geert Uytterhoevened585a62011-09-11 13:59:27 +0200184 else if (desc->irq_data.chip->irq_disable)
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100185 desc->irq_data.chip->irq_disable(&desc->irq_data);
186 else
187 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100188 irq_state_set_masked(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000189}
190
Thomas Gleixner87923472011-02-03 12:27:44 +0100191void irq_enable(struct irq_desc *desc)
192{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100193 irq_state_clr_disabled(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100194 if (desc->irq_data.chip->irq_enable)
195 desc->irq_data.chip->irq_enable(&desc->irq_data);
196 else
197 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100198 irq_state_clr_masked(desc);
Thomas Gleixner87923472011-02-03 12:27:44 +0100199}
200
201void irq_disable(struct irq_desc *desc)
202{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100203 irq_state_set_disabled(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100204 if (desc->irq_data.chip->irq_disable) {
205 desc->irq_data.chip->irq_disable(&desc->irq_data);
Thomas Gleixnera61d8252011-02-21 12:54:34 +0100206 irq_state_set_masked(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100207 }
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100208}
209
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100210void irq_percpu_enable(struct irq_desc *desc, unsigned int cpu)
211{
212 if (desc->irq_data.chip->irq_enable)
213 desc->irq_data.chip->irq_enable(&desc->irq_data);
214 else
215 desc->irq_data.chip->irq_unmask(&desc->irq_data);
216 cpumask_set_cpu(cpu, desc->percpu_enabled);
217}
218
219void irq_percpu_disable(struct irq_desc *desc, unsigned int cpu)
220{
221 if (desc->irq_data.chip->irq_disable)
222 desc->irq_data.chip->irq_disable(&desc->irq_data);
223 else
224 desc->irq_data.chip->irq_mask(&desc->irq_data);
225 cpumask_clear_cpu(cpu, desc->percpu_enabled);
226}
227
Thomas Gleixner9205e312010-09-27 12:44:50 +0000228static inline void mask_ack_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700229{
Thomas Gleixner9205e312010-09-27 12:44:50 +0000230 if (desc->irq_data.chip->irq_mask_ack)
231 desc->irq_data.chip->irq_mask_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700232 else {
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000233 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner22a49162010-09-27 12:44:47 +0000234 if (desc->irq_data.chip->irq_ack)
235 desc->irq_data.chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700236 }
Thomas Gleixner6e402622011-02-08 12:36:06 +0100237 irq_state_set_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100238}
239
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100240void mask_irq(struct irq_desc *desc)
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100241{
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000242 if (desc->irq_data.chip->irq_mask) {
243 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100244 irq_state_set_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100245 }
246}
247
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100248void unmask_irq(struct irq_desc *desc)
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100249{
Thomas Gleixner0eda58b2010-09-27 12:44:44 +0000250 if (desc->irq_data.chip->irq_unmask) {
251 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100252 irq_state_clr_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100253 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700254}
255
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200256/*
257 * handle_nested_irq - Handle a nested irq from a irq thread
258 * @irq: the interrupt number
259 *
260 * Handle interrupts which are nested into a threaded interrupt
261 * handler. The handler function is called inside the calling
262 * threads context.
263 */
264void handle_nested_irq(unsigned int irq)
265{
266 struct irq_desc *desc = irq_to_desc(irq);
267 struct irqaction *action;
268 irqreturn_t action_ret;
269
270 might_sleep();
271
Thomas Gleixner239007b2009-11-17 16:46:45 +0100272 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200273
274 kstat_incr_irqs_this_cpu(irq, desc);
275
276 action = desc->action;
Thomas Gleixner32f41252011-03-28 14:10:52 +0200277 if (unlikely(!action || irqd_irq_disabled(&desc->irq_data)))
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200278 goto out_unlock;
279
Thomas Gleixner32f41252011-03-28 14:10:52 +0200280 irqd_set(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100281 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200282
283 action_ret = action->thread_fn(action->irq, action->dev_id);
284 if (!noirqdebug)
285 note_interrupt(irq, desc, action_ret);
286
Thomas Gleixner239007b2009-11-17 16:46:45 +0100287 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner32f41252011-03-28 14:10:52 +0200288 irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200289
290out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100291 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200292}
293EXPORT_SYMBOL_GPL(handle_nested_irq);
294
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100295static bool irq_check_poll(struct irq_desc *desc)
296{
Thomas Gleixner6954b752011-02-07 20:55:35 +0100297 if (!(desc->istate & IRQS_POLL_INPROGRESS))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100298 return false;
299 return irq_wait_for_poll(desc);
300}
301
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700302/**
303 * handle_simple_irq - Simple and software-decoded IRQs.
304 * @irq: the interrupt number
305 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700306 *
307 * Simple interrupts are either sent from a demultiplexing interrupt
308 * handler or come from hardware, where no interrupt hardware control
309 * is necessary.
310 *
311 * Note: The caller is expected to handle the ack, clear, mask and
312 * unmask issues if necessary.
313 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800314void
David Howells7d12e782006-10-05 14:55:46 +0100315handle_simple_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700316{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100317 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700318
Thomas Gleixner32f41252011-03-28 14:10:52 +0200319 if (unlikely(irqd_irq_inprogress(&desc->irq_data)))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100320 if (!irq_check_poll(desc))
321 goto out_unlock;
322
Thomas Gleixner163ef302011-02-08 11:39:15 +0100323 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200324 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700325
Thomas Gleixner32f41252011-03-28 14:10:52 +0200326 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data)))
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700327 goto out_unlock;
328
Thomas Gleixner107781e2011-02-07 01:21:02 +0100329 handle_irq_event(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700330
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700331out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100332 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700333}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100334EXPORT_SYMBOL_GPL(handle_simple_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700335
Thomas Gleixnerac563762012-02-07 17:58:03 +0100336/*
337 * Called unconditionally from handle_level_irq() and only for oneshot
338 * interrupts from handle_fasteoi_irq()
339 */
340static void cond_unmask_irq(struct irq_desc *desc)
341{
342 /*
343 * We need to unmask in the following cases:
344 * - Standard level irq (IRQF_ONESHOT is not set)
345 * - Oneshot irq which did not wake the thread (caused by a
346 * spurious interrupt or a primary handler handling it
347 * completely).
348 */
349 if (!irqd_irq_disabled(&desc->irq_data) &&
350 irqd_irq_masked(&desc->irq_data) && !desc->threads_oneshot)
351 unmask_irq(desc);
352}
353
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700354/**
355 * handle_level_irq - Level type irq handler
356 * @irq: the interrupt number
357 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700358 *
359 * Level type interrupts are active as long as the hardware line has
360 * the active level. This may require to mask the interrupt and unmask
361 * it after the associated handler has acknowledged the device, so the
362 * interrupt line is back to inactive.
363 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800364void
David Howells7d12e782006-10-05 14:55:46 +0100365handle_level_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700366{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100367 raw_spin_lock(&desc->lock);
Thomas Gleixner9205e312010-09-27 12:44:50 +0000368 mask_ack_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700369
Thomas Gleixner32f41252011-03-28 14:10:52 +0200370 if (unlikely(irqd_irq_inprogress(&desc->irq_data)))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100371 if (!irq_check_poll(desc))
372 goto out_unlock;
373
Thomas Gleixner163ef302011-02-08 11:39:15 +0100374 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200375 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700376
377 /*
378 * If its disabled or no action available
379 * keep it masked and get out of here
380 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200381 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data)))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200382 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700383
Thomas Gleixner15298662011-02-07 01:22:17 +0100384 handle_irq_event(desc);
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200385
Thomas Gleixnerac563762012-02-07 17:58:03 +0100386 cond_unmask_irq(desc);
387
Ingo Molnar86998aa2006-09-19 11:14:34 +0200388out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100389 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700390}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100391EXPORT_SYMBOL_GPL(handle_level_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700392
Thomas Gleixner78129572011-02-10 15:14:20 +0100393#ifdef CONFIG_IRQ_PREFLOW_FASTEOI
394static inline void preflow_handler(struct irq_desc *desc)
395{
396 if (desc->preflow_handler)
397 desc->preflow_handler(&desc->irq_data);
398}
399#else
400static inline void preflow_handler(struct irq_desc *desc) { }
401#endif
402
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700403/**
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700404 * handle_fasteoi_irq - irq handler for transparent controllers
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700405 * @irq: the interrupt number
406 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700407 *
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700408 * Only a single callback will be issued to the chip: an ->eoi()
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700409 * call when the interrupt has been serviced. This enables support
410 * for modern forms of interrupt handlers, which handle the flow
411 * details in hardware, transparently.
412 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800413void
David Howells7d12e782006-10-05 14:55:46 +0100414handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700415{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100416 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700417
Thomas Gleixner32f41252011-03-28 14:10:52 +0200418 if (unlikely(irqd_irq_inprogress(&desc->irq_data)))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100419 if (!irq_check_poll(desc))
420 goto out;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700421
Thomas Gleixner163ef302011-02-08 11:39:15 +0100422 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200423 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700424
425 /*
426 * If its disabled or no action available
Ingo Molnar76d21602007-02-16 01:28:24 -0800427 * then mask it and get out of here:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700428 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200429 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100430 desc->istate |= IRQS_PENDING;
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000431 mask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700432 goto out;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700433 }
Thomas Gleixnerc69e3752011-03-02 11:49:21 +0100434
435 if (desc->istate & IRQS_ONESHOT)
436 mask_irq(desc);
437
Thomas Gleixner78129572011-02-10 15:14:20 +0100438 preflow_handler(desc);
Thomas Gleixnera7ae4de2011-02-07 01:23:07 +0100439 handle_irq_event(desc);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100440
Thomas Gleixnerac563762012-02-07 17:58:03 +0100441 if (desc->istate & IRQS_ONESHOT)
442 cond_unmask_irq(desc);
443
Thomas Gleixner77694b42011-02-15 10:33:57 +0100444out_eoi:
Thomas Gleixner0c5c1552010-09-27 12:44:53 +0000445 desc->irq_data.chip->irq_eoi(&desc->irq_data);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100446out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100447 raw_spin_unlock(&desc->lock);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100448 return;
449out:
450 if (!(desc->irq_data.chip->flags & IRQCHIP_EOI_IF_HANDLED))
451 goto out_eoi;
452 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700453}
454
455/**
456 * handle_edge_irq - edge type IRQ handler
457 * @irq: the interrupt number
458 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700459 *
460 * Interrupt occures on the falling and/or rising edge of a hardware
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300461 * signal. The occurrence is latched into the irq controller hardware
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700462 * and must be acked in order to be reenabled. After the ack another
463 * interrupt can happen on the same source even before the first one
Uwe Kleine-Königdfff0612010-02-12 21:58:11 +0100464 * is handled by the associated event handler. If this happens it
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700465 * might be necessary to disable (mask) the interrupt depending on the
466 * controller hardware. This requires to reenable the interrupt inside
467 * of the loop which handles the interrupts which have arrived while
468 * the handler was running. If all pending interrupts are handled, the
469 * loop is left.
470 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800471void
David Howells7d12e782006-10-05 14:55:46 +0100472handle_edge_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700473{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100474 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700475
Thomas Gleixner163ef302011-02-08 11:39:15 +0100476 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700477 /*
478 * If we're currently running this IRQ, or its disabled,
479 * we shouldn't process the IRQ. Mark it pending, handle
480 * the necessary masking and go out
481 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200482 if (unlikely(irqd_irq_disabled(&desc->irq_data) ||
483 irqd_irq_inprogress(&desc->irq_data) || !desc->action)) {
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100484 if (!irq_check_poll(desc)) {
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100485 desc->istate |= IRQS_PENDING;
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100486 mask_ack_irq(desc);
487 goto out_unlock;
488 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700489 }
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200490 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700491
492 /* Start handling the irq */
Thomas Gleixner22a49162010-09-27 12:44:47 +0000493 desc->irq_data.chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700494
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700495 do {
Thomas Gleixnera60a5dc2011-02-07 01:24:07 +0100496 if (unlikely(!desc->action)) {
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000497 mask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700498 goto out_unlock;
499 }
500
501 /*
502 * When another irq arrived while we were handling
503 * one, we could have masked the irq.
504 * Renable it, if it was not disabled in meantime.
505 */
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100506 if (unlikely(desc->istate & IRQS_PENDING)) {
Thomas Gleixner32f41252011-03-28 14:10:52 +0200507 if (!irqd_irq_disabled(&desc->irq_data) &&
508 irqd_irq_masked(&desc->irq_data))
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100509 unmask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700510 }
511
Thomas Gleixnera60a5dc2011-02-07 01:24:07 +0100512 handle_irq_event(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700513
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100514 } while ((desc->istate & IRQS_PENDING) &&
Thomas Gleixner32f41252011-03-28 14:10:52 +0200515 !irqd_irq_disabled(&desc->irq_data));
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700516
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700517out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100518 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700519}
520
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200521#ifdef CONFIG_IRQ_EDGE_EOI_HANDLER
522/**
523 * handle_edge_eoi_irq - edge eoi type IRQ handler
524 * @irq: the interrupt number
525 * @desc: the interrupt description structure for this irq
526 *
527 * Similar as the above handle_edge_irq, but using eoi and w/o the
528 * mask/unmask logic.
529 */
530void handle_edge_eoi_irq(unsigned int irq, struct irq_desc *desc)
531{
532 struct irq_chip *chip = irq_desc_get_chip(desc);
533
534 raw_spin_lock(&desc->lock);
535
536 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
537 /*
538 * If we're currently running this IRQ, or its disabled,
539 * we shouldn't process the IRQ. Mark it pending, handle
540 * the necessary masking and go out
541 */
542 if (unlikely(irqd_irq_disabled(&desc->irq_data) ||
543 irqd_irq_inprogress(&desc->irq_data) || !desc->action)) {
544 if (!irq_check_poll(desc)) {
545 desc->istate |= IRQS_PENDING;
546 goto out_eoi;
547 }
548 }
549 kstat_incr_irqs_this_cpu(irq, desc);
550
551 do {
552 if (unlikely(!desc->action))
553 goto out_eoi;
554
555 handle_irq_event(desc);
556
557 } while ((desc->istate & IRQS_PENDING) &&
558 !irqd_irq_disabled(&desc->irq_data));
559
Stephen Rothwellac0e0442011-03-30 10:55:12 +1100560out_eoi:
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200561 chip->irq_eoi(&desc->irq_data);
562 raw_spin_unlock(&desc->lock);
563}
564#endif
565
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700566/**
Liuweni24b26d42009-11-04 20:11:05 +0800567 * handle_percpu_irq - Per CPU local irq handler
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700568 * @irq: the interrupt number
569 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700570 *
571 * Per CPU interrupts on SMP machines without locking requirements
572 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800573void
David Howells7d12e782006-10-05 14:55:46 +0100574handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700575{
Thomas Gleixner35e857c2011-02-10 12:20:23 +0100576 struct irq_chip *chip = irq_desc_get_chip(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700577
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200578 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700579
Thomas Gleixner849f0612011-02-07 01:25:41 +0100580 if (chip->irq_ack)
581 chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700582
Thomas Gleixner849f0612011-02-07 01:25:41 +0100583 handle_irq_event_percpu(desc, desc->action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700584
Thomas Gleixner849f0612011-02-07 01:25:41 +0100585 if (chip->irq_eoi)
586 chip->irq_eoi(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700587}
588
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100589/**
590 * handle_percpu_devid_irq - Per CPU local irq handler with per cpu dev ids
591 * @irq: the interrupt number
592 * @desc: the interrupt description structure for this irq
593 *
594 * Per CPU interrupts on SMP machines without locking requirements. Same as
595 * handle_percpu_irq() above but with the following extras:
596 *
597 * action->percpu_dev_id is a pointer to percpu variables which
598 * contain the real device id for the cpu on which this handler is
599 * called
600 */
601void handle_percpu_devid_irq(unsigned int irq, struct irq_desc *desc)
602{
603 struct irq_chip *chip = irq_desc_get_chip(desc);
604 struct irqaction *action = desc->action;
605 void *dev_id = __this_cpu_ptr(action->percpu_dev_id);
606 irqreturn_t res;
607
608 kstat_incr_irqs_this_cpu(irq, desc);
609
610 if (chip->irq_ack)
611 chip->irq_ack(&desc->irq_data);
612
613 trace_irq_handler_entry(irq, action);
614 res = action->handler(irq, dev_id);
615 trace_irq_handler_exit(irq, action, res);
616
617 if (chip->irq_eoi)
618 chip->irq_eoi(&desc->irq_data);
619}
620
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700621void
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100622__irq_set_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
Ingo Molnara460e742006-10-17 00:10:03 -0700623 const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700624{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700625 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100626 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, 0);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700627
Thomas Gleixner02725e72011-02-12 10:37:36 +0100628 if (!desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700629 return;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700630
Thomas Gleixner091738a2011-02-14 20:16:43 +0100631 if (!handle) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700632 handle = handle_bad_irq;
Thomas Gleixner091738a2011-02-14 20:16:43 +0100633 } else {
634 if (WARN_ON(desc->irq_data.chip == &no_irq_chip))
Thomas Gleixner02725e72011-02-12 10:37:36 +0100635 goto out;
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100636 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700637
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700638 /* Uninstall? */
639 if (handle == handle_bad_irq) {
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200640 if (desc->irq_data.chip != &no_irq_chip)
Thomas Gleixner9205e312010-09-27 12:44:50 +0000641 mask_ack_irq(desc);
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200642 irq_state_set_disabled(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700643 desc->depth = 1;
644 }
645 desc->handle_irq = handle;
Ingo Molnara460e742006-10-17 00:10:03 -0700646 desc->name = name;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700647
648 if (handle != handle_bad_irq && is_chained) {
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +0100649 irq_settings_set_noprobe(desc);
650 irq_settings_set_norequest(desc);
Paul Mundt7f1b1242011-04-07 06:01:44 +0900651 irq_settings_set_nothread(desc);
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +0100652 irq_startup(desc, true);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700653 }
Thomas Gleixner02725e72011-02-12 10:37:36 +0100654out:
655 irq_put_desc_busunlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700656}
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100657EXPORT_SYMBOL_GPL(__irq_set_handler);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700658
659void
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100660irq_set_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
Ingo Molnara460e742006-10-17 00:10:03 -0700661 irq_flow_handler_t handle, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700662{
Thomas Gleixner35e857c2011-02-10 12:20:23 +0100663 irq_set_chip(irq, chip);
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100664 __irq_set_handler(irq, handle, 0, name);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700665}
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800666
Thomas Gleixner44247182010-09-28 10:40:18 +0200667void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set)
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800668{
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800669 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100670 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800671
Thomas Gleixner44247182010-09-28 10:40:18 +0200672 if (!desc)
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800673 return;
Thomas Gleixnera0056772011-02-08 17:11:03 +0100674 irq_settings_clr_and_set(desc, clr, set);
675
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100676 irqd_clear(&desc->irq_data, IRQD_NO_BALANCING | IRQD_PER_CPU |
Thomas Gleixnere1ef8242011-02-10 22:25:31 +0100677 IRQD_TRIGGER_MASK | IRQD_LEVEL | IRQD_MOVE_PCNTXT);
Thomas Gleixnera0056772011-02-08 17:11:03 +0100678 if (irq_settings_has_no_balance_set(desc))
679 irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
680 if (irq_settings_is_per_cpu(desc))
681 irqd_set(&desc->irq_data, IRQD_PER_CPU);
Thomas Gleixnere1ef8242011-02-10 22:25:31 +0100682 if (irq_settings_can_move_pcntxt(desc))
683 irqd_set(&desc->irq_data, IRQD_MOVE_PCNTXT);
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200684 if (irq_settings_is_level(desc))
685 irqd_set(&desc->irq_data, IRQD_LEVEL);
Thomas Gleixnera0056772011-02-08 17:11:03 +0100686
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100687 irqd_set(&desc->irq_data, irq_settings_get_trigger_mask(desc));
688
Thomas Gleixner02725e72011-02-12 10:37:36 +0100689 irq_put_desc_unlock(desc, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800690}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100691EXPORT_SYMBOL_GPL(irq_modify_status);
David Daney0fdb4b22011-03-25 12:38:49 -0700692
693/**
694 * irq_cpu_online - Invoke all irq_cpu_online functions.
695 *
696 * Iterate through all irqs and invoke the chip.irq_cpu_online()
697 * for each.
698 */
699void irq_cpu_online(void)
700{
701 struct irq_desc *desc;
702 struct irq_chip *chip;
703 unsigned long flags;
704 unsigned int irq;
705
706 for_each_active_irq(irq) {
707 desc = irq_to_desc(irq);
708 if (!desc)
709 continue;
710
711 raw_spin_lock_irqsave(&desc->lock, flags);
712
713 chip = irq_data_get_irq_chip(&desc->irq_data);
Thomas Gleixnerb3d42232011-03-27 16:05:36 +0200714 if (chip && chip->irq_cpu_online &&
715 (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
Thomas Gleixner32f41252011-03-28 14:10:52 +0200716 !irqd_irq_disabled(&desc->irq_data)))
David Daney0fdb4b22011-03-25 12:38:49 -0700717 chip->irq_cpu_online(&desc->irq_data);
718
719 raw_spin_unlock_irqrestore(&desc->lock, flags);
720 }
721}
722
723/**
724 * irq_cpu_offline - Invoke all irq_cpu_offline functions.
725 *
726 * Iterate through all irqs and invoke the chip.irq_cpu_offline()
727 * for each.
728 */
729void irq_cpu_offline(void)
730{
731 struct irq_desc *desc;
732 struct irq_chip *chip;
733 unsigned long flags;
734 unsigned int irq;
735
736 for_each_active_irq(irq) {
737 desc = irq_to_desc(irq);
738 if (!desc)
739 continue;
740
741 raw_spin_lock_irqsave(&desc->lock, flags);
742
743 chip = irq_data_get_irq_chip(&desc->irq_data);
Thomas Gleixnerb3d42232011-03-27 16:05:36 +0200744 if (chip && chip->irq_cpu_offline &&
745 (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
Thomas Gleixner32f41252011-03-28 14:10:52 +0200746 !irqd_irq_disabled(&desc->irq_data)))
David Daney0fdb4b22011-03-25 12:38:49 -0700747 chip->irq_cpu_offline(&desc->irq_data);
748
749 raw_spin_unlock_irqrestore(&desc->lock, flags);
750 }
751}