blob: 7aca7d5375e5cb4917eb23c705c18868cadb2f2f [file] [log] [blame]
Pete Popovbdf21b12005-07-14 17:47:57 +00001/*
2 *
3 * Copyright (C) 2005 Embedded Alley Solutions, Inc
4 * Ported to 2.6.
5 *
6 * Per Hallsmark, per.hallsmark@mvista.com
7 * Copyright (C) 2000, 2001 MIPS Technologies, Inc.
8 * Copyright (C) 2001 Ralf Baechle
9 *
10 * Cleaned up and bug fixing: Pete Popov, ppopov@embeddedalley.com
11 *
12 * This program is free software; you can distribute it and/or modify it
13 * under the terms of the GNU General Public License (Version 2) as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 *
25 */
Ralf Baechle937a8012006-10-07 19:44:33 +010026#include <linux/compiler.h>
Pete Popovbdf21b12005-07-14 17:47:57 +000027#include <linux/init.h>
28#include <linux/irq.h>
29#include <linux/sched.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32#include <linux/kernel_stat.h>
33#include <linux/random.h>
34#include <linux/module.h>
35
36#include <asm/io.h>
Pete Popovbdf21b12005-07-14 17:47:57 +000037#include <int.h>
38#include <uart.h>
39
Pete Popovbdf21b12005-07-14 17:47:57 +000040/* default prio for interrupts */
41/* first one is a no-no so therefore always prio 0 (disabled) */
42static char gic_prio[PNX8550_INT_GIC_TOTINT] = {
43 0, 1, 1, 1, 1, 15, 1, 1, 1, 1, // 0 - 9
44 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 10 - 19
45 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 20 - 29
46 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 30 - 39
47 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 40 - 49
48 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, // 50 - 59
49 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 60 - 69
50 1 // 70
51};
52
Ralf Baechle937a8012006-10-07 19:44:33 +010053static void hw0_irqdispatch(int irq)
Pete Popovbdf21b12005-07-14 17:47:57 +000054{
55 /* find out which interrupt */
56 irq = PNX8550_GIC_VECTOR_0 >> 3;
57
58 if (irq == 0) {
59 printk("hw0_irqdispatch: irq 0, spurious interrupt?\n");
60 return;
61 }
Ralf Baechle937a8012006-10-07 19:44:33 +010062 do_IRQ(PNX8550_INT_GIC_MIN + irq);
Pete Popovbdf21b12005-07-14 17:47:57 +000063}
64
65
Ralf Baechle937a8012006-10-07 19:44:33 +010066static void timer_irqdispatch(int irq)
Pete Popovbdf21b12005-07-14 17:47:57 +000067{
68 irq = (0x01c0 & read_c0_config7()) >> 6;
69
Ralf Baechle937a8012006-10-07 19:44:33 +010070 if (unlikely(irq == 0)) {
Pete Popovbdf21b12005-07-14 17:47:57 +000071 printk("timer_irqdispatch: irq 0, spurious interrupt?\n");
72 return;
73 }
74
Ralf Baechle937a8012006-10-07 19:44:33 +010075 if (irq & 0x1)
76 do_IRQ(PNX8550_INT_TIMER1);
77 if (irq & 0x2)
78 do_IRQ(PNX8550_INT_TIMER2);
79 if (irq & 0x4)
80 do_IRQ(PNX8550_INT_TIMER3);
Pete Popovbdf21b12005-07-14 17:47:57 +000081}
82
Ralf Baechle937a8012006-10-07 19:44:33 +010083asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010084{
Thiemo Seufer119537c2007-03-19 00:13:37 +000085 unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010086
87 if (pending & STATUSF_IP2)
Ralf Baechle937a8012006-10-07 19:44:33 +010088 hw0_irqdispatch(2);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010089 else if (pending & STATUSF_IP7) {
90 if (read_c0_config7() & 0x01c0)
Ralf Baechle937a8012006-10-07 19:44:33 +010091 timer_irqdispatch(7);
Thiemo Seufer119537c2007-03-19 00:13:37 +000092 } else
93 spurious_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010094}
95
Pete Popovbdf21b12005-07-14 17:47:57 +000096static inline void modify_cp0_intmask(unsigned clr_mask, unsigned set_mask)
97{
98 unsigned long status = read_c0_status();
99
100 status &= ~((clr_mask & 0xFF) << 8);
101 status |= (set_mask & 0xFF) << 8;
102
103 write_c0_status(status);
104}
105
106static inline void mask_gic_int(unsigned int irq_nr)
107{
108 /* interrupt disabled, bit 26(WE_ENABLE)=1 and bit 16(enable)=0 */
109 PNX8550_GIC_REQ(irq_nr) = 1<<28; /* set priority to 0 */
110}
111
112static inline void unmask_gic_int(unsigned int irq_nr)
113{
114 /* set prio mask to lower four bits and enable interrupt */
115 PNX8550_GIC_REQ(irq_nr) = (1<<26 | 1<<16) | (1<<28) | gic_prio[irq_nr];
116}
117
118static inline void mask_irq(unsigned int irq_nr)
119{
120 if ((PNX8550_INT_CP0_MIN <= irq_nr) && (irq_nr <= PNX8550_INT_CP0_MAX)) {
121 modify_cp0_intmask(1 << irq_nr, 0);
122 } else if ((PNX8550_INT_GIC_MIN <= irq_nr) &&
123 (irq_nr <= PNX8550_INT_GIC_MAX)) {
124 mask_gic_int(irq_nr - PNX8550_INT_GIC_MIN);
125 } else if ((PNX8550_INT_TIMER_MIN <= irq_nr) &&
126 (irq_nr <= PNX8550_INT_TIMER_MAX)) {
127 modify_cp0_intmask(1 << 7, 0);
128 } else {
129 printk("mask_irq: irq %d doesn't exist!\n", irq_nr);
130 }
131}
132
133static inline void unmask_irq(unsigned int irq_nr)
134{
135 if ((PNX8550_INT_CP0_MIN <= irq_nr) && (irq_nr <= PNX8550_INT_CP0_MAX)) {
136 modify_cp0_intmask(0, 1 << irq_nr);
137 } else if ((PNX8550_INT_GIC_MIN <= irq_nr) &&
138 (irq_nr <= PNX8550_INT_GIC_MAX)) {
139 unmask_gic_int(irq_nr - PNX8550_INT_GIC_MIN);
140 } else if ((PNX8550_INT_TIMER_MIN <= irq_nr) &&
141 (irq_nr <= PNX8550_INT_TIMER_MAX)) {
142 modify_cp0_intmask(0, 1 << 7);
143 } else {
144 printk("mask_irq: irq %d doesn't exist!\n", irq_nr);
145 }
146}
147
Pete Popovbdf21b12005-07-14 17:47:57 +0000148int pnx8550_set_gic_priority(int irq, int priority)
149{
150 int gic_irq = irq-PNX8550_INT_GIC_MIN;
151 int prev_priority = PNX8550_GIC_REQ(gic_irq) & 0xf;
152
153 gic_prio[gic_irq] = priority;
154 PNX8550_GIC_REQ(gic_irq) |= (0x10000000 | gic_prio[gic_irq]);
155
156 return prev_priority;
157}
158
Ralf Baechle94dee172006-07-02 14:41:42 +0100159static struct irq_chip level_irq_type = {
Atsushi Nemoto70d21cd2007-01-15 00:07:25 +0900160 .name = "PNX Level IRQ",
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900161 .ack = mask_irq,
162 .mask = mask_irq,
163 .mask_ack = mask_irq,
164 .unmask = unmask_irq,
Pete Popovbdf21b12005-07-14 17:47:57 +0000165};
166
167static struct irqaction gic_action = {
168 .handler = no_action,
Thomas Gleixnerf40298f2006-07-01 19:29:20 -0700169 .flags = IRQF_DISABLED,
Pete Popovbdf21b12005-07-14 17:47:57 +0000170 .name = "GIC",
171};
172
173static struct irqaction timer_action = {
174 .handler = no_action,
Wu Zhangjinc49e38c2009-10-10 23:26:35 +0800175 .flags = IRQF_DISABLED | IRQF_TIMER,
Pete Popovbdf21b12005-07-14 17:47:57 +0000176 .name = "Timer",
177};
178
179void __init arch_init_irq(void)
180{
181 int i;
182 int configPR;
183
Pete Popovbdf21b12005-07-14 17:47:57 +0000184 for (i = 0; i < PNX8550_INT_CP0_TOTINT; i++) {
Atsushi Nemoto14178362006-11-14 01:13:18 +0900185 set_irq_chip_and_handler(i, &level_irq_type, handle_level_irq);
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900186 mask_irq(i); /* mask the irq just in case */
Pete Popovbdf21b12005-07-14 17:47:57 +0000187 }
188
189 /* init of GIC/IPC interrupts */
190 /* should be done before cp0 since cp0 init enables the GIC int */
191 for (i = PNX8550_INT_GIC_MIN; i <= PNX8550_INT_GIC_MAX; i++) {
192 int gic_int_line = i - PNX8550_INT_GIC_MIN;
193 if (gic_int_line == 0 )
194 continue; // don't fiddle with int 0
195 /*
196 * enable change of TARGET, ENABLE and ACTIVE_LOW bits
197 * set TARGET 0 to route through hw0 interrupt
198 * set ACTIVE_LOW 0 active high (correct?)
199 *
200 * We really should setup an interrupt description table
201 * to do this nicely.
202 * Note, PCI INTA is active low on the bus, but inverted
203 * in the GIC, so to us it's active high.
204 */
Ralf Baechleaea0e582007-03-13 13:37:17 +0000205 PNX8550_GIC_REQ(i - PNX8550_INT_GIC_MIN) = 0x1E000000;
Pete Popovbdf21b12005-07-14 17:47:57 +0000206
207 /* mask/priority is still 0 so we will not get any
208 * interrupts until it is unmasked */
209
Atsushi Nemoto14178362006-11-14 01:13:18 +0900210 set_irq_chip_and_handler(i, &level_irq_type, handle_level_irq);
Pete Popovbdf21b12005-07-14 17:47:57 +0000211 }
212
213 /* Priority level 0 */
214 PNX8550_GIC_PRIMASK_0 = PNX8550_GIC_PRIMASK_1 = 0;
215
216 /* Set int vector table address */
217 PNX8550_GIC_VECTOR_0 = PNX8550_GIC_VECTOR_1 = 0;
218
Atsushi Nemoto14178362006-11-14 01:13:18 +0900219 set_irq_chip_and_handler(MIPS_CPU_GIC_IRQ, &level_irq_type,
220 handle_level_irq);
Pete Popovbdf21b12005-07-14 17:47:57 +0000221 setup_irq(MIPS_CPU_GIC_IRQ, &gic_action);
222
223 /* init of Timer interrupts */
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900224 for (i = PNX8550_INT_TIMER_MIN; i <= PNX8550_INT_TIMER_MAX; i++)
Atsushi Nemoto14178362006-11-14 01:13:18 +0900225 set_irq_chip_and_handler(i, &level_irq_type, handle_level_irq);
Pete Popovbdf21b12005-07-14 17:47:57 +0000226
227 /* Stop Timer 1-3 */
228 configPR = read_c0_config7();
229 configPR |= 0x00000038;
230 write_c0_config7(configPR);
231
Atsushi Nemoto14178362006-11-14 01:13:18 +0900232 set_irq_chip_and_handler(MIPS_CPU_TIMER_IRQ, &level_irq_type,
233 handle_level_irq);
Pete Popovbdf21b12005-07-14 17:47:57 +0000234 setup_irq(MIPS_CPU_TIMER_IRQ, &timer_action);
235}
236
237EXPORT_SYMBOL(pnx8550_set_gic_priority);