blob: 2adc6b588a8db081bfd1790d3bd28e8b82bae399 [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;
Thomas Gleixner02725e72011-02-12 10:37:36 +010029 struct irq_desc *desc = irq_get_desc_lock(irq, &flags);
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;
Thomas Gleixner02725e72011-02-12 10:37:36 +010057 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags);
58 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;
Thomas Gleixner02725e72011-02-12 10:37:36 +010081 struct irq_desc *desc = irq_get_desc_lock(irq, &flags);
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;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100101 struct irq_desc *desc = irq_get_desc_lock(irq, &flags);
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;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100122 struct irq_desc *desc = irq_get_desc_lock(irq, &flags);
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 Gleixner46999232011-02-02 21:41:14 +0000160int irq_startup(struct irq_desc *desc)
161{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100162 irq_state_clr_disabled(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000163 desc->depth = 0;
164
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100165 if (desc->irq_data.chip->irq_startup) {
166 int ret = desc->irq_data.chip->irq_startup(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100167 irq_state_clr_masked(desc);
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100168 return ret;
169 }
Thomas Gleixner46999232011-02-02 21:41:14 +0000170
Thomas Gleixner87923472011-02-03 12:27:44 +0100171 irq_enable(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000172 return 0;
173}
174
175void irq_shutdown(struct irq_desc *desc)
176{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100177 irq_state_set_disabled(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000178 desc->depth = 1;
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100179 if (desc->irq_data.chip->irq_shutdown)
180 desc->irq_data.chip->irq_shutdown(&desc->irq_data);
Geert Uytterhoeven79e72e12011-09-11 13:59:27 +0200181 else if (desc->irq_data.chip->irq_disable)
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100182 desc->irq_data.chip->irq_disable(&desc->irq_data);
183 else
184 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100185 irq_state_set_masked(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000186}
187
Thomas Gleixner87923472011-02-03 12:27:44 +0100188void irq_enable(struct irq_desc *desc)
189{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100190 irq_state_clr_disabled(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100191 if (desc->irq_data.chip->irq_enable)
192 desc->irq_data.chip->irq_enable(&desc->irq_data);
193 else
194 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100195 irq_state_clr_masked(desc);
Thomas Gleixner87923472011-02-03 12:27:44 +0100196}
197
198void irq_disable(struct irq_desc *desc)
199{
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100200 irq_state_set_disabled(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100201 if (desc->irq_data.chip->irq_disable) {
202 desc->irq_data.chip->irq_disable(&desc->irq_data);
Thomas Gleixnera61d8252011-02-21 12:54:34 +0100203 irq_state_set_masked(desc);
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100204 }
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100205}
206
Thomas Gleixner9205e312010-09-27 12:44:50 +0000207static inline void mask_ack_irq(struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700208{
Thomas Gleixner9205e312010-09-27 12:44:50 +0000209 if (desc->irq_data.chip->irq_mask_ack)
210 desc->irq_data.chip->irq_mask_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700211 else {
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000212 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner22a49162010-09-27 12:44:47 +0000213 if (desc->irq_data.chip->irq_ack)
214 desc->irq_data.chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700215 }
Thomas Gleixner6e402622011-02-08 12:36:06 +0100216 irq_state_set_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100217}
218
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100219void mask_irq(struct irq_desc *desc)
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100220{
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000221 if (desc->irq_data.chip->irq_mask) {
222 desc->irq_data.chip->irq_mask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100223 irq_state_set_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100224 }
225}
226
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100227void unmask_irq(struct irq_desc *desc)
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100228{
Thomas Gleixner0eda58b2010-09-27 12:44:44 +0000229 if (desc->irq_data.chip->irq_unmask) {
230 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Thomas Gleixner6e402622011-02-08 12:36:06 +0100231 irq_state_clr_masked(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100232 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700233}
234
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200235/*
236 * handle_nested_irq - Handle a nested irq from a irq thread
237 * @irq: the interrupt number
238 *
239 * Handle interrupts which are nested into a threaded interrupt
240 * handler. The handler function is called inside the calling
241 * threads context.
242 */
243void handle_nested_irq(unsigned int irq)
244{
245 struct irq_desc *desc = irq_to_desc(irq);
246 struct irqaction *action;
Abhijeet Dharmapurikar25bcca82011-08-24 01:09:32 -0700247 int mask_this_irq = 0;
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200248 irqreturn_t action_ret;
249
250 might_sleep();
251
Thomas Gleixner239007b2009-11-17 16:46:45 +0100252 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200253
254 kstat_incr_irqs_this_cpu(irq, desc);
255
256 action = desc->action;
Abhijeet Dharmapurikar25bcca82011-08-24 01:09:32 -0700257 if (unlikely(!action || irqd_irq_disabled(&desc->irq_data))) {
258 mask_this_irq = 1;
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200259 goto out_unlock;
Abhijeet Dharmapurikar25bcca82011-08-24 01:09:32 -0700260 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200261
Thomas Gleixner32f41252011-03-28 14:10:52 +0200262 irqd_set(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100263 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200264
265 action_ret = action->thread_fn(action->irq, action->dev_id);
266 if (!noirqdebug)
267 note_interrupt(irq, desc, action_ret);
268
Thomas Gleixner239007b2009-11-17 16:46:45 +0100269 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner32f41252011-03-28 14:10:52 +0200270 irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200271
272out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100273 raw_spin_unlock_irq(&desc->lock);
Abhijeet Dharmapurikar25bcca82011-08-24 01:09:32 -0700274 if (unlikely(mask_this_irq)) {
275 chip_bus_lock(desc);
276 mask_irq(desc);
277 chip_bus_sync_unlock(desc);
278 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200279}
280EXPORT_SYMBOL_GPL(handle_nested_irq);
281
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100282static bool irq_check_poll(struct irq_desc *desc)
283{
Thomas Gleixner6954b752011-02-07 20:55:35 +0100284 if (!(desc->istate & IRQS_POLL_INPROGRESS))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100285 return false;
286 return irq_wait_for_poll(desc);
287}
288
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700289/**
290 * handle_simple_irq - Simple and software-decoded IRQs.
291 * @irq: the interrupt number
292 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700293 *
294 * Simple interrupts are either sent from a demultiplexing interrupt
295 * handler or come from hardware, where no interrupt hardware control
296 * is necessary.
297 *
298 * Note: The caller is expected to handle the ack, clear, mask and
299 * unmask issues if necessary.
300 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800301void
David Howells7d12e782006-10-05 14:55:46 +0100302handle_simple_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700303{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100304 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700305
Thomas Gleixner32f41252011-03-28 14:10:52 +0200306 if (unlikely(irqd_irq_inprogress(&desc->irq_data)))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100307 if (!irq_check_poll(desc))
308 goto out_unlock;
309
Thomas Gleixner163ef302011-02-08 11:39:15 +0100310 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200311 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700312
Thomas Gleixner32f41252011-03-28 14:10:52 +0200313 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data)))
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700314 goto out_unlock;
315
Thomas Gleixner107781e2011-02-07 01:21:02 +0100316 handle_irq_event(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700317
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700318out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100319 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700320}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100321EXPORT_SYMBOL_GPL(handle_simple_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700322
323/**
324 * handle_level_irq - Level type irq handler
325 * @irq: the interrupt number
326 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700327 *
328 * Level type interrupts are active as long as the hardware line has
329 * the active level. This may require to mask the interrupt and unmask
330 * it after the associated handler has acknowledged the device, so the
331 * interrupt line is back to inactive.
332 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800333void
David Howells7d12e782006-10-05 14:55:46 +0100334handle_level_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700335{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100336 raw_spin_lock(&desc->lock);
Thomas Gleixner9205e312010-09-27 12:44:50 +0000337 mask_ack_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700338
Thomas Gleixner32f41252011-03-28 14:10:52 +0200339 if (unlikely(irqd_irq_inprogress(&desc->irq_data)))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100340 if (!irq_check_poll(desc))
341 goto out_unlock;
342
Thomas Gleixner163ef302011-02-08 11:39:15 +0100343 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200344 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700345
346 /*
347 * If its disabled or no action available
348 * keep it masked and get out of here
349 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200350 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data)))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200351 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700352
Thomas Gleixner15298662011-02-07 01:22:17 +0100353 handle_irq_event(desc);
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200354
Thomas Gleixner32f41252011-03-28 14:10:52 +0200355 if (!irqd_irq_disabled(&desc->irq_data) && !(desc->istate & IRQS_ONESHOT))
Thomas Gleixner0eda58b2010-09-27 12:44:44 +0000356 unmask_irq(desc);
Ingo Molnar86998aa2006-09-19 11:14:34 +0200357out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100358 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700359}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100360EXPORT_SYMBOL_GPL(handle_level_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700361
Thomas Gleixner78129572011-02-10 15:14:20 +0100362#ifdef CONFIG_IRQ_PREFLOW_FASTEOI
363static inline void preflow_handler(struct irq_desc *desc)
364{
365 if (desc->preflow_handler)
366 desc->preflow_handler(&desc->irq_data);
367}
368#else
369static inline void preflow_handler(struct irq_desc *desc) { }
370#endif
371
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700372/**
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700373 * handle_fasteoi_irq - irq handler for transparent controllers
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700374 * @irq: the interrupt number
375 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700376 *
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700377 * Only a single callback will be issued to the chip: an ->eoi()
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700378 * call when the interrupt has been serviced. This enables support
379 * for modern forms of interrupt handlers, which handle the flow
380 * details in hardware, transparently.
381 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800382void
David Howells7d12e782006-10-05 14:55:46 +0100383handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700384{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100385 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700386
Thomas Gleixner32f41252011-03-28 14:10:52 +0200387 if (unlikely(irqd_irq_inprogress(&desc->irq_data)))
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100388 if (!irq_check_poll(desc))
389 goto out;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700390
Thomas Gleixner163ef302011-02-08 11:39:15 +0100391 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200392 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700393
394 /*
395 * If its disabled or no action available
Ingo Molnar76d21602007-02-16 01:28:24 -0800396 * then mask it and get out of here:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700397 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200398 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
Abhijeet Dharmapurikarb615b0e2011-10-21 19:59:05 -0700399 if (!irq_settings_is_level(desc))
400 desc->istate |= IRQS_PENDING;
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000401 mask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700402 goto out;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700403 }
Thomas Gleixnerc69e3752011-03-02 11:49:21 +0100404
405 if (desc->istate & IRQS_ONESHOT)
406 mask_irq(desc);
407
Thomas Gleixner78129572011-02-10 15:14:20 +0100408 preflow_handler(desc);
Thomas Gleixnera7ae4de2011-02-07 01:23:07 +0100409 handle_irq_event(desc);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100410
411out_eoi:
Thomas Gleixner0c5c1552010-09-27 12:44:53 +0000412 desc->irq_data.chip->irq_eoi(&desc->irq_data);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100413out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100414 raw_spin_unlock(&desc->lock);
Thomas Gleixner77694b42011-02-15 10:33:57 +0100415 return;
416out:
417 if (!(desc->irq_data.chip->flags & IRQCHIP_EOI_IF_HANDLED))
418 goto out_eoi;
419 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700420}
421
422/**
423 * handle_edge_irq - edge type IRQ handler
424 * @irq: the interrupt number
425 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700426 *
427 * Interrupt occures on the falling and/or rising edge of a hardware
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300428 * signal. The occurrence is latched into the irq controller hardware
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700429 * and must be acked in order to be reenabled. After the ack another
430 * interrupt can happen on the same source even before the first one
Uwe Kleine-Königdfff0612010-02-12 21:58:11 +0100431 * is handled by the associated event handler. If this happens it
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700432 * might be necessary to disable (mask) the interrupt depending on the
433 * controller hardware. This requires to reenable the interrupt inside
434 * of the loop which handles the interrupts which have arrived while
435 * the handler was running. If all pending interrupts are handled, the
436 * loop is left.
437 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800438void
David Howells7d12e782006-10-05 14:55:46 +0100439handle_edge_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700440{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100441 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700442
Thomas Gleixner163ef302011-02-08 11:39:15 +0100443 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700444 /*
445 * If we're currently running this IRQ, or its disabled,
446 * we shouldn't process the IRQ. Mark it pending, handle
447 * the necessary masking and go out
448 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200449 if (unlikely(irqd_irq_disabled(&desc->irq_data) ||
450 irqd_irq_inprogress(&desc->irq_data) || !desc->action)) {
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100451 if (!irq_check_poll(desc)) {
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100452 desc->istate |= IRQS_PENDING;
Thomas Gleixnerfe200ae2011-02-07 10:34:30 +0100453 mask_ack_irq(desc);
454 goto out_unlock;
455 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700456 }
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200457 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700458
459 /* Start handling the irq */
Thomas Gleixner22a49162010-09-27 12:44:47 +0000460 desc->irq_data.chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700461
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700462 do {
Thomas Gleixnera60a5dc2011-02-07 01:24:07 +0100463 if (unlikely(!desc->action)) {
Thomas Gleixnere2c0f8f2010-09-27 12:44:42 +0000464 mask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700465 goto out_unlock;
466 }
467
468 /*
469 * When another irq arrived while we were handling
470 * one, we could have masked the irq.
471 * Renable it, if it was not disabled in meantime.
472 */
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100473 if (unlikely(desc->istate & IRQS_PENDING)) {
Thomas Gleixner32f41252011-03-28 14:10:52 +0200474 if (!irqd_irq_disabled(&desc->irq_data) &&
475 irqd_irq_masked(&desc->irq_data))
Thomas Gleixnerc1594b72011-02-07 22:11:30 +0100476 unmask_irq(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700477 }
478
Thomas Gleixnera60a5dc2011-02-07 01:24:07 +0100479 handle_irq_event(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700480
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +0100481 } while ((desc->istate & IRQS_PENDING) &&
Thomas Gleixner32f41252011-03-28 14:10:52 +0200482 !irqd_irq_disabled(&desc->irq_data));
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700483
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700484out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100485 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700486}
487
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200488#ifdef CONFIG_IRQ_EDGE_EOI_HANDLER
489/**
490 * handle_edge_eoi_irq - edge eoi type IRQ handler
491 * @irq: the interrupt number
492 * @desc: the interrupt description structure for this irq
493 *
494 * Similar as the above handle_edge_irq, but using eoi and w/o the
495 * mask/unmask logic.
496 */
497void handle_edge_eoi_irq(unsigned int irq, struct irq_desc *desc)
498{
499 struct irq_chip *chip = irq_desc_get_chip(desc);
500
501 raw_spin_lock(&desc->lock);
502
503 desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
504 /*
505 * If we're currently running this IRQ, or its disabled,
506 * we shouldn't process the IRQ. Mark it pending, handle
507 * the necessary masking and go out
508 */
509 if (unlikely(irqd_irq_disabled(&desc->irq_data) ||
510 irqd_irq_inprogress(&desc->irq_data) || !desc->action)) {
511 if (!irq_check_poll(desc)) {
512 desc->istate |= IRQS_PENDING;
513 goto out_eoi;
514 }
515 }
516 kstat_incr_irqs_this_cpu(irq, desc);
517
518 do {
519 if (unlikely(!desc->action))
520 goto out_eoi;
521
522 handle_irq_event(desc);
523
524 } while ((desc->istate & IRQS_PENDING) &&
525 !irqd_irq_disabled(&desc->irq_data));
526
Stephen Rothwellac0e0442011-03-30 10:55:12 +1100527out_eoi:
Thomas Gleixner0521c8f2011-03-28 16:13:24 +0200528 chip->irq_eoi(&desc->irq_data);
529 raw_spin_unlock(&desc->lock);
530}
531#endif
532
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700533/**
Liuweni24b26d42009-11-04 20:11:05 +0800534 * handle_percpu_irq - Per CPU local irq handler
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700535 * @irq: the interrupt number
536 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700537 *
538 * Per CPU interrupts on SMP machines without locking requirements
539 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800540void
David Howells7d12e782006-10-05 14:55:46 +0100541handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700542{
Thomas Gleixner35e857c2011-02-10 12:20:23 +0100543 struct irq_chip *chip = irq_desc_get_chip(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700544
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200545 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700546
Thomas Gleixner849f0612011-02-07 01:25:41 +0100547 if (chip->irq_ack)
548 chip->irq_ack(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700549
Thomas Gleixner849f0612011-02-07 01:25:41 +0100550 handle_irq_event_percpu(desc, desc->action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700551
Thomas Gleixner849f0612011-02-07 01:25:41 +0100552 if (chip->irq_eoi)
553 chip->irq_eoi(&desc->irq_data);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700554}
555
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700556void
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100557__irq_set_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
Ingo Molnara460e742006-10-17 00:10:03 -0700558 const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700559{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700560 unsigned long flags;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100561 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700562
Thomas Gleixner02725e72011-02-12 10:37:36 +0100563 if (!desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700564 return;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700565
Thomas Gleixner091738a2011-02-14 20:16:43 +0100566 if (!handle) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700567 handle = handle_bad_irq;
Thomas Gleixner091738a2011-02-14 20:16:43 +0100568 } else {
569 if (WARN_ON(desc->irq_data.chip == &no_irq_chip))
Thomas Gleixner02725e72011-02-12 10:37:36 +0100570 goto out;
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100571 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700572
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700573 /* Uninstall? */
574 if (handle == handle_bad_irq) {
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200575 if (desc->irq_data.chip != &no_irq_chip)
Thomas Gleixner9205e312010-09-27 12:44:50 +0000576 mask_ack_irq(desc);
Thomas Gleixner801a0e92011-03-27 11:02:49 +0200577 irq_state_set_disabled(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700578 desc->depth = 1;
579 }
580 desc->handle_irq = handle;
Ingo Molnara460e742006-10-17 00:10:03 -0700581 desc->name = name;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700582
583 if (handle != handle_bad_irq && is_chained) {
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +0100584 irq_settings_set_noprobe(desc);
585 irq_settings_set_norequest(desc);
Paul Mundt7f1b1242011-04-07 06:01:44 +0900586 irq_settings_set_nothread(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +0000587 irq_startup(desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700588 }
Thomas Gleixner02725e72011-02-12 10:37:36 +0100589out:
590 irq_put_desc_busunlock(desc, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700591}
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100592EXPORT_SYMBOL_GPL(__irq_set_handler);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700593
594void
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100595irq_set_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
Ingo Molnara460e742006-10-17 00:10:03 -0700596 irq_flow_handler_t handle, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700597{
Thomas Gleixner35e857c2011-02-10 12:20:23 +0100598 irq_set_chip(irq, chip);
Thomas Gleixner3836ca02011-02-14 20:09:19 +0100599 __irq_set_handler(irq, handle, 0, name);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700600}
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800601
Thomas Gleixner44247182010-09-28 10:40:18 +0200602void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set)
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800603{
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800604 unsigned long flags;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100605 struct irq_desc *desc = irq_get_desc_lock(irq, &flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800606
Thomas Gleixner44247182010-09-28 10:40:18 +0200607 if (!desc)
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800608 return;
Thomas Gleixnera0056772011-02-08 17:11:03 +0100609 irq_settings_clr_and_set(desc, clr, set);
610
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100611 irqd_clear(&desc->irq_data, IRQD_NO_BALANCING | IRQD_PER_CPU |
Thomas Gleixnere1ef8242011-02-10 22:25:31 +0100612 IRQD_TRIGGER_MASK | IRQD_LEVEL | IRQD_MOVE_PCNTXT);
Thomas Gleixnera0056772011-02-08 17:11:03 +0100613 if (irq_settings_has_no_balance_set(desc))
614 irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
615 if (irq_settings_is_per_cpu(desc))
616 irqd_set(&desc->irq_data, IRQD_PER_CPU);
Thomas Gleixnere1ef8242011-02-10 22:25:31 +0100617 if (irq_settings_can_move_pcntxt(desc))
618 irqd_set(&desc->irq_data, IRQD_MOVE_PCNTXT);
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200619 if (irq_settings_is_level(desc))
620 irqd_set(&desc->irq_data, IRQD_LEVEL);
Thomas Gleixnera0056772011-02-08 17:11:03 +0100621
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100622 irqd_set(&desc->irq_data, irq_settings_get_trigger_mask(desc));
623
Thomas Gleixner02725e72011-02-12 10:37:36 +0100624 irq_put_desc_unlock(desc, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800625}
Jonathan Cameronedf76f82011-05-18 10:39:04 +0100626EXPORT_SYMBOL_GPL(irq_modify_status);
David Daney0fdb4b22011-03-25 12:38:49 -0700627
628/**
629 * irq_cpu_online - Invoke all irq_cpu_online functions.
630 *
631 * Iterate through all irqs and invoke the chip.irq_cpu_online()
632 * for each.
633 */
634void irq_cpu_online(void)
635{
636 struct irq_desc *desc;
637 struct irq_chip *chip;
638 unsigned long flags;
639 unsigned int irq;
640
641 for_each_active_irq(irq) {
642 desc = irq_to_desc(irq);
643 if (!desc)
644 continue;
645
646 raw_spin_lock_irqsave(&desc->lock, flags);
647
648 chip = irq_data_get_irq_chip(&desc->irq_data);
Thomas Gleixnerb3d42232011-03-27 16:05:36 +0200649 if (chip && chip->irq_cpu_online &&
650 (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
Thomas Gleixner32f41252011-03-28 14:10:52 +0200651 !irqd_irq_disabled(&desc->irq_data)))
David Daney0fdb4b22011-03-25 12:38:49 -0700652 chip->irq_cpu_online(&desc->irq_data);
653
654 raw_spin_unlock_irqrestore(&desc->lock, flags);
655 }
656}
657
658/**
659 * irq_cpu_offline - Invoke all irq_cpu_offline functions.
660 *
661 * Iterate through all irqs and invoke the chip.irq_cpu_offline()
662 * for each.
663 */
664void irq_cpu_offline(void)
665{
666 struct irq_desc *desc;
667 struct irq_chip *chip;
668 unsigned long flags;
669 unsigned int irq;
670
671 for_each_active_irq(irq) {
672 desc = irq_to_desc(irq);
673 if (!desc)
674 continue;
675
676 raw_spin_lock_irqsave(&desc->lock, flags);
677
678 chip = irq_data_get_irq_chip(&desc->irq_data);
Thomas Gleixnerb3d42232011-03-27 16:05:36 +0200679 if (chip && chip->irq_cpu_offline &&
680 (!(chip->flags & IRQCHIP_ONOFFLINE_ENABLED) ||
Thomas Gleixner32f41252011-03-28 14:10:52 +0200681 !irqd_irq_disabled(&desc->irq_data)))
David Daney0fdb4b22011-03-25 12:38:49 -0700682 chip->irq_cpu_offline(&desc->irq_data);
683
684 raw_spin_unlock_irqrestore(&desc->lock, flags);
685 }
686}