diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-11-13 11:13:18 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-11-29 20:14:46 -0500 |
commit | 1417836e81c0ab8f5a0bfeafa90d3eaa41b2a067 (patch) | |
tree | 0274893cb78ca2e1bb85c3eee0c07a85e0b83d04 /arch/mips/mips-boards/atlas | |
parent | 1603b5aca4f15b34848fb5594d0c7b6333b99144 (diff) |
[MIPS] use generic_handle_irq, handle_level_irq, handle_percpu_irq
Further incorporation of generic irq framework. Replacing __do_IRQ()
by proper flow handler would make the irq handling path a bit simpler
and faster.
* use generic_handle_irq() instead of __do_IRQ().
* use handle_level_irq for obvious level-type irq chips.
* use handle_percpu_irq for irqs marked as IRQ_PER_CPU.
* setup .eoi routine for irq chips possibly used with handle_percpu_irq.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mips-boards/atlas')
-rw-r--r-- | arch/mips/mips-boards/atlas/atlas_int.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/mips-boards/atlas/atlas_int.c b/arch/mips/mips-boards/atlas/atlas_int.c index 7c710040d3f1..43dba6ce6603 100644 --- a/arch/mips/mips-boards/atlas/atlas_int.c +++ b/arch/mips/mips-boards/atlas/atlas_int.c | |||
@@ -74,6 +74,7 @@ static struct irq_chip atlas_irq_type = { | |||
74 | .mask = disable_atlas_irq, | 74 | .mask = disable_atlas_irq, |
75 | .mask_ack = disable_atlas_irq, | 75 | .mask_ack = disable_atlas_irq, |
76 | .unmask = enable_atlas_irq, | 76 | .unmask = enable_atlas_irq, |
77 | .eoi = enable_atlas_irq, | ||
77 | .end = end_atlas_irq, | 78 | .end = end_atlas_irq, |
78 | }; | 79 | }; |
79 | 80 | ||
@@ -207,7 +208,7 @@ static inline void init_atlas_irqs (int base) | |||
207 | atlas_hw0_icregs->intrsten = 0xffffffff; | 208 | atlas_hw0_icregs->intrsten = 0xffffffff; |
208 | 209 | ||
209 | for (i = ATLAS_INT_BASE; i <= ATLAS_INT_END; i++) | 210 | for (i = ATLAS_INT_BASE; i <= ATLAS_INT_END; i++) |
210 | set_irq_chip(i, &atlas_irq_type); | 211 | set_irq_chip_and_handler(i, &atlas_irq_type, handle_level_irq); |
211 | } | 212 | } |
212 | 213 | ||
213 | static struct irqaction atlasirq = { | 214 | static struct irqaction atlasirq = { |