浏览代码

ARM: pxa: arbitrarily set first interrupt number

As IRQ0, the legacy timer interrupt  should not be used as an interrupt
number, shift the interrupts by a fixed number.

As we had in a special case a shift of 16 when ISA bus was used on a
PXA, use that value as the first interrupt number, regardless of ISA or
not.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik 10 年之前
父节点
当前提交
3ad32229be
共有 2 个文件被更改,包括 2 次插入12 次删除
  1. 0 5
      arch/arm/mach-pxa/Kconfig
  2. 2 7
      arch/arm/mach-pxa/include/mach/irqs.h

+ 0 - 5
arch/arm/mach-pxa/Kconfig

@@ -83,14 +83,12 @@ config ARCH_VIPER
 	select I2C_GPIO if I2C=y
 	select I2C_GPIO if I2C=y
 	select ISA
 	select ISA
 	select PXA25x
 	select PXA25x
-	select PXA_HAVE_ISA_IRQS
 
 
 config MACH_ARCOM_ZEUS
 config MACH_ARCOM_ZEUS
 	bool "Arcom/Eurotech ZEUS SBC"
 	bool "Arcom/Eurotech ZEUS SBC"
 	select ARCOM_PCMCIA
 	select ARCOM_PCMCIA
 	select ISA
 	select ISA
 	select PXA27x
 	select PXA27x
-	select PXA_HAVE_ISA_IRQS
 
 
 config MACH_BALLOON3
 config MACH_BALLOON3
 	bool "Balloon 3 board"
 	bool "Balloon 3 board"
@@ -690,9 +688,6 @@ config SHARPSL_PM_MAX1111
 	select SPI
 	select SPI
 	select SPI_MASTER
 	select SPI_MASTER
 
 
-config PXA_HAVE_ISA_IRQS
-	bool
-
 config PXA310_ULPI
 config PXA310_ULPI
 	bool
 	bool
 
 

+ 2 - 7
arch/arm/mach-pxa/include/mach/irqs.h

@@ -12,14 +12,9 @@
 #ifndef __ASM_MACH_IRQS_H
 #ifndef __ASM_MACH_IRQS_H
 #define __ASM_MACH_IRQS_H
 #define __ASM_MACH_IRQS_H
 
 
-#ifdef CONFIG_PXA_HAVE_ISA_IRQS
-#define PXA_ISA_IRQ(x)	(x)
-#define PXA_ISA_IRQ_NUM	(16)
-#else
-#define PXA_ISA_IRQ_NUM	(0)
-#endif
+#include <asm/irq.h>
 
 
-#define PXA_IRQ(x)	(PXA_ISA_IRQ_NUM + (x))
+#define PXA_IRQ(x)	(NR_IRQS_LEGACY + (x))
 
 
 #define IRQ_SSP3	PXA_IRQ(0)	/* SSP3 service request */
 #define IRQ_SSP3	PXA_IRQ(0)	/* SSP3 service request */
 #define IRQ_MSL		PXA_IRQ(1)	/* MSL Interface interrupt */
 #define IRQ_MSL		PXA_IRQ(1)	/* MSL Interface interrupt */