ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / arm / mach-lh7a40x / arch-kev7a400.c
1 /* arch/arm/mach-lh7a40x/arch-kev7a400.c
2  *
3  *  Copyright (C) 2004 Logic Product Development
4  *
5  *  This program is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU General Public License
7  *  version 2 as published by the Free Software Foundation.
8  *
9  */
10
11 #include <linux/tty.h>
12 #include <linux/init.h>
13 #include <linux/device.h>
14
15 #include <asm/hardware.h>
16 #include <asm/setup.h>
17 #include <asm/mach-types.h>
18 #include <asm/mach/arch.h>
19 #include <asm/hardware.h>       /* io_p2v() */
20 #include <asm/irq.h>
21 #include <asm/mach/irq.h>
22 #include <asm/mach/map.h>
23
24 #include <linux/interrupt.h>
25
26       /* This function calls the board specific IRQ initialization function. */
27 extern void lh7a400_init_irq (void);
28
29 static struct map_desc kev7a400_io_desc[] __initdata = {
30         { IO_VIRT,    IO_PHYS,    IO_SIZE,    MT_DEVICE },
31         { CPLD_VIRT,  CPLD_PHYS,  CPLD_SIZE,  MT_DEVICE },
32 };
33
34 void __init kev7a400_map_io(void)
35 {
36         iotable_init (kev7a400_io_desc, ARRAY_SIZE (kev7a400_io_desc));
37 }
38
39 static u16 CPLD_IRQ_mask;       /* Mask for CPLD IRQs, 1 == unmasked */
40
41 static void kev7a400_ack_cpld_irq (u32 irq)
42 {
43         CPLD_CL_INT = 1 << (irq - IRQ_KEV7A400_CPLD);
44 }
45
46 static void kev7a400_mask_cpld_irq (u32 irq)
47 {
48         CPLD_IRQ_mask &= ~(1 << (irq - IRQ_KEV7A400_CPLD));
49         CPLD_WR_PB_INT_MASK = CPLD_IRQ_mask;
50 }
51
52 static void kev7a400_unmask_cpld_irq (u32 irq)
53 {
54         CPLD_IRQ_mask |= 1 << (irq - IRQ_KEV7A400_CPLD);
55         CPLD_WR_PB_INT_MASK = CPLD_IRQ_mask;
56 }
57
58 static struct irqchip kev7a400_cpld_chip = {
59         .ack    = kev7a400_ack_cpld_irq,
60         .mask   = kev7a400_mask_cpld_irq,
61         .unmask = kev7a400_unmask_cpld_irq,
62 };
63
64
65 static void kev7a400_cpld_handler (unsigned int irq, struct irqdesc *desc,
66                                   struct pt_regs *regs)
67 {
68         u32 mask = CPLD_LATCHED_INTS;
69         irq = IRQ_KEV7A400_CPLD;
70         for (; mask; mask >>= 1, ++irq) {
71                 if (mask & 1)
72                         desc[irq].handle (irq, desc, regs);
73         }
74 }
75
76 void __init lh7a40x_init_board_irq (void)
77 {
78         int irq;
79
80         for (irq = IRQ_KEV7A400_CPLD;
81              irq < IRQ_KEV7A400_CPLD + NR_IRQ_BOARD; ++irq) {
82                 set_irq_chip (irq, &kev7a400_cpld_chip);
83                 set_irq_handler (irq, do_edge_IRQ);
84                 set_irq_flags (irq, IRQF_VALID);
85         }
86         set_irq_chained_handler (IRQ_CPLD, kev7a400_cpld_handler);
87
88                 /* Clear all CPLD interrupts */
89         CPLD_CL_INT = 0xff; /* CPLD_INTR_MMC_CD | CPLD_INTR_ETH_INT; */
90
91         GPIO_GPIOINTEN = 0;             /* Disable all GPIO interrupts */
92         barrier();
93
94 #if 0
95         GPIO_INTTYPE1
96                 = (GPIO_INTR_PCC1_CD | GPIO_INTR_PCC1_CD); /* Edge trig. */
97         GPIO_INTTYPE2 = 0;              /* Falling edge & low-level */
98         GPIO_GPIOFEOI = 0xff;           /* Clear all GPIO interrupts */
99         GPIO_GPIOINTEN = 0xff;          /* Enable all GPIO interrupts */
100
101         init_FIQ();
102 #endif
103 }
104
105 MACHINE_START (KEV7A400, "Sharp KEV7a400")
106         MAINTAINER ("Marc Singer")
107         BOOT_MEM (0xc0000000, 0x80000000, io_p2v (0x80000000))
108         BOOT_PARAMS (0xc0000100)
109         MAPIO (kev7a400_map_io)
110         INITIRQ (lh7a400_init_irq)
111 MACHINE_END