Merge ../linux-2.6-watchdog-mm
[linux-drm-fsl-dcu.git] / arch / sh / cchips / voyagergx / irq.c
1 /* -------------------------------------------------------------------- */
2 /* setup_voyagergx.c:                                                     */
3 /* -------------------------------------------------------------------- */
4 /*  This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     Copyright 2003 (c) Lineo uSolutions,Inc.
19 */
20 #include <linux/interrupt.h>
21 #include <linux/init.h>
22 #include <linux/io.h>
23 #include <asm/voyagergx.h>
24 #include <asm/rts7751r2d.h>
25
26 static void disable_voyagergx_irq(unsigned int irq)
27 {
28         unsigned long val;
29         unsigned long mask = 1 << (irq - VOYAGER_IRQ_BASE);
30
31         pr_debug("disable_voyagergx_irq(%d): mask=%lx\n", irq, mask);
32         val = inl(VOYAGER_INT_MASK);
33         val &= ~mask;
34         outl(val, VOYAGER_INT_MASK);
35 }
36
37 static void enable_voyagergx_irq(unsigned int irq)
38 {
39         unsigned long val;
40         unsigned long mask = 1 << (irq - VOYAGER_IRQ_BASE);
41
42         pr_debug("disable_voyagergx_irq(%d): mask=%lx\n", irq, mask);
43         val = inl(VOYAGER_INT_MASK);
44         val |= mask;
45         outl(val, VOYAGER_INT_MASK);
46 }
47
48 static void mask_and_ack_voyagergx(unsigned int irq)
49 {
50         disable_voyagergx_irq(irq);
51 }
52
53 static void end_voyagergx_irq(unsigned int irq)
54 {
55         if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
56                 enable_voyagergx_irq(irq);
57 }
58
59 static unsigned int startup_voyagergx_irq(unsigned int irq)
60 {
61         enable_voyagergx_irq(irq);
62         return 0;
63 }
64
65 static void shutdown_voyagergx_irq(unsigned int irq)
66 {
67         disable_voyagergx_irq(irq);
68 }
69
70 static struct hw_interrupt_type voyagergx_irq_type = {
71         .typename = "VOYAGERGX-IRQ",
72         .startup = startup_voyagergx_irq,
73         .shutdown = shutdown_voyagergx_irq,
74         .enable = enable_voyagergx_irq,
75         .disable = disable_voyagergx_irq,
76         .ack = mask_and_ack_voyagergx,
77         .end = end_voyagergx_irq,
78 };
79
80 static irqreturn_t voyagergx_interrupt(int irq, void *dev_id)
81 {
82         printk(KERN_INFO
83                "VoyagerGX: spurious interrupt, status: 0x%x\n",
84                         inl(INT_STATUS));
85         return IRQ_HANDLED;
86 }
87
88 static struct {
89         int (*func)(int, void *);
90         void *dev;
91 } voyagergx_demux[VOYAGER_IRQ_NUM];
92
93 void voyagergx_register_irq_demux(int irq,
94                 int (*demux)(int irq, void *dev), void *dev)
95 {
96         voyagergx_demux[irq - VOYAGER_IRQ_BASE].func = demux;
97         voyagergx_demux[irq - VOYAGER_IRQ_BASE].dev = dev;
98 }
99
100 void voyagergx_unregister_irq_demux(int irq)
101 {
102         voyagergx_demux[irq - VOYAGER_IRQ_BASE].func = 0;
103 }
104
105 int voyagergx_irq_demux(int irq)
106 {
107
108         if (irq == IRQ_VOYAGER ) {
109                 unsigned long i = 0, bit __attribute__ ((unused));
110                 unsigned long val  = inl(INT_STATUS);
111 #if 1
112                 if ( val & ( 1 << 1 )){
113                         i = 1;
114                 } else if ( val & ( 1 << 2 )){
115                         i = 2;
116                 } else if ( val & ( 1 << 6 )){
117                         i = 6;
118                 } else if( val & ( 1 << 10 )){
119                         i = 10;
120                 } else if( val & ( 1 << 11 )){
121                         i = 11;
122                 } else if( val & ( 1 << 12 )){
123                         i = 12;
124                 } else if( val & ( 1 << 17 )){
125                         i = 17;
126                 } else {
127                         printk("Unexpected IRQ irq = %d status = 0x%08lx\n", irq, val);
128                 }
129                 pr_debug("voyagergx_irq_demux %ld\n", i);
130 #else
131                 for (bit = 1, i = 0 ; i < VOYAGER_IRQ_NUM ; bit <<= 1, i++)
132                         if (val & bit)
133                                 break;
134 #endif
135                 if (i < VOYAGER_IRQ_NUM) {
136                         irq = VOYAGER_IRQ_BASE + i;
137                         if (voyagergx_demux[i].func != 0)
138                                 irq = voyagergx_demux[i].func(irq, voyagergx_demux[i].dev);
139                 }
140         }
141         return irq;
142 }
143
144 static struct irqaction irq0  = {
145         .name           = "voyagergx",
146         .handler        = voyagergx_interrupt,
147         .flags          = IRQF_DISABLED,
148         .mask           = CPU_MASK_NONE,
149 };
150
151 void __init setup_voyagergx_irq(void)
152 {
153         int i, flag;
154
155         printk(KERN_INFO "VoyagerGX configured at 0x%x on irq %d(mapped into %d to %d)\n",
156                VOYAGER_BASE,
157                IRQ_VOYAGER,
158                VOYAGER_IRQ_BASE,
159                VOYAGER_IRQ_BASE + VOYAGER_IRQ_NUM - 1);
160
161         for (i=0; i<VOYAGER_IRQ_NUM; i++) {
162                 flag = 0;
163                 switch (VOYAGER_IRQ_BASE + i) {
164                 case VOYAGER_USBH_IRQ:
165                 case VOYAGER_8051_IRQ:
166                 case VOYAGER_UART0_IRQ:
167                 case VOYAGER_UART1_IRQ:
168                 case VOYAGER_AC97_IRQ:
169                         flag = 1;
170                 }
171                 if (flag == 1)
172                         irq_desc[VOYAGER_IRQ_BASE + i].chip = &voyagergx_irq_type;
173         }
174
175         setup_irq(IRQ_VOYAGER, &irq0);
176 }