2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2 of the License, or (at your
5 * option) any later version.
7 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
8 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
10 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
11 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
12 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
13 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
14 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
15 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
16 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 675 Mass Ave, Cambridge, MA 02139, USA.
22 * Copyright 2002 MontaVista Software Inc.
23 * Author: MontaVista Software, Inc.
24 * stevel@mvista.com or source@mvista.com
27 #include <linux/bitops.h>
28 #include <linux/errno.h>
29 #include <linux/init.h>
31 #include <linux/kernel_stat.h>
32 #include <linux/module.h>
33 #include <linux/signal.h>
34 #include <linux/sched.h>
35 #include <linux/types.h>
36 #include <linux/interrupt.h>
37 #include <linux/ioport.h>
38 #include <linux/timex.h>
39 #include <linux/random.h>
40 #include <linux/delay.h>
42 #include <asm/bootinfo.h>
44 #include <asm/mipsregs.h>
45 #include <asm/system.h>
47 #include <asm/mach-rc32434/irq.h>
48 #include <asm/mach-rc32434/gpio.h>
51 u32 mask
; /* mask of valid bits in pending/mask registers */
52 volatile u32
*base_addr
;
55 #define RC32434_NR_IRQS (GROUP4_IRQ_BASE + 32)
57 #if (NR_IRQS < RC32434_NR_IRQS)
58 #error Too little irqs defined. Did you override <asm/irq.h> ?
61 static const struct intr_group intr_group
[NUM_INTR_GROUPS
] = {
64 .base_addr
= (u32
*) KSEG1ADDR(IC_GROUP0_PEND
+ 0 * IC_GROUP_OFFSET
)},
67 .base_addr
= (u32
*) KSEG1ADDR(IC_GROUP0_PEND
+ 1 * IC_GROUP_OFFSET
)},
70 .base_addr
= (u32
*) KSEG1ADDR(IC_GROUP0_PEND
+ 2 * IC_GROUP_OFFSET
)},
73 .base_addr
= (u32
*) KSEG1ADDR(IC_GROUP0_PEND
+ 3 * IC_GROUP_OFFSET
)},
76 .base_addr
= (u32
*) KSEG1ADDR(IC_GROUP0_PEND
+ 4 * IC_GROUP_OFFSET
)}
79 #define READ_PEND(base) (*(base))
80 #define READ_MASK(base) (*(base + 2))
81 #define WRITE_MASK(base, val) (*(base + 2) = (val))
83 static inline int irq_to_group(unsigned int irq_nr
)
85 return (irq_nr
- GROUP0_IRQ_BASE
) >> 5;
88 static inline int group_to_ip(unsigned int group
)
93 static inline void enable_local_irq(unsigned int ip
)
95 int ipnum
= 0x100 << ip
;
100 static inline void disable_local_irq(unsigned int ip
)
102 int ipnum
= 0x100 << ip
;
104 clear_c0_status(ipnum
);
107 static inline void ack_local_irq(unsigned int ip
)
109 int ipnum
= 0x100 << ip
;
111 clear_c0_cause(ipnum
);
114 static void rb532_enable_irq(struct irq_data
*d
)
116 unsigned int group
, intr_bit
, irq_nr
= d
->irq
;
117 int ip
= irq_nr
- GROUP0_IRQ_BASE
;
118 volatile unsigned int *addr
;
121 enable_local_irq(irq_nr
);
128 enable_local_irq(group_to_ip(group
));
130 addr
= intr_group
[group
].base_addr
;
131 WRITE_MASK(addr
, READ_MASK(addr
) & ~intr_bit
);
135 static void rb532_disable_irq(struct irq_data
*d
)
137 unsigned int group
, intr_bit
, mask
, irq_nr
= d
->irq
;
138 int ip
= irq_nr
- GROUP0_IRQ_BASE
;
139 volatile unsigned int *addr
;
142 disable_local_irq(irq_nr
);
148 addr
= intr_group
[group
].base_addr
;
149 mask
= READ_MASK(addr
);
151 WRITE_MASK(addr
, mask
);
153 /* There is a maximum of 14 GPIO interrupts */
154 if (group
== GPIO_MAPPED_IRQ_GROUP
&& irq_nr
<= (GROUP4_IRQ_BASE
+ 13))
155 rb532_gpio_set_istat(0, irq_nr
- GPIO_MAPPED_IRQ_BASE
);
158 * if there are no more interrupts enabled in this
159 * group, disable corresponding IP
161 if (mask
== intr_group
[group
].mask
)
162 disable_local_irq(group_to_ip(group
));
166 static void rb532_mask_and_ack_irq(struct irq_data
*d
)
168 rb532_disable_irq(d
);
169 ack_local_irq(group_to_ip(irq_to_group(d
->irq
)));
172 static int rb532_set_type(struct irq_data
*d
, unsigned type
)
174 int gpio
= d
->irq
- GPIO_MAPPED_IRQ_BASE
;
175 int group
= irq_to_group(d
->irq
);
177 if (group
!= GPIO_MAPPED_IRQ_GROUP
|| d
->irq
> (GROUP4_IRQ_BASE
+ 13))
178 return (type
== IRQ_TYPE_LEVEL_HIGH
) ? 0 : -EINVAL
;
181 case IRQ_TYPE_LEVEL_HIGH
:
182 rb532_gpio_set_ilevel(1, gpio
);
184 case IRQ_TYPE_LEVEL_LOW
:
185 rb532_gpio_set_ilevel(0, gpio
);
194 static struct irq_chip rc32434_irq_type
= {
196 .irq_ack
= rb532_disable_irq
,
197 .irq_mask
= rb532_disable_irq
,
198 .irq_mask_ack
= rb532_mask_and_ack_irq
,
199 .irq_unmask
= rb532_enable_irq
,
200 .irq_set_type
= rb532_set_type
,
203 void __init
arch_init_irq(void)
207 pr_info("Initializing IRQ's: %d out of %d\n", RC32434_NR_IRQS
, NR_IRQS
);
209 for (i
= 0; i
< RC32434_NR_IRQS
; i
++)
210 irq_set_chip_and_handler(i
, &rc32434_irq_type
,
214 /* Main Interrupt dispatcher */
215 asmlinkage
void plat_irq_dispatch(void)
217 unsigned int ip
, pend
, group
;
218 volatile unsigned int *addr
;
219 unsigned int cp0_cause
= read_c0_cause() & read_c0_status();
221 if (cp0_cause
& CAUSEF_IP7
) {
224 ip
= (cp0_cause
& 0x7c00);
226 group
= 21 + (fls(ip
) - 32);
228 addr
= intr_group
[group
].base_addr
;
230 pend
= READ_PEND(addr
);
231 pend
&= ~READ_MASK(addr
); /* only unmasked interrupts */
232 pend
= 39 + (fls(pend
) - 32);
233 do_IRQ((group
<< 5) + pend
);