genirq: Provide compat handling for bus_lock/bus_sync_unlock
[deliverable/linux.git] / kernel / irq / chip.c
CommitLineData
dd87eb3a
TG
1/*
2 * linux/kernel/irq/chip.c
3 *
4 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
6 *
7 * This file contains the core interrupt handling code, for irq-chip
8 * based architectures.
9 *
10 * Detailed information is available in Documentation/DocBook/genericirq
11 */
12
13#include <linux/irq.h>
7fe3730d 14#include <linux/msi.h>
dd87eb3a
TG
15#include <linux/module.h>
16#include <linux/interrupt.h>
17#include <linux/kernel_stat.h>
18
19#include "internals.h"
20
ced5b697 21static void dynamic_irq_init_x(unsigned int irq, bool keep_chip_data)
3a16d713 22{
0b8f1efa 23 struct irq_desc *desc;
3a16d713
EB
24 unsigned long flags;
25
0b8f1efa 26 desc = irq_to_desc(irq);
7d94f7ca 27 if (!desc) {
261c40c1 28 WARN(1, KERN_ERR "Trying to initialize invalid IRQ%d\n", irq);
3a16d713
EB
29 return;
30 }
31
32 /* Ensure we don't have left over values from a previous use of this irq */
239007b8 33 raw_spin_lock_irqsave(&desc->lock, flags);
3a16d713 34 desc->status = IRQ_DISABLED;
6b8ff312 35 desc->irq_data.chip = &no_irq_chip;
3a16d713
EB
36 desc->handle_irq = handle_bad_irq;
37 desc->depth = 1;
6b8ff312
TG
38 desc->irq_data.msi_desc = NULL;
39 desc->irq_data.handler_data = NULL;
ced5b697 40 if (!keep_chip_data)
6b8ff312 41 desc->irq_data.chip_data = NULL;
3a16d713
EB
42 desc->action = NULL;
43 desc->irq_count = 0;
44 desc->irqs_unhandled = 0;
45#ifdef CONFIG_SMP
6b8ff312 46 cpumask_setall(desc->irq_data.affinity);
7f7ace0c
MT
47#ifdef CONFIG_GENERIC_PENDING_IRQ
48 cpumask_clear(desc->pending_mask);
49#endif
3a16d713 50#endif
239007b8 51 raw_spin_unlock_irqrestore(&desc->lock, flags);
3a16d713
EB
52}
53
54/**
ced5b697 55 * dynamic_irq_init - initialize a dynamically allocated irq
3a16d713
EB
56 * @irq: irq number to initialize
57 */
ced5b697
BP
58void dynamic_irq_init(unsigned int irq)
59{
60 dynamic_irq_init_x(irq, false);
61}
62
63/**
64 * dynamic_irq_init_keep_chip_data - initialize a dynamically allocated irq
65 * @irq: irq number to initialize
66 *
6b8ff312 67 * does not set irq_to_desc(irq)->irq_data.chip_data to NULL
ced5b697
BP
68 */
69void dynamic_irq_init_keep_chip_data(unsigned int irq)
70{
71 dynamic_irq_init_x(irq, true);
72}
73
74static void dynamic_irq_cleanup_x(unsigned int irq, bool keep_chip_data)
3a16d713 75{
d3c60047 76 struct irq_desc *desc = irq_to_desc(irq);
3a16d713
EB
77 unsigned long flags;
78
7d94f7ca 79 if (!desc) {
261c40c1 80 WARN(1, KERN_ERR "Trying to cleanup invalid IRQ%d\n", irq);
3a16d713
EB
81 return;
82 }
83
239007b8 84 raw_spin_lock_irqsave(&desc->lock, flags);
1f80025e 85 if (desc->action) {
239007b8 86 raw_spin_unlock_irqrestore(&desc->lock, flags);
261c40c1 87 WARN(1, KERN_ERR "Destroying IRQ%d without calling free_irq\n",
1f80025e 88 irq);
1f80025e
EB
89 return;
90 }
6b8ff312
TG
91 desc->irq_data.msi_desc = NULL;
92 desc->irq_data.handler_data = NULL;
ced5b697 93 if (!keep_chip_data)
6b8ff312 94 desc->irq_data.chip_data = NULL;
3a16d713 95 desc->handle_irq = handle_bad_irq;
6b8ff312 96 desc->irq_data.chip = &no_irq_chip;
b6f3b780 97 desc->name = NULL;
0f3c2a89 98 clear_kstat_irqs(desc);
239007b8 99 raw_spin_unlock_irqrestore(&desc->lock, flags);
3a16d713
EB
100}
101
ced5b697
BP
102/**
103 * dynamic_irq_cleanup - cleanup a dynamically allocated irq
104 * @irq: irq number to initialize
105 */
106void dynamic_irq_cleanup(unsigned int irq)
107{
108 dynamic_irq_cleanup_x(irq, false);
109}
110
111/**
112 * dynamic_irq_cleanup_keep_chip_data - cleanup a dynamically allocated irq
113 * @irq: irq number to initialize
114 *
6b8ff312 115 * does not set irq_to_desc(irq)->irq_data.chip_data to NULL
ced5b697
BP
116 */
117void dynamic_irq_cleanup_keep_chip_data(unsigned int irq)
118{
119 dynamic_irq_cleanup_x(irq, true);
120}
121
3a16d713 122
dd87eb3a
TG
123/**
124 * set_irq_chip - set the irq chip for an irq
125 * @irq: irq number
126 * @chip: pointer to irq chip description structure
127 */
128int set_irq_chip(unsigned int irq, struct irq_chip *chip)
129{
d3c60047 130 struct irq_desc *desc = irq_to_desc(irq);
dd87eb3a
TG
131 unsigned long flags;
132
7d94f7ca 133 if (!desc) {
261c40c1 134 WARN(1, KERN_ERR "Trying to install chip for IRQ%d\n", irq);
dd87eb3a
TG
135 return -EINVAL;
136 }
137
138 if (!chip)
139 chip = &no_irq_chip;
140
239007b8 141 raw_spin_lock_irqsave(&desc->lock, flags);
dd87eb3a 142 irq_chip_set_defaults(chip);
6b8ff312 143 desc->irq_data.chip = chip;
239007b8 144 raw_spin_unlock_irqrestore(&desc->lock, flags);
dd87eb3a
TG
145
146 return 0;
147}
148EXPORT_SYMBOL(set_irq_chip);
149
150/**
0c5d1eb7 151 * set_irq_type - set the irq trigger type for an irq
dd87eb3a 152 * @irq: irq number
0c5d1eb7 153 * @type: IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
dd87eb3a
TG
154 */
155int set_irq_type(unsigned int irq, unsigned int type)
156{
d3c60047 157 struct irq_desc *desc = irq_to_desc(irq);
dd87eb3a
TG
158 unsigned long flags;
159 int ret = -ENXIO;
160
7d94f7ca 161 if (!desc) {
dd87eb3a
TG
162 printk(KERN_ERR "Trying to set irq type for IRQ%d\n", irq);
163 return -ENODEV;
164 }
165
f2b662da 166 type &= IRQ_TYPE_SENSE_MASK;
0c5d1eb7
DB
167 if (type == IRQ_TYPE_NONE)
168 return 0;
169
239007b8 170 raw_spin_lock_irqsave(&desc->lock, flags);
0b3682ba 171 ret = __irq_set_trigger(desc, irq, type);
239007b8 172 raw_spin_unlock_irqrestore(&desc->lock, flags);
dd87eb3a
TG
173 return ret;
174}
175EXPORT_SYMBOL(set_irq_type);
176
177/**
178 * set_irq_data - set irq type data for an irq
179 * @irq: Interrupt number
180 * @data: Pointer to interrupt specific data
181 *
182 * Set the hardware irq controller data for an irq
183 */
184int set_irq_data(unsigned int irq, void *data)
185{
d3c60047 186 struct irq_desc *desc = irq_to_desc(irq);
dd87eb3a
TG
187 unsigned long flags;
188
7d94f7ca 189 if (!desc) {
dd87eb3a
TG
190 printk(KERN_ERR
191 "Trying to install controller data for IRQ%d\n", irq);
192 return -EINVAL;
193 }
194
239007b8 195 raw_spin_lock_irqsave(&desc->lock, flags);
6b8ff312 196 desc->irq_data.handler_data = data;
239007b8 197 raw_spin_unlock_irqrestore(&desc->lock, flags);
dd87eb3a
TG
198 return 0;
199}
200EXPORT_SYMBOL(set_irq_data);
201
5b912c10 202/**
24b26d42 203 * set_irq_msi - set MSI descriptor data for an irq
5b912c10 204 * @irq: Interrupt number
472900b8 205 * @entry: Pointer to MSI descriptor data
5b912c10 206 *
24b26d42 207 * Set the MSI descriptor entry for an irq
5b912c10
EB
208 */
209int set_irq_msi(unsigned int irq, struct msi_desc *entry)
210{
d3c60047 211 struct irq_desc *desc = irq_to_desc(irq);
5b912c10
EB
212 unsigned long flags;
213
7d94f7ca 214 if (!desc) {
5b912c10
EB
215 printk(KERN_ERR
216 "Trying to install msi data for IRQ%d\n", irq);
217 return -EINVAL;
218 }
7d94f7ca 219
239007b8 220 raw_spin_lock_irqsave(&desc->lock, flags);
6b8ff312 221 desc->irq_data.msi_desc = entry;
7fe3730d
ME
222 if (entry)
223 entry->irq = irq;
239007b8 224 raw_spin_unlock_irqrestore(&desc->lock, flags);
5b912c10
EB
225 return 0;
226}
227
dd87eb3a
TG
228/**
229 * set_irq_chip_data - set irq chip data for an irq
230 * @irq: Interrupt number
231 * @data: Pointer to chip specific data
232 *
233 * Set the hardware irq chip data for an irq
234 */
235int set_irq_chip_data(unsigned int irq, void *data)
236{
d3c60047 237 struct irq_desc *desc = irq_to_desc(irq);
dd87eb3a
TG
238 unsigned long flags;
239
7d94f7ca
YL
240 if (!desc) {
241 printk(KERN_ERR
242 "Trying to install chip data for IRQ%d\n", irq);
243 return -EINVAL;
244 }
245
6b8ff312 246 if (!desc->irq_data.chip) {
dd87eb3a
TG
247 printk(KERN_ERR "BUG: bad set_irq_chip_data(IRQ#%d)\n", irq);
248 return -EINVAL;
249 }
250
239007b8 251 raw_spin_lock_irqsave(&desc->lock, flags);
6b8ff312 252 desc->irq_data.chip_data = data;
239007b8 253 raw_spin_unlock_irqrestore(&desc->lock, flags);
dd87eb3a
TG
254
255 return 0;
256}
257EXPORT_SYMBOL(set_irq_chip_data);
258
399b5da2
TG
259/**
260 * set_irq_nested_thread - Set/Reset the IRQ_NESTED_THREAD flag of an irq
261 *
262 * @irq: Interrupt number
263 * @nest: 0 to clear / 1 to set the IRQ_NESTED_THREAD flag
264 *
265 * The IRQ_NESTED_THREAD flag indicates that on
266 * request_threaded_irq() no separate interrupt thread should be
267 * created for the irq as the handler are called nested in the
268 * context of a demultiplexing interrupt handler thread.
269 */
270void set_irq_nested_thread(unsigned int irq, int nest)
271{
272 struct irq_desc *desc = irq_to_desc(irq);
273 unsigned long flags;
274
275 if (!desc)
276 return;
277
239007b8 278 raw_spin_lock_irqsave(&desc->lock, flags);
399b5da2
TG
279 if (nest)
280 desc->status |= IRQ_NESTED_THREAD;
281 else
282 desc->status &= ~IRQ_NESTED_THREAD;
239007b8 283 raw_spin_unlock_irqrestore(&desc->lock, flags);
399b5da2
TG
284}
285EXPORT_SYMBOL_GPL(set_irq_nested_thread);
286
dd87eb3a
TG
287/*
288 * default enable function
289 */
290static void default_enable(unsigned int irq)
291{
d3c60047 292 struct irq_desc *desc = irq_to_desc(irq);
dd87eb3a 293
6b8ff312 294 desc->irq_data.chip->unmask(irq);
dd87eb3a
TG
295 desc->status &= ~IRQ_MASKED;
296}
297
298/*
299 * default disable function
300 */
301static void default_disable(unsigned int irq)
302{
dd87eb3a
TG
303}
304
305/*
306 * default startup function
307 */
308static unsigned int default_startup(unsigned int irq)
309{
d3c60047 310 struct irq_desc *desc = irq_to_desc(irq);
08678b08 311
6b8ff312 312 desc->irq_data.chip->enable(irq);
dd87eb3a
TG
313 return 0;
314}
315
89d694b9
TG
316/*
317 * default shutdown function
318 */
319static void default_shutdown(unsigned int irq)
320{
d3c60047 321 struct irq_desc *desc = irq_to_desc(irq);
89d694b9 322
6b8ff312 323 desc->irq_data.chip->mask(irq);
89d694b9
TG
324 desc->status |= IRQ_MASKED;
325}
326
3876ec9e
TG
327/* Temporary migration helpers */
328static void compat_bus_lock(struct irq_data *data)
329{
330 data->chip->bus_lock(data->irq);
331}
332
333static void compat_bus_sync_unlock(struct irq_data *data)
334{
335 data->chip->bus_sync_unlock(data->irq);
336}
337
dd87eb3a
TG
338/*
339 * Fixup enable/disable function pointers
340 */
341void irq_chip_set_defaults(struct irq_chip *chip)
342{
343 if (!chip->enable)
344 chip->enable = default_enable;
345 if (!chip->disable)
346 chip->disable = default_disable;
347 if (!chip->startup)
348 chip->startup = default_startup;
89d694b9
TG
349 /*
350 * We use chip->disable, when the user provided its own. When
351 * we have default_disable set for chip->disable, then we need
352 * to use default_shutdown, otherwise the irq line is not
353 * disabled on free_irq():
354 */
dd87eb3a 355 if (!chip->shutdown)
89d694b9
TG
356 chip->shutdown = chip->disable != default_disable ?
357 chip->disable : default_shutdown;
b86432b4
ZY
358 if (!chip->end)
359 chip->end = dummy_irq_chip.end;
3876ec9e
TG
360
361 if (chip->bus_lock)
362 chip->irq_bus_lock = compat_bus_lock;
363 if (chip->bus_sync_unlock)
364 chip->irq_bus_sync_unlock = compat_bus_sync_unlock;
dd87eb3a
TG
365}
366
367static inline void mask_ack_irq(struct irq_desc *desc, int irq)
368{
6b8ff312
TG
369 if (desc->irq_data.chip->mask_ack)
370 desc->irq_data.chip->mask_ack(irq);
dd87eb3a 371 else {
6b8ff312
TG
372 desc->irq_data.chip->mask(irq);
373 if (desc->irq_data.chip->ack)
374 desc->irq_data.chip->ack(irq);
dd87eb3a 375 }
0b1adaa0
TG
376 desc->status |= IRQ_MASKED;
377}
378
379static inline void mask_irq(struct irq_desc *desc, int irq)
380{
6b8ff312
TG
381 if (desc->irq_data.chip->mask) {
382 desc->irq_data.chip->mask(irq);
0b1adaa0
TG
383 desc->status |= IRQ_MASKED;
384 }
385}
386
387static inline void unmask_irq(struct irq_desc *desc, int irq)
388{
6b8ff312
TG
389 if (desc->irq_data.chip->unmask) {
390 desc->irq_data.chip->unmask(irq);
0b1adaa0
TG
391 desc->status &= ~IRQ_MASKED;
392 }
dd87eb3a
TG
393}
394
399b5da2
TG
395/*
396 * handle_nested_irq - Handle a nested irq from a irq thread
397 * @irq: the interrupt number
398 *
399 * Handle interrupts which are nested into a threaded interrupt
400 * handler. The handler function is called inside the calling
401 * threads context.
402 */
403void handle_nested_irq(unsigned int irq)
404{
405 struct irq_desc *desc = irq_to_desc(irq);
406 struct irqaction *action;
407 irqreturn_t action_ret;
408
409 might_sleep();
410
239007b8 411 raw_spin_lock_irq(&desc->lock);
399b5da2
TG
412
413 kstat_incr_irqs_this_cpu(irq, desc);
414
415 action = desc->action;
416 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
417 goto out_unlock;
418
419 desc->status |= IRQ_INPROGRESS;
239007b8 420 raw_spin_unlock_irq(&desc->lock);
399b5da2
TG
421
422 action_ret = action->thread_fn(action->irq, action->dev_id);
423 if (!noirqdebug)
424 note_interrupt(irq, desc, action_ret);
425
239007b8 426 raw_spin_lock_irq(&desc->lock);
399b5da2
TG
427 desc->status &= ~IRQ_INPROGRESS;
428
429out_unlock:
239007b8 430 raw_spin_unlock_irq(&desc->lock);
399b5da2
TG
431}
432EXPORT_SYMBOL_GPL(handle_nested_irq);
433
dd87eb3a
TG
434/**
435 * handle_simple_irq - Simple and software-decoded IRQs.
436 * @irq: the interrupt number
437 * @desc: the interrupt description structure for this irq
dd87eb3a
TG
438 *
439 * Simple interrupts are either sent from a demultiplexing interrupt
440 * handler or come from hardware, where no interrupt hardware control
441 * is necessary.
442 *
443 * Note: The caller is expected to handle the ack, clear, mask and
444 * unmask issues if necessary.
445 */
7ad5b3a5 446void
7d12e780 447handle_simple_irq(unsigned int irq, struct irq_desc *desc)
dd87eb3a
TG
448{
449 struct irqaction *action;
450 irqreturn_t action_ret;
dd87eb3a 451
239007b8 452 raw_spin_lock(&desc->lock);
dd87eb3a
TG
453
454 if (unlikely(desc->status & IRQ_INPROGRESS))
455 goto out_unlock;
971e5b35 456 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
d6c88a50 457 kstat_incr_irqs_this_cpu(irq, desc);
dd87eb3a
TG
458
459 action = desc->action;
971e5b35 460 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
dd87eb3a
TG
461 goto out_unlock;
462
463 desc->status |= IRQ_INPROGRESS;
239007b8 464 raw_spin_unlock(&desc->lock);
dd87eb3a 465
7d12e780 466 action_ret = handle_IRQ_event(irq, action);
dd87eb3a 467 if (!noirqdebug)
7d12e780 468 note_interrupt(irq, desc, action_ret);
dd87eb3a 469
239007b8 470 raw_spin_lock(&desc->lock);
dd87eb3a
TG
471 desc->status &= ~IRQ_INPROGRESS;
472out_unlock:
239007b8 473 raw_spin_unlock(&desc->lock);
dd87eb3a
TG
474}
475
476/**
477 * handle_level_irq - Level type irq handler
478 * @irq: the interrupt number
479 * @desc: the interrupt description structure for this irq
dd87eb3a
TG
480 *
481 * Level type interrupts are active as long as the hardware line has
482 * the active level. This may require to mask the interrupt and unmask
483 * it after the associated handler has acknowledged the device, so the
484 * interrupt line is back to inactive.
485 */
7ad5b3a5 486void
7d12e780 487handle_level_irq(unsigned int irq, struct irq_desc *desc)
dd87eb3a 488{
dd87eb3a
TG
489 struct irqaction *action;
490 irqreturn_t action_ret;
491
239007b8 492 raw_spin_lock(&desc->lock);
dd87eb3a
TG
493 mask_ack_irq(desc, irq);
494
495 if (unlikely(desc->status & IRQ_INPROGRESS))
86998aa6 496 goto out_unlock;
dd87eb3a 497 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
d6c88a50 498 kstat_incr_irqs_this_cpu(irq, desc);
dd87eb3a
TG
499
500 /*
501 * If its disabled or no action available
502 * keep it masked and get out of here
503 */
504 action = desc->action;
49663421 505 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
86998aa6 506 goto out_unlock;
dd87eb3a
TG
507
508 desc->status |= IRQ_INPROGRESS;
239007b8 509 raw_spin_unlock(&desc->lock);
dd87eb3a 510
7d12e780 511 action_ret = handle_IRQ_event(irq, action);
dd87eb3a 512 if (!noirqdebug)
7d12e780 513 note_interrupt(irq, desc, action_ret);
dd87eb3a 514
239007b8 515 raw_spin_lock(&desc->lock);
dd87eb3a 516 desc->status &= ~IRQ_INPROGRESS;
b25c340c 517
0b1adaa0
TG
518 if (!(desc->status & (IRQ_DISABLED | IRQ_ONESHOT)))
519 unmask_irq(desc, irq);
86998aa6 520out_unlock:
239007b8 521 raw_spin_unlock(&desc->lock);
dd87eb3a 522}
14819ea1 523EXPORT_SYMBOL_GPL(handle_level_irq);
dd87eb3a
TG
524
525/**
47c2a3aa 526 * handle_fasteoi_irq - irq handler for transparent controllers
dd87eb3a
TG
527 * @irq: the interrupt number
528 * @desc: the interrupt description structure for this irq
dd87eb3a 529 *
47c2a3aa 530 * Only a single callback will be issued to the chip: an ->eoi()
dd87eb3a
TG
531 * call when the interrupt has been serviced. This enables support
532 * for modern forms of interrupt handlers, which handle the flow
533 * details in hardware, transparently.
534 */
7ad5b3a5 535void
7d12e780 536handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
dd87eb3a 537{
dd87eb3a
TG
538 struct irqaction *action;
539 irqreturn_t action_ret;
540
239007b8 541 raw_spin_lock(&desc->lock);
dd87eb3a
TG
542
543 if (unlikely(desc->status & IRQ_INPROGRESS))
544 goto out;
545
546 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
d6c88a50 547 kstat_incr_irqs_this_cpu(irq, desc);
dd87eb3a
TG
548
549 /*
550 * If its disabled or no action available
76d21601 551 * then mask it and get out of here:
dd87eb3a
TG
552 */
553 action = desc->action;
98bb244b
BH
554 if (unlikely(!action || (desc->status & IRQ_DISABLED))) {
555 desc->status |= IRQ_PENDING;
0b1adaa0 556 mask_irq(desc, irq);
dd87eb3a 557 goto out;
98bb244b 558 }
dd87eb3a
TG
559
560 desc->status |= IRQ_INPROGRESS;
98bb244b 561 desc->status &= ~IRQ_PENDING;
239007b8 562 raw_spin_unlock(&desc->lock);
dd87eb3a 563
7d12e780 564 action_ret = handle_IRQ_event(irq, action);
dd87eb3a 565 if (!noirqdebug)
7d12e780 566 note_interrupt(irq, desc, action_ret);
dd87eb3a 567
239007b8 568 raw_spin_lock(&desc->lock);
dd87eb3a
TG
569 desc->status &= ~IRQ_INPROGRESS;
570out:
6b8ff312 571 desc->irq_data.chip->eoi(irq);
dd87eb3a 572
239007b8 573 raw_spin_unlock(&desc->lock);
dd87eb3a
TG
574}
575
576/**
577 * handle_edge_irq - edge type IRQ handler
578 * @irq: the interrupt number
579 * @desc: the interrupt description structure for this irq
dd87eb3a
TG
580 *
581 * Interrupt occures on the falling and/or rising edge of a hardware
582 * signal. The occurence is latched into the irq controller hardware
583 * and must be acked in order to be reenabled. After the ack another
584 * interrupt can happen on the same source even before the first one
dfff0615 585 * is handled by the associated event handler. If this happens it
dd87eb3a
TG
586 * might be necessary to disable (mask) the interrupt depending on the
587 * controller hardware. This requires to reenable the interrupt inside
588 * of the loop which handles the interrupts which have arrived while
589 * the handler was running. If all pending interrupts are handled, the
590 * loop is left.
591 */
7ad5b3a5 592void
7d12e780 593handle_edge_irq(unsigned int irq, struct irq_desc *desc)
dd87eb3a 594{
239007b8 595 raw_spin_lock(&desc->lock);
dd87eb3a
TG
596
597 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
598
599 /*
600 * If we're currently running this IRQ, or its disabled,
601 * we shouldn't process the IRQ. Mark it pending, handle
602 * the necessary masking and go out
603 */
604 if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) ||
605 !desc->action)) {
606 desc->status |= (IRQ_PENDING | IRQ_MASKED);
607 mask_ack_irq(desc, irq);
608 goto out_unlock;
609 }
d6c88a50 610 kstat_incr_irqs_this_cpu(irq, desc);
dd87eb3a
TG
611
612 /* Start handling the irq */
6b8ff312
TG
613 if (desc->irq_data.chip->ack)
614 desc->irq_data.chip->ack(irq);
dd87eb3a
TG
615
616 /* Mark the IRQ currently in progress.*/
617 desc->status |= IRQ_INPROGRESS;
618
619 do {
620 struct irqaction *action = desc->action;
621 irqreturn_t action_ret;
622
623 if (unlikely(!action)) {
0b1adaa0 624 mask_irq(desc, irq);
dd87eb3a
TG
625 goto out_unlock;
626 }
627
628 /*
629 * When another irq arrived while we were handling
630 * one, we could have masked the irq.
631 * Renable it, if it was not disabled in meantime.
632 */
633 if (unlikely((desc->status &
634 (IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
635 (IRQ_PENDING | IRQ_MASKED))) {
0b1adaa0 636 unmask_irq(desc, irq);
dd87eb3a
TG
637 }
638
639 desc->status &= ~IRQ_PENDING;
239007b8 640 raw_spin_unlock(&desc->lock);
7d12e780 641 action_ret = handle_IRQ_event(irq, action);
dd87eb3a 642 if (!noirqdebug)
7d12e780 643 note_interrupt(irq, desc, action_ret);
239007b8 644 raw_spin_lock(&desc->lock);
dd87eb3a
TG
645
646 } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING);
647
648 desc->status &= ~IRQ_INPROGRESS;
649out_unlock:
239007b8 650 raw_spin_unlock(&desc->lock);
dd87eb3a
TG
651}
652
dd87eb3a 653/**
24b26d42 654 * handle_percpu_irq - Per CPU local irq handler
dd87eb3a
TG
655 * @irq: the interrupt number
656 * @desc: the interrupt description structure for this irq
dd87eb3a
TG
657 *
658 * Per CPU interrupts on SMP machines without locking requirements
659 */
7ad5b3a5 660void
7d12e780 661handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
dd87eb3a
TG
662{
663 irqreturn_t action_ret;
664
d6c88a50 665 kstat_incr_irqs_this_cpu(irq, desc);
dd87eb3a 666
6b8ff312
TG
667 if (desc->irq_data.chip->ack)
668 desc->irq_data.chip->ack(irq);
dd87eb3a 669
7d12e780 670 action_ret = handle_IRQ_event(irq, desc->action);
dd87eb3a 671 if (!noirqdebug)
7d12e780 672 note_interrupt(irq, desc, action_ret);
dd87eb3a 673
6b8ff312
TG
674 if (desc->irq_data.chip->eoi)
675 desc->irq_data.chip->eoi(irq);
dd87eb3a
TG
676}
677
dd87eb3a 678void
a460e745
IM
679__set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
680 const char *name)
dd87eb3a 681{
d3c60047 682 struct irq_desc *desc = irq_to_desc(irq);
dd87eb3a
TG
683 unsigned long flags;
684
7d94f7ca 685 if (!desc) {
dd87eb3a
TG
686 printk(KERN_ERR
687 "Trying to install type control for IRQ%d\n", irq);
688 return;
689 }
690
dd87eb3a
TG
691 if (!handle)
692 handle = handle_bad_irq;
6b8ff312 693 else if (desc->irq_data.chip == &no_irq_chip) {
f8b5473f 694 printk(KERN_WARNING "Trying to install %sinterrupt handler "
b039db8e 695 "for IRQ%d\n", is_chained ? "chained " : "", irq);
f8b5473f
TG
696 /*
697 * Some ARM implementations install a handler for really dumb
698 * interrupt hardware without setting an irq_chip. This worked
699 * with the ARM no_irq_chip but the check in setup_irq would
700 * prevent us to setup the interrupt at all. Switch it to
701 * dummy_irq_chip for easy transition.
702 */
6b8ff312 703 desc->irq_data.chip = &dummy_irq_chip;
f8b5473f 704 }
dd87eb3a 705
3876ec9e 706 chip_bus_lock(desc);
239007b8 707 raw_spin_lock_irqsave(&desc->lock, flags);
dd87eb3a
TG
708
709 /* Uninstall? */
710 if (handle == handle_bad_irq) {
6b8ff312 711 if (desc->irq_data.chip != &no_irq_chip)
5575ddf7 712 mask_ack_irq(desc, irq);
dd87eb3a
TG
713 desc->status |= IRQ_DISABLED;
714 desc->depth = 1;
715 }
716 desc->handle_irq = handle;
a460e745 717 desc->name = name;
dd87eb3a
TG
718
719 if (handle != handle_bad_irq && is_chained) {
720 desc->status &= ~IRQ_DISABLED;
721 desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE;
722 desc->depth = 0;
6b8ff312 723 desc->irq_data.chip->startup(irq);
dd87eb3a 724 }
239007b8 725 raw_spin_unlock_irqrestore(&desc->lock, flags);
3876ec9e 726 chip_bus_sync_unlock(desc);
dd87eb3a 727}
14819ea1 728EXPORT_SYMBOL_GPL(__set_irq_handler);
dd87eb3a
TG
729
730void
731set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
57a58a94 732 irq_flow_handler_t handle)
dd87eb3a
TG
733{
734 set_irq_chip(irq, chip);
a460e745 735 __set_irq_handler(irq, handle, 0, NULL);
dd87eb3a
TG
736}
737
a460e745
IM
738void
739set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
740 irq_flow_handler_t handle, const char *name)
dd87eb3a 741{
a460e745
IM
742 set_irq_chip(irq, chip);
743 __set_irq_handler(irq, handle, 0, name);
dd87eb3a 744}
46f4f8f6 745
860652bf 746void set_irq_noprobe(unsigned int irq)
46f4f8f6 747{
d3c60047 748 struct irq_desc *desc = irq_to_desc(irq);
46f4f8f6
RB
749 unsigned long flags;
750
7d94f7ca 751 if (!desc) {
46f4f8f6 752 printk(KERN_ERR "Trying to mark IRQ%d non-probeable\n", irq);
46f4f8f6
RB
753 return;
754 }
755
239007b8 756 raw_spin_lock_irqsave(&desc->lock, flags);
46f4f8f6 757 desc->status |= IRQ_NOPROBE;
239007b8 758 raw_spin_unlock_irqrestore(&desc->lock, flags);
46f4f8f6
RB
759}
760
860652bf 761void set_irq_probe(unsigned int irq)
46f4f8f6 762{
d3c60047 763 struct irq_desc *desc = irq_to_desc(irq);
46f4f8f6
RB
764 unsigned long flags;
765
7d94f7ca 766 if (!desc) {
46f4f8f6 767 printk(KERN_ERR "Trying to mark IRQ%d probeable\n", irq);
46f4f8f6
RB
768 return;
769 }
770
239007b8 771 raw_spin_lock_irqsave(&desc->lock, flags);
46f4f8f6 772 desc->status &= ~IRQ_NOPROBE;
239007b8 773 raw_spin_unlock_irqrestore(&desc->lock, flags);
46f4f8f6 774}
This page took 0.393652 seconds and 5 git commands to generate.