linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / arch / arm / mach-lh7a40x / irq-lh7a404.c
index 7059b98..122fada 100644 (file)
 #include <asm/hardware.h>
 #include <asm/irq.h>
 #include <asm/mach/irq.h>
+#include <asm/arch/irq.h>
 #include <asm/arch/irqs.h>
 
-#include "common.h"
-
 #define USE_PRIORITIES
 
 /* See Documentation/arm/Sharp-LH/VectoredInterruptController for more
 
 static unsigned char irq_pri_vic1[] = {
 #if defined (USE_PRIORITIES)
-       IRQ_GPIO3INTR,                  /* CPLD */
-       IRQ_DMAM2P4, IRQ_DMAM2P5,       /* AC97 */
+IRQ_GPIO3INTR,
 #endif
 };
 static unsigned char irq_pri_vic2[] = {
 #if defined (USE_PRIORITIES)
-       IRQ_T3UI,                       /* Timer */
-       IRQ_GPIO7INTR,                  /* CPLD */
+       IRQ_T3UI, IRQ_GPIO7INTR,
        IRQ_UART1INTR, IRQ_UART2INTR, IRQ_UART3INTR,
-       IRQ_LCDINTR,                    /* LCD */
-       IRQ_TSCINTR,                    /* ADC/Touchscreen */
 #endif
 };
 
@@ -76,29 +71,25 @@ static void lh7a404_vic2_ack_gpio_irq (u32 irq)
        VIC2_INTENCLR = (1 << irq);
 }
 
-static struct irq_chip lh7a404_vic1_chip = {
-       .name   = "VIC1",
+static struct irqchip lh7a404_vic1_chip = {
        .ack    = lh7a404_vic1_mask_irq, /* Because level-triggered */
        .mask   = lh7a404_vic1_mask_irq,
        .unmask = lh7a404_vic1_unmask_irq,
 };
 
-static struct irq_chip lh7a404_vic2_chip = {
-       .name   = "VIC2",
+static struct irqchip lh7a404_vic2_chip = {
        .ack    = lh7a404_vic2_mask_irq, /* Because level-triggered */
        .mask   = lh7a404_vic2_mask_irq,
        .unmask = lh7a404_vic2_unmask_irq,
 };
 
-static struct irq_chip lh7a404_gpio_vic1_chip = {
-       .name   = "GPIO-VIC1",
+static struct irqchip lh7a404_gpio_vic1_chip = {
        .ack    = lh7a404_vic1_ack_gpio_irq,
        .mask   = lh7a404_vic1_mask_irq,
        .unmask = lh7a404_vic1_unmask_irq,
 };
 
-static struct irq_chip lh7a404_gpio_vic2_chip = {
-       .name   = "GPIO-VIC2",
+static struct irqchip lh7a404_gpio_vic2_chip = {
        .ack    = lh7a404_vic2_ack_gpio_irq,
        .mask   = lh7a404_vic2_mask_irq,
        .unmask = lh7a404_vic2_unmask_irq,
@@ -106,19 +97,10 @@ static struct irq_chip lh7a404_gpio_vic2_chip = {
 
   /* IRQ initialization */
 
-#if defined (CONFIG_ARCH_LH7A400) && defined (CONFIG_ARCH_LH7A404)
-extern void* branch_irq_lh7a400;
-#endif
-
 void __init lh7a404_init_irq (void)
 {
        int irq;
 
-#if defined (CONFIG_ARCH_LH7A400) && defined (CONFIG_ARCH_LH7A404)
-#define NOP 0xe1a00000                 /* mov r0, r0 */
-       branch_irq_lh7a400 = NOP;
-#endif
-
        VIC1_INTENCLR = 0xffffffff;
        VIC2_INTENCLR = 0xffffffff;
        VIC1_INTSEL = 0;                /* All IRQs */