Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-clps711x / irq.c
blob7ee926e5bad2d3429eee65ca6a3b9a81c6e64313
1 /*
2 * linux/arch/arm/mach-clps711x/irq.c
4 * Copyright (C) 2000 Deep Blue Solutions Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/init.h>
21 #include <linux/list.h>
23 #include <asm/mach/irq.h>
24 #include <asm/hardware.h>
25 #include <asm/io.h>
26 #include <asm/irq.h>
28 #include <asm/hardware/clps7111.h>
30 static void int1_mask(unsigned int irq)
32 u32 intmr1;
34 intmr1 = clps_readl(INTMR1);
35 intmr1 &= ~(1 << irq);
36 clps_writel(intmr1, INTMR1);
39 static void int1_ack(unsigned int irq)
41 u32 intmr1;
43 intmr1 = clps_readl(INTMR1);
44 intmr1 &= ~(1 << irq);
45 clps_writel(intmr1, INTMR1);
47 switch (irq) {
48 case IRQ_CSINT: clps_writel(0, COEOI); break;
49 case IRQ_TC1OI: clps_writel(0, TC1EOI); break;
50 case IRQ_TC2OI: clps_writel(0, TC2EOI); break;
51 case IRQ_RTCMI: clps_writel(0, RTCEOI); break;
52 case IRQ_TINT: clps_writel(0, TEOI); break;
53 case IRQ_UMSINT: clps_writel(0, UMSEOI); break;
57 static void int1_unmask(unsigned int irq)
59 u32 intmr1;
61 intmr1 = clps_readl(INTMR1);
62 intmr1 |= 1 << irq;
63 clps_writel(intmr1, INTMR1);
66 static struct irqchip int1_chip = {
67 .ack = int1_ack,
68 .mask = int1_mask,
69 .unmask = int1_unmask,
72 static void int2_mask(unsigned int irq)
74 u32 intmr2;
76 intmr2 = clps_readl(INTMR2);
77 intmr2 &= ~(1 << (irq - 16));
78 clps_writel(intmr2, INTMR2);
81 static void int2_ack(unsigned int irq)
83 u32 intmr2;
85 intmr2 = clps_readl(INTMR2);
86 intmr2 &= ~(1 << (irq - 16));
87 clps_writel(intmr2, INTMR2);
89 switch (irq) {
90 case IRQ_KBDINT: clps_writel(0, KBDEOI); break;
94 static void int2_unmask(unsigned int irq)
96 u32 intmr2;
98 intmr2 = clps_readl(INTMR2);
99 intmr2 |= 1 << (irq - 16);
100 clps_writel(intmr2, INTMR2);
103 static struct irqchip int2_chip = {
104 .ack = int2_ack,
105 .mask = int2_mask,
106 .unmask = int2_unmask,
109 void __init clps711x_init_irq(void)
111 unsigned int i;
113 for (i = 0; i < NR_IRQS; i++) {
114 if (INT1_IRQS & (1 << i)) {
115 set_irq_handler(i, do_level_IRQ);
116 set_irq_chip(i, &int1_chip);
117 set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
119 if (INT2_IRQS & (1 << i)) {
120 set_irq_handler(i, do_level_IRQ);
121 set_irq_chip(i, &int2_chip);
122 set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
127 * Disable interrupts
129 clps_writel(0, INTMR1);
130 clps_writel(0, INTMR2);
133 * Clear down any pending interrupts
135 clps_writel(0, COEOI);
136 clps_writel(0, TC1EOI);
137 clps_writel(0, TC2EOI);
138 clps_writel(0, RTCEOI);
139 clps_writel(0, TEOI);
140 clps_writel(0, UMSEOI);
141 clps_writel(0, SYNCIO);
142 clps_writel(0, KBDEOI);