blob: 67700e6c90c75893742a19f78b67d85555dfdaa5 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Michael Hennerichcfefe3c2008-02-09 04:12:37 +08002 * File: arch/blackfin/mach-common/ints-priority.c
Bryan Wu1394f032007-05-06 14:50:22 -07003 * Based on:
4 * Author:
5 *
6 * Created: ?
Simon Arlottd2d50aa2007-06-11 15:31:30 +08007 * Description: Set up the interrupt priorities
Bryan Wu1394f032007-05-06 14:50:22 -07008 *
9 * Modified:
10 * 1996 Roman Zippel
11 * 1999 D. Jeff Dionne <jeff@uclinux.org>
12 * 2000-2001 Lineo, Inc. D. Jefff Dionne <jeff@lineo.ca>
13 * 2002 Arcturus Networks Inc. MaTed <mated@sympatico.ca>
14 * 2003 Metrowerks/Motorola
15 * 2003 Bas Vermeulen <bas@buyways.nl>
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080016 * Copyright 2004-2008 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -070017 *
18 * Bugs: Enter bugs at http://blackfin.uclinux.org/
19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, see the file COPYING, or write
32 * to the Free Software Foundation, Inc.,
33 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
34 */
35
36#include <linux/module.h>
37#include <linux/kernel_stat.h>
38#include <linux/seq_file.h>
39#include <linux/irq.h>
40#ifdef CONFIG_KGDB
41#include <linux/kgdb.h>
42#endif
43#include <asm/traps.h>
44#include <asm/blackfin.h>
45#include <asm/gpio.h>
46#include <asm/irq_handler.h>
47
48#ifdef BF537_FAMILY
49# define BF537_GENERIC_ERROR_INT_DEMUX
50#else
51# undef BF537_GENERIC_ERROR_INT_DEMUX
52#endif
53
54/*
55 * NOTES:
56 * - we have separated the physical Hardware interrupt from the
57 * levels that the LINUX kernel sees (see the description in irq.h)
58 * -
59 */
60
Mike Frysingera99bbcc2007-10-22 00:19:31 +080061/* Initialize this to an actual value to force it into the .data
62 * section so that we know it is properly initialized at entry into
63 * the kernel but before bss is initialized to zero (which is where
64 * it would live otherwise). The 0x1f magic represents the IRQs we
65 * cannot actually mask out in hardware.
66 */
67unsigned long irq_flags = 0x1f;
Bryan Wu1394f032007-05-06 14:50:22 -070068
69/* The number of spurious interrupts */
70atomic_t num_spurious;
71
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080072#ifdef CONFIG_PM
73unsigned long bfin_sic_iwr[3]; /* Up to 3 SIC_IWRx registers */
Michael Hennerich4a88d0c2008-08-05 17:38:41 +080074unsigned vr_wakeup;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080075#endif
76
Bryan Wu1394f032007-05-06 14:50:22 -070077struct ivgx {
Michael Hennerich464abc52008-02-25 13:50:20 +080078 /* irq number for request_irq, available in mach-bf5xx/irq.h */
Roy Huang24a07a12007-07-12 22:41:45 +080079 unsigned int irqno;
Bryan Wu1394f032007-05-06 14:50:22 -070080 /* corresponding bit in the SIC_ISR register */
Roy Huang24a07a12007-07-12 22:41:45 +080081 unsigned int isrflag;
Bryan Wu1394f032007-05-06 14:50:22 -070082} ivg_table[NR_PERI_INTS];
83
84struct ivg_slice {
85 /* position of first irq in ivg_table for given ivg */
86 struct ivgx *ifirst;
87 struct ivgx *istop;
88} ivg7_13[IVG13 - IVG7 + 1];
89
Bryan Wu1394f032007-05-06 14:50:22 -070090
91/*
92 * Search SIC_IAR and fill tables with the irqvalues
93 * and their positions in the SIC_ISR register.
94 */
95static void __init search_IAR(void)
96{
97 unsigned ivg, irq_pos = 0;
98 for (ivg = 0; ivg <= IVG13 - IVG7; ivg++) {
99 int irqn;
100
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800101 ivg7_13[ivg].istop = ivg7_13[ivg].ifirst = &ivg_table[irq_pos];
Bryan Wu1394f032007-05-06 14:50:22 -0700102
103 for (irqn = 0; irqn < NR_PERI_INTS; irqn++) {
104 int iar_shift = (irqn & 7) * 4;
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800105 if (ivg == (0xf &
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800106#if defined(CONFIG_BF52x) || defined(CONFIG_BF538) || defined(CONFIG_BF539)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800107 bfin_read32((unsigned long *)SIC_IAR0 +
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800108 ((irqn % 32) >> 3) + ((irqn / 32) *
109 ((SIC_IAR4 - SIC_IAR0) / 4))) >> iar_shift)) {
Michael Hennerich59003142007-10-21 16:54:27 +0800110#else
111 bfin_read32((unsigned long *)SIC_IAR0 +
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800112 (irqn >> 3)) >> iar_shift)) {
Michael Hennerich59003142007-10-21 16:54:27 +0800113#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700114 ivg_table[irq_pos].irqno = IVG7 + irqn;
Roy Huang24a07a12007-07-12 22:41:45 +0800115 ivg_table[irq_pos].isrflag = 1 << (irqn % 32);
Bryan Wu1394f032007-05-06 14:50:22 -0700116 ivg7_13[ivg].istop++;
117 irq_pos++;
118 }
119 }
120 }
121}
122
123/*
Michael Hennerich464abc52008-02-25 13:50:20 +0800124 * This is for core internal IRQs
Bryan Wu1394f032007-05-06 14:50:22 -0700125 */
126
Michael Hennerich464abc52008-02-25 13:50:20 +0800127static void bfin_ack_noop(unsigned int irq)
Bryan Wu1394f032007-05-06 14:50:22 -0700128{
129 /* Dummy function. */
130}
131
132static void bfin_core_mask_irq(unsigned int irq)
133{
134 irq_flags &= ~(1 << irq);
135 if (!irqs_disabled())
136 local_irq_enable();
137}
138
139static void bfin_core_unmask_irq(unsigned int irq)
140{
141 irq_flags |= 1 << irq;
142 /*
143 * If interrupts are enabled, IMASK must contain the same value
144 * as irq_flags. Make sure that invariant holds. If interrupts
145 * are currently disabled we need not do anything; one of the
146 * callers will take care of setting IMASK to the proper value
147 * when reenabling interrupts.
148 * local_irq_enable just does "STI irq_flags", so it's exactly
149 * what we need.
150 */
151 if (!irqs_disabled())
152 local_irq_enable();
153 return;
154}
155
156static void bfin_internal_mask_irq(unsigned int irq)
157{
Michael Hennerich59003142007-10-21 16:54:27 +0800158#ifdef CONFIG_BF53x
Bryan Wu1394f032007-05-06 14:50:22 -0700159 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
Michael Hennerich464abc52008-02-25 13:50:20 +0800160 ~(1 << SIC_SYSIRQ(irq)));
Roy Huang24a07a12007-07-12 22:41:45 +0800161#else
162 unsigned mask_bank, mask_bit;
Michael Hennerich464abc52008-02-25 13:50:20 +0800163 mask_bank = SIC_SYSIRQ(irq) / 32;
164 mask_bit = SIC_SYSIRQ(irq) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800165 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) &
166 ~(1 << mask_bit));
Roy Huang24a07a12007-07-12 22:41:45 +0800167#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700168 SSYNC();
169}
170
171static void bfin_internal_unmask_irq(unsigned int irq)
172{
Michael Hennerich59003142007-10-21 16:54:27 +0800173#ifdef CONFIG_BF53x
Bryan Wu1394f032007-05-06 14:50:22 -0700174 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() |
Michael Hennerich464abc52008-02-25 13:50:20 +0800175 (1 << SIC_SYSIRQ(irq)));
Roy Huang24a07a12007-07-12 22:41:45 +0800176#else
177 unsigned mask_bank, mask_bit;
Michael Hennerich464abc52008-02-25 13:50:20 +0800178 mask_bank = SIC_SYSIRQ(irq) / 32;
179 mask_bit = SIC_SYSIRQ(irq) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800180 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) |
181 (1 << mask_bit));
Roy Huang24a07a12007-07-12 22:41:45 +0800182#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700183 SSYNC();
184}
185
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800186#ifdef CONFIG_PM
187int bfin_internal_set_wake(unsigned int irq, unsigned int state)
188{
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800189 unsigned bank, bit, wakeup = 0;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800190 unsigned long flags;
Michael Hennerich464abc52008-02-25 13:50:20 +0800191 bank = SIC_SYSIRQ(irq) / 32;
192 bit = SIC_SYSIRQ(irq) % 32;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800193
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800194 switch (irq) {
195#ifdef IRQ_RTC
196 case IRQ_RTC:
197 wakeup |= WAKE;
198 break;
199#endif
200#ifdef IRQ_CAN0_RX
201 case IRQ_CAN0_RX:
202 wakeup |= CANWE;
203 break;
204#endif
205#ifdef IRQ_CAN1_RX
206 case IRQ_CAN1_RX:
207 wakeup |= CANWE;
208 break;
209#endif
210#ifdef IRQ_USB_INT0
211 case IRQ_USB_INT0:
212 wakeup |= USBWE;
213 break;
214#endif
215#ifdef IRQ_KEY
216 case IRQ_KEY:
217 wakeup |= KPADWE;
218 break;
219#endif
Michael Hennerichd310fb42008-08-28 17:32:01 +0800220#ifdef CONFIG_BF54x
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800221 case IRQ_CNT:
222 wakeup |= ROTWE;
223 break;
224#endif
225 default:
226 break;
227 }
228
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800229 local_irq_save(flags);
230
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800231 if (state) {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800232 bfin_sic_iwr[bank] |= (1 << bit);
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800233 vr_wakeup |= wakeup;
234
235 } else {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800236 bfin_sic_iwr[bank] &= ~(1 << bit);
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800237 vr_wakeup &= ~wakeup;
238 }
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800239
240 local_irq_restore(flags);
241
242 return 0;
243}
244#endif
245
Bryan Wu1394f032007-05-06 14:50:22 -0700246static struct irq_chip bfin_core_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800247 .name = "CORE",
Michael Hennerich464abc52008-02-25 13:50:20 +0800248 .ack = bfin_ack_noop,
Bryan Wu1394f032007-05-06 14:50:22 -0700249 .mask = bfin_core_mask_irq,
250 .unmask = bfin_core_unmask_irq,
251};
252
253static struct irq_chip bfin_internal_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800254 .name = "INTN",
Michael Hennerich464abc52008-02-25 13:50:20 +0800255 .ack = bfin_ack_noop,
Bryan Wu1394f032007-05-06 14:50:22 -0700256 .mask = bfin_internal_mask_irq,
257 .unmask = bfin_internal_unmask_irq,
Michael Hennerichce3b7bb2008-02-25 13:48:47 +0800258 .mask_ack = bfin_internal_mask_irq,
259 .disable = bfin_internal_mask_irq,
260 .enable = bfin_internal_unmask_irq,
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800261#ifdef CONFIG_PM
262 .set_wake = bfin_internal_set_wake,
263#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700264};
265
266#ifdef BF537_GENERIC_ERROR_INT_DEMUX
267static int error_int_mask;
268
Bryan Wu1394f032007-05-06 14:50:22 -0700269static void bfin_generic_error_mask_irq(unsigned int irq)
270{
271 error_int_mask &= ~(1L << (irq - IRQ_PPI_ERROR));
272
Michael Hennerich464abc52008-02-25 13:50:20 +0800273 if (!error_int_mask)
274 bfin_internal_mask_irq(IRQ_GENERIC_ERROR);
Bryan Wu1394f032007-05-06 14:50:22 -0700275}
276
277static void bfin_generic_error_unmask_irq(unsigned int irq)
278{
Michael Hennerich464abc52008-02-25 13:50:20 +0800279 bfin_internal_unmask_irq(IRQ_GENERIC_ERROR);
Bryan Wu1394f032007-05-06 14:50:22 -0700280 error_int_mask |= 1L << (irq - IRQ_PPI_ERROR);
281}
282
283static struct irq_chip bfin_generic_error_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800284 .name = "ERROR",
Michael Hennerich464abc52008-02-25 13:50:20 +0800285 .ack = bfin_ack_noop,
286 .mask_ack = bfin_generic_error_mask_irq,
Bryan Wu1394f032007-05-06 14:50:22 -0700287 .mask = bfin_generic_error_mask_irq,
288 .unmask = bfin_generic_error_unmask_irq,
289};
290
291static void bfin_demux_error_irq(unsigned int int_err_irq,
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800292 struct irq_desc *inta_desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700293{
294 int irq = 0;
295
296 SSYNC();
297
298#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
299 if (bfin_read_EMAC_SYSTAT() & EMAC_ERR_MASK)
300 irq = IRQ_MAC_ERROR;
301 else
302#endif
303 if (bfin_read_SPORT0_STAT() & SPORT_ERR_MASK)
304 irq = IRQ_SPORT0_ERROR;
305 else if (bfin_read_SPORT1_STAT() & SPORT_ERR_MASK)
306 irq = IRQ_SPORT1_ERROR;
307 else if (bfin_read_PPI_STATUS() & PPI_ERR_MASK)
308 irq = IRQ_PPI_ERROR;
309 else if (bfin_read_CAN_GIF() & CAN_ERR_MASK)
310 irq = IRQ_CAN_ERROR;
311 else if (bfin_read_SPI_STAT() & SPI_ERR_MASK)
312 irq = IRQ_SPI_ERROR;
313 else if ((bfin_read_UART0_IIR() & UART_ERR_MASK_STAT1) &&
314 (bfin_read_UART0_IIR() & UART_ERR_MASK_STAT0))
315 irq = IRQ_UART0_ERROR;
316 else if ((bfin_read_UART1_IIR() & UART_ERR_MASK_STAT1) &&
317 (bfin_read_UART1_IIR() & UART_ERR_MASK_STAT0))
318 irq = IRQ_UART1_ERROR;
319
320 if (irq) {
321 if (error_int_mask & (1L << (irq - IRQ_PPI_ERROR))) {
322 struct irq_desc *desc = irq_desc + irq;
323 desc->handle_irq(irq, desc);
324 } else {
325
326 switch (irq) {
327 case IRQ_PPI_ERROR:
328 bfin_write_PPI_STATUS(PPI_ERR_MASK);
329 break;
330#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
331 case IRQ_MAC_ERROR:
332 bfin_write_EMAC_SYSTAT(EMAC_ERR_MASK);
333 break;
334#endif
335 case IRQ_SPORT0_ERROR:
336 bfin_write_SPORT0_STAT(SPORT_ERR_MASK);
337 break;
338
339 case IRQ_SPORT1_ERROR:
340 bfin_write_SPORT1_STAT(SPORT_ERR_MASK);
341 break;
342
343 case IRQ_CAN_ERROR:
344 bfin_write_CAN_GIS(CAN_ERR_MASK);
345 break;
346
347 case IRQ_SPI_ERROR:
348 bfin_write_SPI_STAT(SPI_ERR_MASK);
349 break;
350
351 default:
352 break;
353 }
354
355 pr_debug("IRQ %d:"
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800356 " MASKED PERIPHERAL ERROR INTERRUPT ASSERTED\n",
357 irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700358 }
359 } else
360 printk(KERN_ERR
361 "%s : %s : LINE %d :\nIRQ ?: PERIPHERAL ERROR"
362 " INTERRUPT ASSERTED BUT NO SOURCE FOUND\n",
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800363 __func__, __FILE__, __LINE__);
Bryan Wu1394f032007-05-06 14:50:22 -0700364
Bryan Wu1394f032007-05-06 14:50:22 -0700365}
366#endif /* BF537_GENERIC_ERROR_INT_DEMUX */
367
Graf Yangbfd15112008-10-08 18:02:44 +0800368static inline void bfin_set_irq_handler(unsigned irq, irq_flow_handler_t handle)
369{
370 struct irq_desc *desc = irq_desc + irq;
371 /* May not call generic set_irq_handler() due to spinlock
372 recursion. */
373 desc->handle_irq = handle;
374}
375
Mike Frysingera055b2b2007-11-15 21:12:32 +0800376#if !defined(CONFIG_BF54x)
Bryan Wu1394f032007-05-06 14:50:22 -0700377
378static unsigned short gpio_enabled[gpio_bank(MAX_BLACKFIN_GPIOS)];
379static unsigned short gpio_edge_triggered[gpio_bank(MAX_BLACKFIN_GPIOS)];
380
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800381extern void bfin_gpio_irq_prepare(unsigned gpio);
Michael Hennerich6fce6a82007-12-24 16:56:12 +0800382
Bryan Wu1394f032007-05-06 14:50:22 -0700383static void bfin_gpio_ack_irq(unsigned int irq)
384{
385 u16 gpionr = irq - IRQ_PF0;
386
387 if (gpio_edge_triggered[gpio_bank(gpionr)] & gpio_bit(gpionr)) {
388 set_gpio_data(gpionr, 0);
389 SSYNC();
390 }
391}
392
393static void bfin_gpio_mask_ack_irq(unsigned int irq)
394{
395 u16 gpionr = irq - IRQ_PF0;
396
397 if (gpio_edge_triggered[gpio_bank(gpionr)] & gpio_bit(gpionr)) {
398 set_gpio_data(gpionr, 0);
399 SSYNC();
400 }
401
402 set_gpio_maska(gpionr, 0);
403 SSYNC();
404}
405
406static void bfin_gpio_mask_irq(unsigned int irq)
407{
408 set_gpio_maska(irq - IRQ_PF0, 0);
409 SSYNC();
410}
411
412static void bfin_gpio_unmask_irq(unsigned int irq)
413{
414 set_gpio_maska(irq - IRQ_PF0, 1);
415 SSYNC();
416}
417
418static unsigned int bfin_gpio_irq_startup(unsigned int irq)
419{
Bryan Wu1394f032007-05-06 14:50:22 -0700420 u16 gpionr = irq - IRQ_PF0;
421
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800422 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr)))
423 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700424
425 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
426 bfin_gpio_unmask_irq(irq);
427
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800428 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700429}
430
431static void bfin_gpio_irq_shutdown(unsigned int irq)
432{
433 bfin_gpio_mask_irq(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700434 gpio_enabled[gpio_bank(irq - IRQ_PF0)] &= ~gpio_bit(irq - IRQ_PF0);
435}
436
437static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
438{
Bryan Wu1394f032007-05-06 14:50:22 -0700439 u16 gpionr = irq - IRQ_PF0;
440
441 if (type == IRQ_TYPE_PROBE) {
442 /* only probe unenabled GPIO interrupt lines */
443 if (gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))
444 return 0;
445 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
446 }
447
448 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800449 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800450 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr)))
451 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700452
453 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
454 } else {
455 gpio_enabled[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
456 return 0;
457 }
458
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800459 set_gpio_inen(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700460 set_gpio_dir(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700461
462 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
463 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
464 set_gpio_both(gpionr, 1);
465 else
466 set_gpio_both(gpionr, 0);
467
468 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
469 set_gpio_polar(gpionr, 1); /* low or falling edge denoted by one */
470 else
471 set_gpio_polar(gpionr, 0); /* high or rising edge denoted by zero */
472
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800473 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
474 set_gpio_edge(gpionr, 1);
475 set_gpio_inen(gpionr, 1);
476 gpio_edge_triggered[gpio_bank(gpionr)] |= gpio_bit(gpionr);
477 set_gpio_data(gpionr, 0);
478
479 } else {
480 set_gpio_edge(gpionr, 0);
481 gpio_edge_triggered[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
482 set_gpio_inen(gpionr, 1);
483 }
484
Bryan Wu1394f032007-05-06 14:50:22 -0700485 SSYNC();
486
487 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
Graf Yangbfd15112008-10-08 18:02:44 +0800488 bfin_set_irq_handler(irq, handle_edge_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700489 else
Graf Yangbfd15112008-10-08 18:02:44 +0800490 bfin_set_irq_handler(irq, handle_level_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700491
492 return 0;
493}
494
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800495#ifdef CONFIG_PM
496int bfin_gpio_set_wake(unsigned int irq, unsigned int state)
497{
498 unsigned gpio = irq_to_gpio(irq);
499
500 if (state)
501 gpio_pm_wakeup_request(gpio, PM_WAKE_IGNORE);
502 else
503 gpio_pm_wakeup_free(gpio);
504
505 return 0;
506}
507#endif
508
Bryan Wu1394f032007-05-06 14:50:22 -0700509static struct irq_chip bfin_gpio_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800510 .name = "GPIO",
Bryan Wu1394f032007-05-06 14:50:22 -0700511 .ack = bfin_gpio_ack_irq,
512 .mask = bfin_gpio_mask_irq,
513 .mask_ack = bfin_gpio_mask_ack_irq,
514 .unmask = bfin_gpio_unmask_irq,
Michael Hennerich1f2d1862008-07-14 16:31:22 +0800515 .disable = bfin_gpio_mask_irq,
516 .enable = bfin_gpio_unmask_irq,
Bryan Wu1394f032007-05-06 14:50:22 -0700517 .set_type = bfin_gpio_irq_type,
518 .startup = bfin_gpio_irq_startup,
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800519 .shutdown = bfin_gpio_irq_shutdown,
520#ifdef CONFIG_PM
521 .set_wake = bfin_gpio_set_wake,
522#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700523};
524
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800525static void bfin_demux_gpio_irq(unsigned int inta_irq,
526 struct irq_desc *desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700527{
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800528 unsigned int i, gpio, mask, irq, search = 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700529
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800530 switch (inta_irq) {
531#if defined(CONFIG_BF53x)
532 case IRQ_PROG_INTA:
533 irq = IRQ_PF0;
534 search = 1;
535 break;
536# if defined(BF537_FAMILY) && !(defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
537 case IRQ_MAC_RX:
538 irq = IRQ_PH0;
539 break;
540# endif
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800541#elif defined(CONFIG_BF538) || defined(CONFIG_BF539)
542 case IRQ_PORTF_INTA:
543 irq = IRQ_PF0;
544 break;
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800545#elif defined(CONFIG_BF52x)
546 case IRQ_PORTF_INTA:
547 irq = IRQ_PF0;
548 break;
549 case IRQ_PORTG_INTA:
550 irq = IRQ_PG0;
551 break;
552 case IRQ_PORTH_INTA:
553 irq = IRQ_PH0;
554 break;
555#elif defined(CONFIG_BF561)
556 case IRQ_PROG0_INTA:
557 irq = IRQ_PF0;
558 break;
559 case IRQ_PROG1_INTA:
560 irq = IRQ_PF16;
561 break;
562 case IRQ_PROG2_INTA:
563 irq = IRQ_PF32;
564 break;
565#endif
566 default:
567 BUG();
568 return;
Bryan Wu1394f032007-05-06 14:50:22 -0700569 }
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800570
571 if (search) {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800572 for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) {
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800573 irq += i;
574
575 mask = get_gpiop_data(i) &
576 (gpio_enabled[gpio_bank(i)] &
577 get_gpiop_maska(i));
578
579 while (mask) {
580 if (mask & 1) {
581 desc = irq_desc + irq;
582 desc->handle_irq(irq, desc);
583 }
584 irq++;
585 mask >>= 1;
586 }
587 }
588 } else {
589 gpio = irq_to_gpio(irq);
590 mask = get_gpiop_data(gpio) &
591 (gpio_enabled[gpio_bank(gpio)] &
592 get_gpiop_maska(gpio));
593
594 do {
595 if (mask & 1) {
596 desc = irq_desc + irq;
597 desc->handle_irq(irq, desc);
598 }
599 irq++;
600 mask >>= 1;
601 } while (mask);
602 }
603
Bryan Wu1394f032007-05-06 14:50:22 -0700604}
605
Mike Frysingera055b2b2007-11-15 21:12:32 +0800606#else /* CONFIG_BF54x */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800607
608#define NR_PINT_SYS_IRQS 4
609#define NR_PINT_BITS 32
610#define NR_PINTS 160
611#define IRQ_NOT_AVAIL 0xFF
612
613#define PINT_2_BANK(x) ((x) >> 5)
614#define PINT_2_BIT(x) ((x) & 0x1F)
615#define PINT_BIT(x) (1 << (PINT_2_BIT(x)))
616
617static unsigned char irq2pint_lut[NR_PINTS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800618static unsigned char pint2irq_lut[NR_PINT_SYS_IRQS * NR_PINT_BITS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800619
Michael Hennerich8baf5602007-12-24 18:51:34 +0800620static unsigned int gpio_both_edge_triggered[NR_PINT_SYS_IRQS];
621static unsigned short gpio_enabled[gpio_bank(MAX_BLACKFIN_GPIOS)];
622
623
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800624struct pin_int_t {
625 unsigned int mask_set;
626 unsigned int mask_clear;
627 unsigned int request;
628 unsigned int assign;
629 unsigned int edge_set;
630 unsigned int edge_clear;
631 unsigned int invert_set;
632 unsigned int invert_clear;
633 unsigned int pinstate;
634 unsigned int latch;
635};
636
637static struct pin_int_t *pint[NR_PINT_SYS_IRQS] = {
638 (struct pin_int_t *)PINT0_MASK_SET,
639 (struct pin_int_t *)PINT1_MASK_SET,
640 (struct pin_int_t *)PINT2_MASK_SET,
641 (struct pin_int_t *)PINT3_MASK_SET,
642};
643
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800644extern void bfin_gpio_irq_prepare(unsigned gpio);
645
Michael Hennerich464abc52008-02-25 13:50:20 +0800646inline unsigned short get_irq_base(u8 bank, u8 bmap)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800647{
648
649 u16 irq_base;
650
651 if (bank < 2) { /*PA-PB */
652 irq_base = IRQ_PA0 + bmap * 16;
653 } else { /*PC-PJ */
654 irq_base = IRQ_PC0 + bmap * 16;
655 }
656
657 return irq_base;
658
659}
660
661 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
662void init_pint_lut(void)
663{
664 u16 bank, bit, irq_base, bit_pos;
665 u32 pint_assign;
666 u8 bmap;
667
668 memset(irq2pint_lut, IRQ_NOT_AVAIL, sizeof(irq2pint_lut));
669
670 for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++) {
671
672 pint_assign = pint[bank]->assign;
673
674 for (bit = 0; bit < NR_PINT_BITS; bit++) {
675
676 bmap = (pint_assign >> ((bit / 8) * 8)) & 0xFF;
677
678 irq_base = get_irq_base(bank, bmap);
679
680 irq_base += (bit % 8) + ((bit / 8) & 1 ? 8 : 0);
681 bit_pos = bit + bank * NR_PINT_BITS;
682
Michael Henneriche3f23002007-07-12 16:39:29 +0800683 pint2irq_lut[bit_pos] = irq_base - SYS_IRQS;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800684 irq2pint_lut[irq_base - SYS_IRQS] = bit_pos;
685
686 }
687
688 }
689
690}
691
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800692static void bfin_gpio_ack_irq(unsigned int irq)
693{
694 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Hennerich8baf5602007-12-24 18:51:34 +0800695 u32 pintbit = PINT_BIT(pint_val);
696 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800697
Michael Hennerich8baf5602007-12-24 18:51:34 +0800698 if (unlikely(gpio_both_edge_triggered[bank] & pintbit)) {
699 if (pint[bank]->invert_set & pintbit)
700 pint[bank]->invert_clear = pintbit;
701 else
702 pint[bank]->invert_set = pintbit;
703 }
704 pint[bank]->request = pintbit;
705
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800706 SSYNC();
707}
708
709static void bfin_gpio_mask_ack_irq(unsigned int irq)
710{
711 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800712 u32 pintbit = PINT_BIT(pint_val);
713 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800714
Michael Hennerich8baf5602007-12-24 18:51:34 +0800715 if (unlikely(gpio_both_edge_triggered[bank] & pintbit)) {
716 if (pint[bank]->invert_set & pintbit)
717 pint[bank]->invert_clear = pintbit;
718 else
719 pint[bank]->invert_set = pintbit;
720 }
721
Michael Henneriche3f23002007-07-12 16:39:29 +0800722 pint[bank]->request = pintbit;
723 pint[bank]->mask_clear = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800724 SSYNC();
725}
726
727static void bfin_gpio_mask_irq(unsigned int irq)
728{
729 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
730
731 pint[PINT_2_BANK(pint_val)]->mask_clear = PINT_BIT(pint_val);
732 SSYNC();
733}
734
735static void bfin_gpio_unmask_irq(unsigned int irq)
736{
737 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800738 u32 pintbit = PINT_BIT(pint_val);
739 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800740
Michael Henneriche3f23002007-07-12 16:39:29 +0800741 pint[bank]->request = pintbit;
742 pint[bank]->mask_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800743 SSYNC();
744}
745
746static unsigned int bfin_gpio_irq_startup(unsigned int irq)
747{
Michael Hennerich8baf5602007-12-24 18:51:34 +0800748 u16 gpionr = irq_to_gpio(irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800749 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
750
Michael Hennerich50e163c2007-07-24 16:17:28 +0800751 if (pint_val == IRQ_NOT_AVAIL) {
752 printk(KERN_ERR
753 "GPIO IRQ %d :Not in PINT Assign table "
754 "Reconfigure Interrupt to Port Assignemt\n", irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800755 return -ENODEV;
Michael Hennerich50e163c2007-07-24 16:17:28 +0800756 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800757
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800758 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr)))
759 bfin_gpio_irq_prepare(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800760
761 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
762 bfin_gpio_unmask_irq(irq);
763
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800764 return 0;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800765}
766
767static void bfin_gpio_irq_shutdown(unsigned int irq)
768{
Michael Hennerich8baf5602007-12-24 18:51:34 +0800769 u16 gpionr = irq_to_gpio(irq);
770
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800771 bfin_gpio_mask_irq(irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800772 gpio_enabled[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800773}
774
775static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
776{
777
Michael Hennerich8baf5602007-12-24 18:51:34 +0800778 u16 gpionr = irq_to_gpio(irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800779 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800780 u32 pintbit = PINT_BIT(pint_val);
781 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800782
783 if (pint_val == IRQ_NOT_AVAIL)
784 return -ENODEV;
785
786 if (type == IRQ_TYPE_PROBE) {
787 /* only probe unenabled GPIO interrupt lines */
788 if (gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))
789 return 0;
790 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
791 }
792
793 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
794 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800795 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr)))
796 bfin_gpio_irq_prepare(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800797
798 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
799 } else {
800 gpio_enabled[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
801 return 0;
802 }
803
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800804 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
Michael Henneriche3f23002007-07-12 16:39:29 +0800805 pint[bank]->invert_set = pintbit; /* low or falling edge denoted by one */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800806 else
Michael Hennerich8baf5602007-12-24 18:51:34 +0800807 pint[bank]->invert_clear = pintbit; /* high or rising edge denoted by zero */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800808
Michael Hennerich8baf5602007-12-24 18:51:34 +0800809 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
810 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
811
812 gpio_both_edge_triggered[bank] |= pintbit;
813
814 if (gpio_get_value(gpionr))
815 pint[bank]->invert_set = pintbit;
816 else
817 pint[bank]->invert_clear = pintbit;
818 } else {
819 gpio_both_edge_triggered[bank] &= ~pintbit;
820 }
821
822 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
823 pint[bank]->edge_set = pintbit;
Graf Yangbfd15112008-10-08 18:02:44 +0800824 bfin_set_irq_handler(irq, handle_edge_irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800825 } else {
826 pint[bank]->edge_clear = pintbit;
Graf Yangbfd15112008-10-08 18:02:44 +0800827 bfin_set_irq_handler(irq, handle_level_irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800828 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800829
830 SSYNC();
831
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800832 return 0;
833}
834
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800835#ifdef CONFIG_PM
836u32 pint_saved_masks[NR_PINT_SYS_IRQS];
837u32 pint_wakeup_masks[NR_PINT_SYS_IRQS];
838
839int bfin_gpio_set_wake(unsigned int irq, unsigned int state)
840{
841 u32 pint_irq;
842 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
843 u32 bank = PINT_2_BANK(pint_val);
844 u32 pintbit = PINT_BIT(pint_val);
845
846 switch (bank) {
847 case 0:
848 pint_irq = IRQ_PINT0;
849 break;
850 case 2:
851 pint_irq = IRQ_PINT2;
852 break;
853 case 3:
854 pint_irq = IRQ_PINT3;
855 break;
856 case 1:
857 pint_irq = IRQ_PINT1;
858 break;
859 default:
860 return -EINVAL;
861 }
862
863 bfin_internal_set_wake(pint_irq, state);
864
865 if (state)
866 pint_wakeup_masks[bank] |= pintbit;
867 else
868 pint_wakeup_masks[bank] &= ~pintbit;
869
870 return 0;
871}
872
873u32 bfin_pm_setup(void)
874{
875 u32 val, i;
876
877 for (i = 0; i < NR_PINT_SYS_IRQS; i++) {
878 val = pint[i]->mask_clear;
879 pint_saved_masks[i] = val;
880 if (val ^ pint_wakeup_masks[i]) {
881 pint[i]->mask_clear = val;
882 pint[i]->mask_set = pint_wakeup_masks[i];
883 }
884 }
885
886 return 0;
887}
888
889void bfin_pm_restore(void)
890{
891 u32 i, val;
892
893 for (i = 0; i < NR_PINT_SYS_IRQS; i++) {
894 val = pint_saved_masks[i];
895 if (val ^ pint_wakeup_masks[i]) {
896 pint[i]->mask_clear = pint[i]->mask_clear;
897 pint[i]->mask_set = val;
898 }
899 }
900}
901#endif
902
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800903static struct irq_chip bfin_gpio_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800904 .name = "GPIO",
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800905 .ack = bfin_gpio_ack_irq,
906 .mask = bfin_gpio_mask_irq,
907 .mask_ack = bfin_gpio_mask_ack_irq,
908 .unmask = bfin_gpio_unmask_irq,
Michael Hennerich1f2d1862008-07-14 16:31:22 +0800909 .disable = bfin_gpio_mask_irq,
910 .enable = bfin_gpio_unmask_irq,
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800911 .set_type = bfin_gpio_irq_type,
912 .startup = bfin_gpio_irq_startup,
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800913 .shutdown = bfin_gpio_irq_shutdown,
914#ifdef CONFIG_PM
915 .set_wake = bfin_gpio_set_wake,
916#endif
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800917};
918
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800919static void bfin_demux_gpio_irq(unsigned int inta_irq,
920 struct irq_desc *desc)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800921{
922 u8 bank, pint_val;
923 u32 request, irq;
924
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800925 switch (inta_irq) {
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800926 case IRQ_PINT0:
927 bank = 0;
928 break;
929 case IRQ_PINT2:
930 bank = 2;
931 break;
932 case IRQ_PINT3:
933 bank = 3;
934 break;
935 case IRQ_PINT1:
936 bank = 1;
937 break;
Michael Henneriche3f23002007-07-12 16:39:29 +0800938 default:
939 return;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800940 }
941
942 pint_val = bank * NR_PINT_BITS;
943
944 request = pint[bank]->request;
945
946 while (request) {
947 if (request & 1) {
Michael Henneriche3f23002007-07-12 16:39:29 +0800948 irq = pint2irq_lut[pint_val] + SYS_IRQS;
949 desc = irq_desc + irq;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800950 desc->handle_irq(irq, desc);
951 }
952 pint_val++;
953 request >>= 1;
954 }
955
956}
Mike Frysingera055b2b2007-11-15 21:12:32 +0800957#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700958
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800959void __init init_exception_vectors(void)
960{
961 SSYNC();
962
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800963 /* cannot program in software:
964 * evt0 - emulation (jtag)
965 * evt1 - reset
966 */
967 bfin_write_EVT2(evt_nmi);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800968 bfin_write_EVT3(trap);
969 bfin_write_EVT5(evt_ivhw);
970 bfin_write_EVT6(evt_timer);
971 bfin_write_EVT7(evt_evt7);
972 bfin_write_EVT8(evt_evt8);
973 bfin_write_EVT9(evt_evt9);
974 bfin_write_EVT10(evt_evt10);
975 bfin_write_EVT11(evt_evt11);
976 bfin_write_EVT12(evt_evt12);
977 bfin_write_EVT13(evt_evt13);
978 bfin_write_EVT14(evt14_softirq);
979 bfin_write_EVT15(evt_system_call);
980 CSYNC();
981}
982
Bryan Wu1394f032007-05-06 14:50:22 -0700983/*
984 * This function should be called during kernel startup to initialize
985 * the BFin IRQ handling routines.
986 */
987int __init init_arch_irq(void)
988{
989 int irq;
990 unsigned long ilat = 0;
991 /* Disable all the peripheral intrs - page 4-29 HW Ref manual */
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800992#if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) || defined(BF538_FAMILY)
Roy Huang24a07a12007-07-12 22:41:45 +0800993 bfin_write_SIC_IMASK0(SIC_UNMASK_ALL);
994 bfin_write_SIC_IMASK1(SIC_UNMASK_ALL);
Mike Frysingera055b2b2007-11-15 21:12:32 +0800995# ifdef CONFIG_BF54x
Michael Hennerich59003142007-10-21 16:54:27 +0800996 bfin_write_SIC_IMASK2(SIC_UNMASK_ALL);
Mike Frysingera055b2b2007-11-15 21:12:32 +0800997# endif
Roy Huang24a07a12007-07-12 22:41:45 +0800998#else
Bryan Wu1394f032007-05-06 14:50:22 -0700999 bfin_write_SIC_IMASK(SIC_UNMASK_ALL);
Roy Huang24a07a12007-07-12 22:41:45 +08001000#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001001
1002 local_irq_disable();
1003
Mike Frysingerd70536e2008-08-25 17:37:35 +08001004#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
Mike Frysinger95a86b52008-08-14 15:05:01 +08001005 /* Clear EMAC Interrupt Status bits so we can demux it later */
1006 bfin_write_EMAC_SYSTAT(-1);
1007#endif
1008
Mike Frysingera055b2b2007-11-15 21:12:32 +08001009#ifdef CONFIG_BF54x
1010# ifdef CONFIG_PINTx_REASSIGN
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001011 pint[0]->assign = CONFIG_PINT0_ASSIGN;
1012 pint[1]->assign = CONFIG_PINT1_ASSIGN;
1013 pint[2]->assign = CONFIG_PINT2_ASSIGN;
1014 pint[3]->assign = CONFIG_PINT3_ASSIGN;
Mike Frysingera055b2b2007-11-15 21:12:32 +08001015# endif
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001016 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
1017 init_pint_lut();
1018#endif
1019
1020 for (irq = 0; irq <= SYS_IRQS; irq++) {
Bryan Wu1394f032007-05-06 14:50:22 -07001021 if (irq <= IRQ_CORETMR)
1022 set_irq_chip(irq, &bfin_core_irqchip);
1023 else
1024 set_irq_chip(irq, &bfin_internal_irqchip);
Bryan Wu1394f032007-05-06 14:50:22 -07001025
Michael Hennerich464abc52008-02-25 13:50:20 +08001026 switch (irq) {
Michael Hennerich59003142007-10-21 16:54:27 +08001027#if defined(CONFIG_BF53x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001028 case IRQ_PROG_INTA:
Mike Frysingera055b2b2007-11-15 21:12:32 +08001029# if defined(BF537_FAMILY) && !(defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
Michael Hennerich464abc52008-02-25 13:50:20 +08001030 case IRQ_MAC_RX:
Mike Frysingera055b2b2007-11-15 21:12:32 +08001031# endif
Michael Hennerich59003142007-10-21 16:54:27 +08001032#elif defined(CONFIG_BF54x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001033 case IRQ_PINT0:
1034 case IRQ_PINT1:
1035 case IRQ_PINT2:
1036 case IRQ_PINT3:
Michael Hennerich59003142007-10-21 16:54:27 +08001037#elif defined(CONFIG_BF52x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001038 case IRQ_PORTF_INTA:
1039 case IRQ_PORTG_INTA:
1040 case IRQ_PORTH_INTA:
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001041#elif defined(CONFIG_BF561)
Michael Hennerich464abc52008-02-25 13:50:20 +08001042 case IRQ_PROG0_INTA:
1043 case IRQ_PROG1_INTA:
1044 case IRQ_PROG2_INTA:
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001045#elif defined(CONFIG_BF538) || defined(CONFIG_BF539)
1046 case IRQ_PORTF_INTA:
Michael Hennerich59003142007-10-21 16:54:27 +08001047#endif
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001048
Michael Hennerich464abc52008-02-25 13:50:20 +08001049 set_irq_chained_handler(irq,
1050 bfin_demux_gpio_irq);
1051 break;
Bryan Wu1394f032007-05-06 14:50:22 -07001052#ifdef BF537_GENERIC_ERROR_INT_DEMUX
Michael Hennerich464abc52008-02-25 13:50:20 +08001053 case IRQ_GENERIC_ERROR:
Bryan Wu1394f032007-05-06 14:50:22 -07001054 set_irq_handler(irq, bfin_demux_error_irq);
Michael Hennerich464abc52008-02-25 13:50:20 +08001055
1056 break;
1057#endif
1058 default:
1059 set_irq_handler(irq, handle_simple_irq);
1060 break;
Bryan Wu1394f032007-05-06 14:50:22 -07001061 }
Bryan Wu1394f032007-05-06 14:50:22 -07001062 }
Michael Hennerich464abc52008-02-25 13:50:20 +08001063
Bryan Wu1394f032007-05-06 14:50:22 -07001064#ifdef BF537_GENERIC_ERROR_INT_DEMUX
Michael Hennerich464abc52008-02-25 13:50:20 +08001065 for (irq = IRQ_PPI_ERROR; irq <= IRQ_UART1_ERROR; irq++)
1066 set_irq_chip_and_handler(irq, &bfin_generic_error_irqchip,
1067 handle_level_irq);
Bryan Wu1394f032007-05-06 14:50:22 -07001068#endif
1069
Michael Hennerich464abc52008-02-25 13:50:20 +08001070 /* if configured as edge, then will be changed to do_edge_IRQ */
1071 for (irq = GPIO_IRQ_BASE; irq < NR_IRQS; irq++)
1072 set_irq_chip_and_handler(irq, &bfin_gpio_irqchip,
1073 handle_level_irq);
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001074
Mike Frysingera055b2b2007-11-15 21:12:32 +08001075
Bryan Wu1394f032007-05-06 14:50:22 -07001076 bfin_write_IMASK(0);
1077 CSYNC();
1078 ilat = bfin_read_ILAT();
1079 CSYNC();
1080 bfin_write_ILAT(ilat);
1081 CSYNC();
1082
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001083 printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n");
Bryan Wu1394f032007-05-06 14:50:22 -07001084 /* IMASK=xxx is equivalent to STI xx or irq_flags=xx,
1085 * local_irq_enable()
1086 */
1087 program_IAR();
1088 /* Therefore it's better to setup IARs before interrupts enabled */
1089 search_IAR();
1090
1091 /* Enable interrupts IVG7-15 */
1092 irq_flags = irq_flags | IMASK_IVG15 |
1093 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001094 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
Bryan Wu1394f032007-05-06 14:50:22 -07001095
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001096#if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) || defined(BF538_FAMILY)
Michael Hennerich56f5f592008-08-06 17:55:32 +08001097 bfin_write_SIC_IWR0(IWR_DISABLE_ALL);
Michael Hennerich55546ac2008-08-13 17:41:13 +08001098#if defined(CONFIG_BF52x)
1099 /* BF52x system reset does not properly reset SIC_IWR1 which
1100 * will screw up the bootrom as it relies on MDMA0/1 waking it
1101 * up from IDLE instructions. See this report for more info:
1102 * http://blackfin.uclinux.org/gf/tracker/4323
1103 */
1104 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
1105#else
Michael Hennerich56f5f592008-08-06 17:55:32 +08001106 bfin_write_SIC_IWR1(IWR_DISABLE_ALL);
Michael Hennerich55546ac2008-08-13 17:41:13 +08001107#endif
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001108# ifdef CONFIG_BF54x
Michael Hennerich56f5f592008-08-06 17:55:32 +08001109 bfin_write_SIC_IWR2(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001110# endif
1111#else
Michael Hennerich56f5f592008-08-06 17:55:32 +08001112 bfin_write_SIC_IWR(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001113#endif
1114
Bryan Wu1394f032007-05-06 14:50:22 -07001115 return 0;
1116}
1117
1118#ifdef CONFIG_DO_IRQ_L1
Mike Frysingera055b2b2007-11-15 21:12:32 +08001119__attribute__((l1_text))
Bryan Wu1394f032007-05-06 14:50:22 -07001120#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001121void do_irq(int vec, struct pt_regs *fp)
1122{
1123 if (vec == EVT_IVTMR_P) {
1124 vec = IRQ_CORETMR;
1125 } else {
1126 struct ivgx *ivg = ivg7_13[vec - IVG7].ifirst;
1127 struct ivgx *ivg_stop = ivg7_13[vec - IVG7].istop;
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001128#if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) || defined(BF538_FAMILY)
Roy Huang24a07a12007-07-12 22:41:45 +08001129 unsigned long sic_status[3];
Bryan Wu1394f032007-05-06 14:50:22 -07001130
Michael Hennerich4fb45242007-10-21 16:53:53 +08001131 sic_status[0] = bfin_read_SIC_ISR0() & bfin_read_SIC_IMASK0();
1132 sic_status[1] = bfin_read_SIC_ISR1() & bfin_read_SIC_IMASK1();
Michael Hennerich59003142007-10-21 16:54:27 +08001133#ifdef CONFIG_BF54x
Michael Hennerich4fb45242007-10-21 16:53:53 +08001134 sic_status[2] = bfin_read_SIC_ISR2() & bfin_read_SIC_IMASK2();
Michael Hennerich59003142007-10-21 16:54:27 +08001135#endif
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001136 for (;; ivg++) {
Roy Huang24a07a12007-07-12 22:41:45 +08001137 if (ivg >= ivg_stop) {
1138 atomic_inc(&num_spurious);
1139 return;
1140 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001141 if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag)
Roy Huang24a07a12007-07-12 22:41:45 +08001142 break;
1143 }
1144#else
1145 unsigned long sic_status;
Michael Hennerich464abc52008-02-25 13:50:20 +08001146
Bryan Wu1394f032007-05-06 14:50:22 -07001147 sic_status = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
1148
1149 for (;; ivg++) {
1150 if (ivg >= ivg_stop) {
1151 atomic_inc(&num_spurious);
1152 return;
1153 } else if (sic_status & ivg->isrflag)
1154 break;
1155 }
Roy Huang24a07a12007-07-12 22:41:45 +08001156#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001157 vec = ivg->irqno;
1158 }
1159 asm_do_IRQ(vec, fp);
Bryan Wu1394f032007-05-06 14:50:22 -07001160}