diff options
author | Michal Simek <monstr@monstr.eu> | 2011-12-09 04:45:20 -0500 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2012-01-05 02:29:13 -0500 |
commit | 6c7a2676f594ca9a30203b4fd5dc26b53682cffe (patch) | |
tree | 835c600a889ef88ec8a961c88a9a5b185ba80e14 /arch/microblaze/include | |
parent | 9d0ced0084d8ae38883cc688ace8a9a4350d6bc9 (diff) |
microblaze: Change NO_IRQ to 0
As has been discussed many times[1], Using NO_IRQ set to anything other
than 0 is bug waiting to happen since many drivers follow the pattern
"if (!irq)" for testing whether or not an irq has been set.
This patch changes the Microblaze NO_IRQ setting from -1 to 0 to bring
it in line with most of the rest of the kernel. It also prepares for
Microblaze eventually supporting multiple interrupt controllers by
breaking the assumption that hwirq# == Linux IRQ#. The Linux IRQ
number is just a cookie with no guarantee of a direct relationship
with the hardware irq arrangement.
At this point, Microblaze interrupt handling only supports only one
instance of one kind of interrupt controller (xilinx_intc). This change
shouldn't affect any architecture code outside of the interrupt
controller driver and the irq_of mapping.
Updated to 3.2 and to use irq_data.hwirq by Rob Herring.
Tested and fixed by Michal Simek.
[1] http://lkml.org/lkml/2005/11/21/221
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include')
-rw-r--r-- | arch/microblaze/include/asm/irq.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/microblaze/include/asm/irq.h b/arch/microblaze/include/asm/irq.h index cc54187f3d38..b116a825de77 100644 --- a/arch/microblaze/include/asm/irq.h +++ b/arch/microblaze/include/asm/irq.h | |||
@@ -9,7 +9,14 @@ | |||
9 | #ifndef _ASM_MICROBLAZE_IRQ_H | 9 | #ifndef _ASM_MICROBLAZE_IRQ_H |
10 | #define _ASM_MICROBLAZE_IRQ_H | 10 | #define _ASM_MICROBLAZE_IRQ_H |
11 | 11 | ||
12 | #define NR_IRQS 32 | 12 | |
13 | /* | ||
14 | * Linux IRQ# is currently offset by one to map to the hardware | ||
15 | * irq number. So hardware IRQ0 maps to Linux irq 1. | ||
16 | */ | ||
17 | #define NO_IRQ_OFFSET 1 | ||
18 | #define IRQ_OFFSET NO_IRQ_OFFSET | ||
19 | #define NR_IRQS (32 + IRQ_OFFSET) | ||
13 | #include <asm-generic/irq.h> | 20 | #include <asm-generic/irq.h> |
14 | 21 | ||
15 | /* This type is the placeholder for a hardware interrupt number. It has to | 22 | /* This type is the placeholder for a hardware interrupt number. It has to |
@@ -20,7 +27,7 @@ typedef unsigned long irq_hw_number_t; | |||
20 | 27 | ||
21 | extern unsigned int nr_irq; | 28 | extern unsigned int nr_irq; |
22 | 29 | ||
23 | #define NO_IRQ (-1) | 30 | #define NO_IRQ 0 |
24 | 31 | ||
25 | struct pt_regs; | 32 | struct pt_regs; |
26 | extern void do_IRQ(struct pt_regs *regs); | 33 | extern void do_IRQ(struct pt_regs *regs); |