blob: 4cc55bc4142625780c02f55121a3d576cc3563c6 [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 *
Simon Arlottd2d50aa2007-06-11 15:31:30 +08004 * Description: Set up the interrupt priorities
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
6 * Modified:
7 * 1996 Roman Zippel
8 * 1999 D. Jeff Dionne <jeff@uclinux.org>
9 * 2000-2001 Lineo, Inc. D. Jefff Dionne <jeff@lineo.ca>
10 * 2002 Arcturus Networks Inc. MaTed <mated@sympatico.ca>
11 * 2003 Metrowerks/Motorola
12 * 2003 Bas Vermeulen <bas@buyways.nl>
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080013 * Copyright 2004-2008 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -070014 *
15 * Bugs: Enter bugs at http://blackfin.uclinux.org/
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, see the file COPYING, or write
29 * to the Free Software Foundation, Inc.,
30 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 */
32
33#include <linux/module.h>
34#include <linux/kernel_stat.h>
35#include <linux/seq_file.h>
36#include <linux/irq.h>
Yi Li6a01f232009-01-07 23:14:39 +080037#ifdef CONFIG_IPIPE
38#include <linux/ipipe.h>
39#endif
Bryan Wu1394f032007-05-06 14:50:22 -070040#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
Mike Frysinger7beb7432008-11-18 17:48:22 +080048#define SIC_SYSIRQ(irq) (irq - (IRQ_CORETMR + 1))
49
Bryan Wu1394f032007-05-06 14:50:22 -070050#ifdef BF537_FAMILY
51# define BF537_GENERIC_ERROR_INT_DEMUX
52#else
53# undef BF537_GENERIC_ERROR_INT_DEMUX
54#endif
55
56/*
57 * NOTES:
58 * - we have separated the physical Hardware interrupt from the
59 * levels that the LINUX kernel sees (see the description in irq.h)
60 * -
61 */
62
Graf Yang6b3087c2009-01-07 23:14:39 +080063#ifndef CONFIG_SMP
Mike Frysingera99bbcc2007-10-22 00:19:31 +080064/* Initialize this to an actual value to force it into the .data
65 * section so that we know it is properly initialized at entry into
66 * the kernel but before bss is initialized to zero (which is where
67 * it would live otherwise). The 0x1f magic represents the IRQs we
68 * cannot actually mask out in hardware.
69 */
Mike Frysinger40059782008-11-18 17:48:22 +080070unsigned long bfin_irq_flags = 0x1f;
71EXPORT_SYMBOL(bfin_irq_flags);
Graf Yang6b3087c2009-01-07 23:14:39 +080072#endif
Bryan Wu1394f032007-05-06 14:50:22 -070073
74/* The number of spurious interrupts */
75atomic_t num_spurious;
76
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080077#ifdef CONFIG_PM
78unsigned long bfin_sic_iwr[3]; /* Up to 3 SIC_IWRx registers */
Michael Hennerich4a88d0c2008-08-05 17:38:41 +080079unsigned vr_wakeup;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080080#endif
81
Bryan Wu1394f032007-05-06 14:50:22 -070082struct ivgx {
Michael Hennerich464abc52008-02-25 13:50:20 +080083 /* irq number for request_irq, available in mach-bf5xx/irq.h */
Roy Huang24a07a12007-07-12 22:41:45 +080084 unsigned int irqno;
Bryan Wu1394f032007-05-06 14:50:22 -070085 /* corresponding bit in the SIC_ISR register */
Roy Huang24a07a12007-07-12 22:41:45 +080086 unsigned int isrflag;
Bryan Wu1394f032007-05-06 14:50:22 -070087} ivg_table[NR_PERI_INTS];
88
89struct ivg_slice {
90 /* position of first irq in ivg_table for given ivg */
91 struct ivgx *ifirst;
92 struct ivgx *istop;
93} ivg7_13[IVG13 - IVG7 + 1];
94
Bryan Wu1394f032007-05-06 14:50:22 -070095
96/*
97 * Search SIC_IAR and fill tables with the irqvalues
98 * and their positions in the SIC_ISR register.
99 */
100static void __init search_IAR(void)
101{
102 unsigned ivg, irq_pos = 0;
103 for (ivg = 0; ivg <= IVG13 - IVG7; ivg++) {
104 int irqn;
105
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800106 ivg7_13[ivg].istop = ivg7_13[ivg].ifirst = &ivg_table[irq_pos];
Bryan Wu1394f032007-05-06 14:50:22 -0700107
108 for (irqn = 0; irqn < NR_PERI_INTS; irqn++) {
109 int iar_shift = (irqn & 7) * 4;
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800110 if (ivg == (0xf &
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800111#if defined(CONFIG_BF52x) || defined(CONFIG_BF538) \
112 || defined(CONFIG_BF539) || defined(CONFIG_BF51x)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800113 bfin_read32((unsigned long *)SIC_IAR0 +
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800114 ((irqn % 32) >> 3) + ((irqn / 32) *
115 ((SIC_IAR4 - SIC_IAR0) / 4))) >> iar_shift)) {
Michael Hennerich59003142007-10-21 16:54:27 +0800116#else
117 bfin_read32((unsigned long *)SIC_IAR0 +
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800118 (irqn >> 3)) >> iar_shift)) {
Michael Hennerich59003142007-10-21 16:54:27 +0800119#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700120 ivg_table[irq_pos].irqno = IVG7 + irqn;
Roy Huang24a07a12007-07-12 22:41:45 +0800121 ivg_table[irq_pos].isrflag = 1 << (irqn % 32);
Bryan Wu1394f032007-05-06 14:50:22 -0700122 ivg7_13[ivg].istop++;
123 irq_pos++;
124 }
125 }
126 }
127}
128
129/*
Michael Hennerich464abc52008-02-25 13:50:20 +0800130 * This is for core internal IRQs
Bryan Wu1394f032007-05-06 14:50:22 -0700131 */
132
Michael Hennerich464abc52008-02-25 13:50:20 +0800133static void bfin_ack_noop(unsigned int irq)
Bryan Wu1394f032007-05-06 14:50:22 -0700134{
135 /* Dummy function. */
136}
137
138static void bfin_core_mask_irq(unsigned int irq)
139{
Mike Frysinger40059782008-11-18 17:48:22 +0800140 bfin_irq_flags &= ~(1 << irq);
Yi Li6a01f232009-01-07 23:14:39 +0800141 if (!irqs_disabled_hw())
142 local_irq_enable_hw();
Bryan Wu1394f032007-05-06 14:50:22 -0700143}
144
145static void bfin_core_unmask_irq(unsigned int irq)
146{
Mike Frysinger40059782008-11-18 17:48:22 +0800147 bfin_irq_flags |= 1 << irq;
Bryan Wu1394f032007-05-06 14:50:22 -0700148 /*
149 * If interrupts are enabled, IMASK must contain the same value
Mike Frysinger40059782008-11-18 17:48:22 +0800150 * as bfin_irq_flags. Make sure that invariant holds. If interrupts
Bryan Wu1394f032007-05-06 14:50:22 -0700151 * are currently disabled we need not do anything; one of the
152 * callers will take care of setting IMASK to the proper value
153 * when reenabling interrupts.
Mike Frysinger40059782008-11-18 17:48:22 +0800154 * local_irq_enable just does "STI bfin_irq_flags", so it's exactly
Bryan Wu1394f032007-05-06 14:50:22 -0700155 * what we need.
156 */
Yi Li6a01f232009-01-07 23:14:39 +0800157 if (!irqs_disabled_hw())
158 local_irq_enable_hw();
Bryan Wu1394f032007-05-06 14:50:22 -0700159 return;
160}
161
162static void bfin_internal_mask_irq(unsigned int irq)
163{
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800164 unsigned long flags;
165
Michael Hennerich59003142007-10-21 16:54:27 +0800166#ifdef CONFIG_BF53x
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800167 local_irq_save_hw(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700168 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
Michael Hennerich464abc52008-02-25 13:50:20 +0800169 ~(1 << SIC_SYSIRQ(irq)));
Roy Huang24a07a12007-07-12 22:41:45 +0800170#else
171 unsigned mask_bank, mask_bit;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800172 local_irq_save_hw(flags);
Michael Hennerich464abc52008-02-25 13:50:20 +0800173 mask_bank = SIC_SYSIRQ(irq) / 32;
174 mask_bit = SIC_SYSIRQ(irq) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800175 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) &
176 ~(1 << mask_bit));
Graf Yang6b3087c2009-01-07 23:14:39 +0800177#ifdef CONFIG_SMP
178 bfin_write_SICB_IMASK(mask_bank, bfin_read_SICB_IMASK(mask_bank) &
179 ~(1 << mask_bit));
180#endif
Roy Huang24a07a12007-07-12 22:41:45 +0800181#endif
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800182 local_irq_restore_hw(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700183}
184
185static void bfin_internal_unmask_irq(unsigned int irq)
186{
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800187 unsigned long flags;
188
Michael Hennerich59003142007-10-21 16:54:27 +0800189#ifdef CONFIG_BF53x
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800190 local_irq_save_hw(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700191 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() |
Michael Hennerich464abc52008-02-25 13:50:20 +0800192 (1 << SIC_SYSIRQ(irq)));
Roy Huang24a07a12007-07-12 22:41:45 +0800193#else
194 unsigned mask_bank, mask_bit;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800195 local_irq_save_hw(flags);
Michael Hennerich464abc52008-02-25 13:50:20 +0800196 mask_bank = SIC_SYSIRQ(irq) / 32;
197 mask_bit = SIC_SYSIRQ(irq) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800198 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) |
199 (1 << mask_bit));
Graf Yang6b3087c2009-01-07 23:14:39 +0800200#ifdef CONFIG_SMP
201 bfin_write_SICB_IMASK(mask_bank, bfin_read_SICB_IMASK(mask_bank) |
202 (1 << mask_bit));
203#endif
Roy Huang24a07a12007-07-12 22:41:45 +0800204#endif
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800205 local_irq_restore_hw(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700206}
207
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800208#ifdef CONFIG_PM
209int bfin_internal_set_wake(unsigned int irq, unsigned int state)
210{
Michael Hennerich8d022372008-11-18 17:48:22 +0800211 u32 bank, bit, wakeup = 0;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800212 unsigned long flags;
Michael Hennerich464abc52008-02-25 13:50:20 +0800213 bank = SIC_SYSIRQ(irq) / 32;
214 bit = SIC_SYSIRQ(irq) % 32;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800215
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800216 switch (irq) {
217#ifdef IRQ_RTC
218 case IRQ_RTC:
219 wakeup |= WAKE;
220 break;
221#endif
222#ifdef IRQ_CAN0_RX
223 case IRQ_CAN0_RX:
224 wakeup |= CANWE;
225 break;
226#endif
227#ifdef IRQ_CAN1_RX
228 case IRQ_CAN1_RX:
229 wakeup |= CANWE;
230 break;
231#endif
232#ifdef IRQ_USB_INT0
233 case IRQ_USB_INT0:
234 wakeup |= USBWE;
235 break;
236#endif
237#ifdef IRQ_KEY
238 case IRQ_KEY:
239 wakeup |= KPADWE;
240 break;
241#endif
Michael Hennerichd310fb42008-08-28 17:32:01 +0800242#ifdef CONFIG_BF54x
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800243 case IRQ_CNT:
244 wakeup |= ROTWE;
245 break;
246#endif
247 default:
248 break;
249 }
250
Yi Li6a01f232009-01-07 23:14:39 +0800251 local_irq_save_hw(flags);
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800252
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800253 if (state) {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800254 bfin_sic_iwr[bank] |= (1 << bit);
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800255 vr_wakeup |= wakeup;
256
257 } else {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800258 bfin_sic_iwr[bank] &= ~(1 << bit);
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800259 vr_wakeup &= ~wakeup;
260 }
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800261
Yi Li6a01f232009-01-07 23:14:39 +0800262 local_irq_restore_hw(flags);
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800263
264 return 0;
265}
266#endif
267
Bryan Wu1394f032007-05-06 14:50:22 -0700268static struct irq_chip bfin_core_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800269 .name = "CORE",
Michael Hennerich464abc52008-02-25 13:50:20 +0800270 .ack = bfin_ack_noop,
Bryan Wu1394f032007-05-06 14:50:22 -0700271 .mask = bfin_core_mask_irq,
272 .unmask = bfin_core_unmask_irq,
273};
274
275static struct irq_chip bfin_internal_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800276 .name = "INTN",
Michael Hennerich464abc52008-02-25 13:50:20 +0800277 .ack = bfin_ack_noop,
Bryan Wu1394f032007-05-06 14:50:22 -0700278 .mask = bfin_internal_mask_irq,
279 .unmask = bfin_internal_unmask_irq,
Michael Hennerichce3b7bb2008-02-25 13:48:47 +0800280 .mask_ack = bfin_internal_mask_irq,
281 .disable = bfin_internal_mask_irq,
282 .enable = bfin_internal_unmask_irq,
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800283#ifdef CONFIG_PM
284 .set_wake = bfin_internal_set_wake,
285#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700286};
287
Yi Li6a01f232009-01-07 23:14:39 +0800288static void bfin_handle_irq(unsigned irq)
289{
290#ifdef CONFIG_IPIPE
291 struct pt_regs regs; /* Contents not used. */
292 ipipe_trace_irq_entry(irq);
293 __ipipe_handle_irq(irq, &regs);
294 ipipe_trace_irq_exit(irq);
295#else /* !CONFIG_IPIPE */
296 struct irq_desc *desc = irq_desc + irq;
297 desc->handle_irq(irq, desc);
298#endif /* !CONFIG_IPIPE */
299}
300
Bryan Wu1394f032007-05-06 14:50:22 -0700301#ifdef BF537_GENERIC_ERROR_INT_DEMUX
302static int error_int_mask;
303
Bryan Wu1394f032007-05-06 14:50:22 -0700304static void bfin_generic_error_mask_irq(unsigned int irq)
305{
306 error_int_mask &= ~(1L << (irq - IRQ_PPI_ERROR));
307
Michael Hennerich464abc52008-02-25 13:50:20 +0800308 if (!error_int_mask)
309 bfin_internal_mask_irq(IRQ_GENERIC_ERROR);
Bryan Wu1394f032007-05-06 14:50:22 -0700310}
311
312static void bfin_generic_error_unmask_irq(unsigned int irq)
313{
Michael Hennerich464abc52008-02-25 13:50:20 +0800314 bfin_internal_unmask_irq(IRQ_GENERIC_ERROR);
Bryan Wu1394f032007-05-06 14:50:22 -0700315 error_int_mask |= 1L << (irq - IRQ_PPI_ERROR);
316}
317
318static struct irq_chip bfin_generic_error_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800319 .name = "ERROR",
Michael Hennerich464abc52008-02-25 13:50:20 +0800320 .ack = bfin_ack_noop,
321 .mask_ack = bfin_generic_error_mask_irq,
Bryan Wu1394f032007-05-06 14:50:22 -0700322 .mask = bfin_generic_error_mask_irq,
323 .unmask = bfin_generic_error_unmask_irq,
324};
325
326static void bfin_demux_error_irq(unsigned int int_err_irq,
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800327 struct irq_desc *inta_desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700328{
329 int irq = 0;
330
Bryan Wu1394f032007-05-06 14:50:22 -0700331#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
332 if (bfin_read_EMAC_SYSTAT() & EMAC_ERR_MASK)
333 irq = IRQ_MAC_ERROR;
334 else
335#endif
336 if (bfin_read_SPORT0_STAT() & SPORT_ERR_MASK)
337 irq = IRQ_SPORT0_ERROR;
338 else if (bfin_read_SPORT1_STAT() & SPORT_ERR_MASK)
339 irq = IRQ_SPORT1_ERROR;
340 else if (bfin_read_PPI_STATUS() & PPI_ERR_MASK)
341 irq = IRQ_PPI_ERROR;
342 else if (bfin_read_CAN_GIF() & CAN_ERR_MASK)
343 irq = IRQ_CAN_ERROR;
344 else if (bfin_read_SPI_STAT() & SPI_ERR_MASK)
345 irq = IRQ_SPI_ERROR;
346 else if ((bfin_read_UART0_IIR() & UART_ERR_MASK_STAT1) &&
347 (bfin_read_UART0_IIR() & UART_ERR_MASK_STAT0))
348 irq = IRQ_UART0_ERROR;
349 else if ((bfin_read_UART1_IIR() & UART_ERR_MASK_STAT1) &&
350 (bfin_read_UART1_IIR() & UART_ERR_MASK_STAT0))
351 irq = IRQ_UART1_ERROR;
352
353 if (irq) {
Yi Li6a01f232009-01-07 23:14:39 +0800354 if (error_int_mask & (1L << (irq - IRQ_PPI_ERROR)))
355 bfin_handle_irq(irq);
356 else {
Bryan Wu1394f032007-05-06 14:50:22 -0700357
358 switch (irq) {
359 case IRQ_PPI_ERROR:
360 bfin_write_PPI_STATUS(PPI_ERR_MASK);
361 break;
362#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
363 case IRQ_MAC_ERROR:
364 bfin_write_EMAC_SYSTAT(EMAC_ERR_MASK);
365 break;
366#endif
367 case IRQ_SPORT0_ERROR:
368 bfin_write_SPORT0_STAT(SPORT_ERR_MASK);
369 break;
370
371 case IRQ_SPORT1_ERROR:
372 bfin_write_SPORT1_STAT(SPORT_ERR_MASK);
373 break;
374
375 case IRQ_CAN_ERROR:
376 bfin_write_CAN_GIS(CAN_ERR_MASK);
377 break;
378
379 case IRQ_SPI_ERROR:
380 bfin_write_SPI_STAT(SPI_ERR_MASK);
381 break;
382
383 default:
384 break;
385 }
386
387 pr_debug("IRQ %d:"
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800388 " MASKED PERIPHERAL ERROR INTERRUPT ASSERTED\n",
389 irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700390 }
391 } else
392 printk(KERN_ERR
393 "%s : %s : LINE %d :\nIRQ ?: PERIPHERAL ERROR"
394 " INTERRUPT ASSERTED BUT NO SOURCE FOUND\n",
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800395 __func__, __FILE__, __LINE__);
Bryan Wu1394f032007-05-06 14:50:22 -0700396
Bryan Wu1394f032007-05-06 14:50:22 -0700397}
398#endif /* BF537_GENERIC_ERROR_INT_DEMUX */
399
Graf Yangbfd15112008-10-08 18:02:44 +0800400static inline void bfin_set_irq_handler(unsigned irq, irq_flow_handler_t handle)
401{
Yi Li6a01f232009-01-07 23:14:39 +0800402#ifdef CONFIG_IPIPE
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800403 _set_irq_handler(irq, handle_level_irq);
Yi Li6a01f232009-01-07 23:14:39 +0800404#else
Graf Yangbfd15112008-10-08 18:02:44 +0800405 struct irq_desc *desc = irq_desc + irq;
406 /* May not call generic set_irq_handler() due to spinlock
407 recursion. */
408 desc->handle_irq = handle;
Yi Li6a01f232009-01-07 23:14:39 +0800409#endif
Graf Yangbfd15112008-10-08 18:02:44 +0800410}
411
Michael Hennerich8d022372008-11-18 17:48:22 +0800412static DECLARE_BITMAP(gpio_enabled, MAX_BLACKFIN_GPIOS);
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800413extern void bfin_gpio_irq_prepare(unsigned gpio);
Michael Hennerich6fce6a82007-12-24 16:56:12 +0800414
Michael Hennerich8d022372008-11-18 17:48:22 +0800415#if !defined(CONFIG_BF54x)
416
Bryan Wu1394f032007-05-06 14:50:22 -0700417static void bfin_gpio_ack_irq(unsigned int irq)
418{
Michael Hennerich8d022372008-11-18 17:48:22 +0800419 /* AFAIK ack_irq in case mask_ack is provided
420 * get's only called for edge sense irqs
421 */
422 set_gpio_data(irq_to_gpio(irq), 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700423}
424
425static void bfin_gpio_mask_ack_irq(unsigned int irq)
426{
Michael Hennerich8d022372008-11-18 17:48:22 +0800427 struct irq_desc *desc = irq_desc + irq;
428 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700429
Michael Hennerich8d022372008-11-18 17:48:22 +0800430 if (desc->handle_irq == handle_edge_irq)
Bryan Wu1394f032007-05-06 14:50:22 -0700431 set_gpio_data(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700432
433 set_gpio_maska(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700434}
435
436static void bfin_gpio_mask_irq(unsigned int irq)
437{
Michael Hennerich8d022372008-11-18 17:48:22 +0800438 set_gpio_maska(irq_to_gpio(irq), 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700439}
440
441static void bfin_gpio_unmask_irq(unsigned int irq)
442{
Michael Hennerich8d022372008-11-18 17:48:22 +0800443 set_gpio_maska(irq_to_gpio(irq), 1);
Bryan Wu1394f032007-05-06 14:50:22 -0700444}
445
446static unsigned int bfin_gpio_irq_startup(unsigned int irq)
447{
Michael Hennerich8d022372008-11-18 17:48:22 +0800448 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700449
Michael Hennerich8d022372008-11-18 17:48:22 +0800450 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800451 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700452
Bryan Wu1394f032007-05-06 14:50:22 -0700453 bfin_gpio_unmask_irq(irq);
454
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800455 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700456}
457
458static void bfin_gpio_irq_shutdown(unsigned int irq)
459{
Graf Yang30af6d42008-11-18 17:48:21 +0800460 u32 gpionr = irq_to_gpio(irq);
461
Bryan Wu1394f032007-05-06 14:50:22 -0700462 bfin_gpio_mask_irq(irq);
Graf Yang30af6d42008-11-18 17:48:21 +0800463 __clear_bit(gpionr, gpio_enabled);
Graf Yang9570ff42009-01-07 23:14:38 +0800464 bfin_gpio_irq_free(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700465}
466
467static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
468{
Graf Yang8eb3e3b2008-11-18 17:48:22 +0800469 int ret;
470 char buf[16];
Michael Hennerich8d022372008-11-18 17:48:22 +0800471 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700472
473 if (type == IRQ_TYPE_PROBE) {
474 /* only probe unenabled GPIO interrupt lines */
Mike Frysingerc3695342009-06-13 10:32:29 -0400475 if (test_bit(gpionr, gpio_enabled))
Bryan Wu1394f032007-05-06 14:50:22 -0700476 return 0;
477 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
478 }
479
480 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800481 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Michael Hennerich8d022372008-11-18 17:48:22 +0800482
Graf Yang9570ff42009-01-07 23:14:38 +0800483 snprintf(buf, 16, "gpio-irq%d", irq);
484 ret = bfin_gpio_irq_request(gpionr, buf);
485 if (ret)
486 return ret;
487
Michael Hennerich8d022372008-11-18 17:48:22 +0800488 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800489 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700490
Bryan Wu1394f032007-05-06 14:50:22 -0700491 } else {
Michael Hennerich8d022372008-11-18 17:48:22 +0800492 __clear_bit(gpionr, gpio_enabled);
Bryan Wu1394f032007-05-06 14:50:22 -0700493 return 0;
494 }
495
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800496 set_gpio_inen(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700497 set_gpio_dir(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700498
499 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
500 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
501 set_gpio_both(gpionr, 1);
502 else
503 set_gpio_both(gpionr, 0);
504
505 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
506 set_gpio_polar(gpionr, 1); /* low or falling edge denoted by one */
507 else
508 set_gpio_polar(gpionr, 0); /* high or rising edge denoted by zero */
509
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800510 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
511 set_gpio_edge(gpionr, 1);
512 set_gpio_inen(gpionr, 1);
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800513 set_gpio_data(gpionr, 0);
514
515 } else {
516 set_gpio_edge(gpionr, 0);
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800517 set_gpio_inen(gpionr, 1);
518 }
519
Bryan Wu1394f032007-05-06 14:50:22 -0700520 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
Graf Yangbfd15112008-10-08 18:02:44 +0800521 bfin_set_irq_handler(irq, handle_edge_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700522 else
Graf Yangbfd15112008-10-08 18:02:44 +0800523 bfin_set_irq_handler(irq, handle_level_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700524
525 return 0;
526}
527
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800528#ifdef CONFIG_PM
529int bfin_gpio_set_wake(unsigned int irq, unsigned int state)
530{
531 unsigned gpio = irq_to_gpio(irq);
532
533 if (state)
534 gpio_pm_wakeup_request(gpio, PM_WAKE_IGNORE);
535 else
536 gpio_pm_wakeup_free(gpio);
537
538 return 0;
539}
540#endif
541
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800542static void bfin_demux_gpio_irq(unsigned int inta_irq,
543 struct irq_desc *desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700544{
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800545 unsigned int i, gpio, mask, irq, search = 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700546
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800547 switch (inta_irq) {
548#if defined(CONFIG_BF53x)
549 case IRQ_PROG_INTA:
550 irq = IRQ_PF0;
551 search = 1;
552 break;
553# if defined(BF537_FAMILY) && !(defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
554 case IRQ_MAC_RX:
555 irq = IRQ_PH0;
556 break;
557# endif
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800558#elif defined(CONFIG_BF538) || defined(CONFIG_BF539)
559 case IRQ_PORTF_INTA:
560 irq = IRQ_PF0;
561 break;
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800562#elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x)
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800563 case IRQ_PORTF_INTA:
564 irq = IRQ_PF0;
565 break;
566 case IRQ_PORTG_INTA:
567 irq = IRQ_PG0;
568 break;
569 case IRQ_PORTH_INTA:
570 irq = IRQ_PH0;
571 break;
572#elif defined(CONFIG_BF561)
573 case IRQ_PROG0_INTA:
574 irq = IRQ_PF0;
575 break;
576 case IRQ_PROG1_INTA:
577 irq = IRQ_PF16;
578 break;
579 case IRQ_PROG2_INTA:
580 irq = IRQ_PF32;
581 break;
582#endif
583 default:
584 BUG();
585 return;
Bryan Wu1394f032007-05-06 14:50:22 -0700586 }
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800587
588 if (search) {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800589 for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) {
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800590 irq += i;
591
Michael Hennerich8d022372008-11-18 17:48:22 +0800592 mask = get_gpiop_data(i) & get_gpiop_maska(i);
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800593
594 while (mask) {
Yi Li6a01f232009-01-07 23:14:39 +0800595 if (mask & 1)
596 bfin_handle_irq(irq);
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800597 irq++;
598 mask >>= 1;
599 }
600 }
601 } else {
602 gpio = irq_to_gpio(irq);
Michael Hennerich8d022372008-11-18 17:48:22 +0800603 mask = get_gpiop_data(gpio) & get_gpiop_maska(gpio);
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800604
605 do {
Yi Li6a01f232009-01-07 23:14:39 +0800606 if (mask & 1)
607 bfin_handle_irq(irq);
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800608 irq++;
609 mask >>= 1;
610 } while (mask);
611 }
612
Bryan Wu1394f032007-05-06 14:50:22 -0700613}
614
Mike Frysingera055b2b2007-11-15 21:12:32 +0800615#else /* CONFIG_BF54x */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800616
617#define NR_PINT_SYS_IRQS 4
618#define NR_PINT_BITS 32
619#define NR_PINTS 160
620#define IRQ_NOT_AVAIL 0xFF
621
622#define PINT_2_BANK(x) ((x) >> 5)
623#define PINT_2_BIT(x) ((x) & 0x1F)
624#define PINT_BIT(x) (1 << (PINT_2_BIT(x)))
625
626static unsigned char irq2pint_lut[NR_PINTS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800627static unsigned char pint2irq_lut[NR_PINT_SYS_IRQS * NR_PINT_BITS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800628
629struct pin_int_t {
630 unsigned int mask_set;
631 unsigned int mask_clear;
632 unsigned int request;
633 unsigned int assign;
634 unsigned int edge_set;
635 unsigned int edge_clear;
636 unsigned int invert_set;
637 unsigned int invert_clear;
638 unsigned int pinstate;
639 unsigned int latch;
640};
641
642static struct pin_int_t *pint[NR_PINT_SYS_IRQS] = {
643 (struct pin_int_t *)PINT0_MASK_SET,
644 (struct pin_int_t *)PINT1_MASK_SET,
645 (struct pin_int_t *)PINT2_MASK_SET,
646 (struct pin_int_t *)PINT3_MASK_SET,
647};
648
Michael Hennerich8d022372008-11-18 17:48:22 +0800649inline unsigned int get_irq_base(u32 bank, u8 bmap)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800650{
Michael Hennerich8d022372008-11-18 17:48:22 +0800651 unsigned int irq_base;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800652
653 if (bank < 2) { /*PA-PB */
654 irq_base = IRQ_PA0 + bmap * 16;
655 } else { /*PC-PJ */
656 irq_base = IRQ_PC0 + bmap * 16;
657 }
658
659 return irq_base;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800660}
661
662 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
663void init_pint_lut(void)
664{
665 u16 bank, bit, irq_base, bit_pos;
666 u32 pint_assign;
667 u8 bmap;
668
669 memset(irq2pint_lut, IRQ_NOT_AVAIL, sizeof(irq2pint_lut));
670
671 for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++) {
672
673 pint_assign = pint[bank]->assign;
674
675 for (bit = 0; bit < NR_PINT_BITS; bit++) {
676
677 bmap = (pint_assign >> ((bit / 8) * 8)) & 0xFF;
678
679 irq_base = get_irq_base(bank, bmap);
680
681 irq_base += (bit % 8) + ((bit / 8) & 1 ? 8 : 0);
682 bit_pos = bit + bank * NR_PINT_BITS;
683
Michael Henneriche3f23002007-07-12 16:39:29 +0800684 pint2irq_lut[bit_pos] = irq_base - SYS_IRQS;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800685 irq2pint_lut[irq_base - SYS_IRQS] = bit_pos;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800686 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800687 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800688}
689
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800690static void bfin_gpio_ack_irq(unsigned int irq)
691{
Michael Hennerich8d022372008-11-18 17:48:22 +0800692 struct irq_desc *desc = irq_desc + irq;
693 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Hennerich8baf5602007-12-24 18:51:34 +0800694 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800695 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800696
Michael Hennerich8d022372008-11-18 17:48:22 +0800697 if ((desc->status & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH) {
Michael Hennerich8baf5602007-12-24 18:51:34 +0800698 if (pint[bank]->invert_set & pintbit)
699 pint[bank]->invert_clear = pintbit;
700 else
701 pint[bank]->invert_set = pintbit;
702 }
703 pint[bank]->request = pintbit;
704
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800705}
706
707static void bfin_gpio_mask_ack_irq(unsigned int irq)
708{
Michael Hennerich8d022372008-11-18 17:48:22 +0800709 struct irq_desc *desc = irq_desc + irq;
710 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800711 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800712 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800713
Michael Hennerich8d022372008-11-18 17:48:22 +0800714 if ((desc->status & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH) {
Michael Hennerich8baf5602007-12-24 18:51:34 +0800715 if (pint[bank]->invert_set & pintbit)
716 pint[bank]->invert_clear = pintbit;
717 else
718 pint[bank]->invert_set = pintbit;
719 }
720
Michael Henneriche3f23002007-07-12 16:39:29 +0800721 pint[bank]->request = pintbit;
722 pint[bank]->mask_clear = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800723}
724
725static void bfin_gpio_mask_irq(unsigned int irq)
726{
Michael Hennerich8d022372008-11-18 17:48:22 +0800727 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800728
729 pint[PINT_2_BANK(pint_val)]->mask_clear = PINT_BIT(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800730}
731
732static void bfin_gpio_unmask_irq(unsigned int irq)
733{
Michael Hennerich8d022372008-11-18 17:48:22 +0800734 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800735 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800736 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800737
Michael Henneriche3f23002007-07-12 16:39:29 +0800738 pint[bank]->request = pintbit;
739 pint[bank]->mask_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800740}
741
742static unsigned int bfin_gpio_irq_startup(unsigned int irq)
743{
Michael Hennerich8d022372008-11-18 17:48:22 +0800744 u32 gpionr = irq_to_gpio(irq);
745 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800746
Michael Hennerich50e163c2007-07-24 16:17:28 +0800747 if (pint_val == IRQ_NOT_AVAIL) {
748 printk(KERN_ERR
749 "GPIO IRQ %d :Not in PINT Assign table "
750 "Reconfigure Interrupt to Port Assignemt\n", irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800751 return -ENODEV;
Michael Hennerich50e163c2007-07-24 16:17:28 +0800752 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800753
Michael Hennerich8d022372008-11-18 17:48:22 +0800754 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800755 bfin_gpio_irq_prepare(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800756
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800757 bfin_gpio_unmask_irq(irq);
758
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800759 return 0;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800760}
761
762static void bfin_gpio_irq_shutdown(unsigned int irq)
763{
Michael Hennerich8d022372008-11-18 17:48:22 +0800764 u32 gpionr = irq_to_gpio(irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800765
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800766 bfin_gpio_mask_irq(irq);
Michael Hennerich8d022372008-11-18 17:48:22 +0800767 __clear_bit(gpionr, gpio_enabled);
Graf Yang9570ff42009-01-07 23:14:38 +0800768 bfin_gpio_irq_free(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800769}
770
771static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
772{
Graf Yang8eb3e3b2008-11-18 17:48:22 +0800773 int ret;
774 char buf[16];
Michael Hennerich8d022372008-11-18 17:48:22 +0800775 u32 gpionr = irq_to_gpio(irq);
776 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800777 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800778 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800779
780 if (pint_val == IRQ_NOT_AVAIL)
781 return -ENODEV;
782
783 if (type == IRQ_TYPE_PROBE) {
784 /* only probe unenabled GPIO interrupt lines */
Mike Frysingerc3695342009-06-13 10:32:29 -0400785 if (test_bit(gpionr, gpio_enabled))
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800786 return 0;
787 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
788 }
789
790 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
791 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Graf Yang9570ff42009-01-07 23:14:38 +0800792
793 snprintf(buf, 16, "gpio-irq%d", irq);
794 ret = bfin_gpio_irq_request(gpionr, buf);
795 if (ret)
796 return ret;
797
Michael Hennerich8d022372008-11-18 17:48:22 +0800798 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800799 bfin_gpio_irq_prepare(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800800
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800801 } else {
Michael Hennerich8d022372008-11-18 17:48:22 +0800802 __clear_bit(gpionr, gpio_enabled);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800803 return 0;
804 }
805
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800806 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
Michael Henneriche3f23002007-07-12 16:39:29 +0800807 pint[bank]->invert_set = pintbit; /* low or falling edge denoted by one */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800808 else
Michael Hennerich8baf5602007-12-24 18:51:34 +0800809 pint[bank]->invert_clear = pintbit; /* high or rising edge denoted by zero */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800810
Michael Hennerich8baf5602007-12-24 18:51:34 +0800811 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
812 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
Michael Hennerich8baf5602007-12-24 18:51:34 +0800813 if (gpio_get_value(gpionr))
814 pint[bank]->invert_set = pintbit;
815 else
816 pint[bank]->invert_clear = pintbit;
Michael Hennerich8baf5602007-12-24 18:51:34 +0800817 }
818
819 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
820 pint[bank]->edge_set = pintbit;
Graf Yangbfd15112008-10-08 18:02:44 +0800821 bfin_set_irq_handler(irq, handle_edge_irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800822 } else {
823 pint[bank]->edge_clear = pintbit;
Graf Yangbfd15112008-10-08 18:02:44 +0800824 bfin_set_irq_handler(irq, handle_level_irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800825 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800826
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800827 return 0;
828}
829
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800830#ifdef CONFIG_PM
831u32 pint_saved_masks[NR_PINT_SYS_IRQS];
832u32 pint_wakeup_masks[NR_PINT_SYS_IRQS];
833
834int bfin_gpio_set_wake(unsigned int irq, unsigned int state)
835{
836 u32 pint_irq;
Michael Hennerich8d022372008-11-18 17:48:22 +0800837 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800838 u32 bank = PINT_2_BANK(pint_val);
839 u32 pintbit = PINT_BIT(pint_val);
840
841 switch (bank) {
842 case 0:
843 pint_irq = IRQ_PINT0;
844 break;
845 case 2:
846 pint_irq = IRQ_PINT2;
847 break;
848 case 3:
849 pint_irq = IRQ_PINT3;
850 break;
851 case 1:
852 pint_irq = IRQ_PINT1;
853 break;
854 default:
855 return -EINVAL;
856 }
857
858 bfin_internal_set_wake(pint_irq, state);
859
860 if (state)
861 pint_wakeup_masks[bank] |= pintbit;
862 else
863 pint_wakeup_masks[bank] &= ~pintbit;
864
865 return 0;
866}
867
868u32 bfin_pm_setup(void)
869{
870 u32 val, i;
871
872 for (i = 0; i < NR_PINT_SYS_IRQS; i++) {
873 val = pint[i]->mask_clear;
874 pint_saved_masks[i] = val;
875 if (val ^ pint_wakeup_masks[i]) {
876 pint[i]->mask_clear = val;
877 pint[i]->mask_set = pint_wakeup_masks[i];
878 }
879 }
880
881 return 0;
882}
883
884void bfin_pm_restore(void)
885{
886 u32 i, val;
887
888 for (i = 0; i < NR_PINT_SYS_IRQS; i++) {
889 val = pint_saved_masks[i];
890 if (val ^ pint_wakeup_masks[i]) {
891 pint[i]->mask_clear = pint[i]->mask_clear;
892 pint[i]->mask_set = val;
893 }
894 }
895}
896#endif
897
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800898static void bfin_demux_gpio_irq(unsigned int inta_irq,
899 struct irq_desc *desc)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800900{
Michael Hennerich8d022372008-11-18 17:48:22 +0800901 u32 bank, pint_val;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800902 u32 request, irq;
903
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800904 switch (inta_irq) {
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800905 case IRQ_PINT0:
906 bank = 0;
907 break;
908 case IRQ_PINT2:
909 bank = 2;
910 break;
911 case IRQ_PINT3:
912 bank = 3;
913 break;
914 case IRQ_PINT1:
915 bank = 1;
916 break;
Michael Henneriche3f23002007-07-12 16:39:29 +0800917 default:
918 return;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800919 }
920
921 pint_val = bank * NR_PINT_BITS;
922
923 request = pint[bank]->request;
924
925 while (request) {
926 if (request & 1) {
Michael Henneriche3f23002007-07-12 16:39:29 +0800927 irq = pint2irq_lut[pint_val] + SYS_IRQS;
Yi Li6a01f232009-01-07 23:14:39 +0800928 bfin_handle_irq(irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800929 }
930 pint_val++;
931 request >>= 1;
932 }
933
934}
Mike Frysingera055b2b2007-11-15 21:12:32 +0800935#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700936
Michael Hennerich8d022372008-11-18 17:48:22 +0800937static struct irq_chip bfin_gpio_irqchip = {
938 .name = "GPIO",
939 .ack = bfin_gpio_ack_irq,
940 .mask = bfin_gpio_mask_irq,
941 .mask_ack = bfin_gpio_mask_ack_irq,
942 .unmask = bfin_gpio_unmask_irq,
943 .disable = bfin_gpio_mask_irq,
944 .enable = bfin_gpio_unmask_irq,
945 .set_type = bfin_gpio_irq_type,
946 .startup = bfin_gpio_irq_startup,
947 .shutdown = bfin_gpio_irq_shutdown,
948#ifdef CONFIG_PM
949 .set_wake = bfin_gpio_set_wake,
950#endif
951};
952
Graf Yang6b3087c2009-01-07 23:14:39 +0800953void __cpuinit init_exception_vectors(void)
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800954{
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800955 /* cannot program in software:
956 * evt0 - emulation (jtag)
957 * evt1 - reset
958 */
959 bfin_write_EVT2(evt_nmi);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800960 bfin_write_EVT3(trap);
961 bfin_write_EVT5(evt_ivhw);
962 bfin_write_EVT6(evt_timer);
963 bfin_write_EVT7(evt_evt7);
964 bfin_write_EVT8(evt_evt8);
965 bfin_write_EVT9(evt_evt9);
966 bfin_write_EVT10(evt_evt10);
967 bfin_write_EVT11(evt_evt11);
968 bfin_write_EVT12(evt_evt12);
969 bfin_write_EVT13(evt_evt13);
Philippe Gerum9703a732009-06-22 18:23:48 +0200970 bfin_write_EVT14(evt_evt14);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800971 bfin_write_EVT15(evt_system_call);
972 CSYNC();
973}
974
Bryan Wu1394f032007-05-06 14:50:22 -0700975/*
976 * This function should be called during kernel startup to initialize
977 * the BFin IRQ handling routines.
978 */
Michael Hennerich8d022372008-11-18 17:48:22 +0800979
Bryan Wu1394f032007-05-06 14:50:22 -0700980int __init init_arch_irq(void)
981{
982 int irq;
983 unsigned long ilat = 0;
984 /* Disable all the peripheral intrs - page 4-29 HW Ref manual */
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800985#if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) \
986 || defined(BF538_FAMILY) || defined(CONFIG_BF51x)
Roy Huang24a07a12007-07-12 22:41:45 +0800987 bfin_write_SIC_IMASK0(SIC_UNMASK_ALL);
988 bfin_write_SIC_IMASK1(SIC_UNMASK_ALL);
Mike Frysingera055b2b2007-11-15 21:12:32 +0800989# ifdef CONFIG_BF54x
Michael Hennerich59003142007-10-21 16:54:27 +0800990 bfin_write_SIC_IMASK2(SIC_UNMASK_ALL);
Mike Frysingera055b2b2007-11-15 21:12:32 +0800991# endif
Graf Yang6b3087c2009-01-07 23:14:39 +0800992# ifdef CONFIG_SMP
993 bfin_write_SICB_IMASK0(SIC_UNMASK_ALL);
994 bfin_write_SICB_IMASK1(SIC_UNMASK_ALL);
995# endif
Roy Huang24a07a12007-07-12 22:41:45 +0800996#else
Bryan Wu1394f032007-05-06 14:50:22 -0700997 bfin_write_SIC_IMASK(SIC_UNMASK_ALL);
Roy Huang24a07a12007-07-12 22:41:45 +0800998#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700999
1000 local_irq_disable();
1001
Mike Frysingerd70536e2008-08-25 17:37:35 +08001002#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
Mike Frysinger95a86b52008-08-14 15:05:01 +08001003 /* Clear EMAC Interrupt Status bits so we can demux it later */
1004 bfin_write_EMAC_SYSTAT(-1);
1005#endif
1006
Mike Frysingera055b2b2007-11-15 21:12:32 +08001007#ifdef CONFIG_BF54x
1008# ifdef CONFIG_PINTx_REASSIGN
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001009 pint[0]->assign = CONFIG_PINT0_ASSIGN;
1010 pint[1]->assign = CONFIG_PINT1_ASSIGN;
1011 pint[2]->assign = CONFIG_PINT2_ASSIGN;
1012 pint[3]->assign = CONFIG_PINT3_ASSIGN;
Mike Frysingera055b2b2007-11-15 21:12:32 +08001013# endif
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001014 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
1015 init_pint_lut();
1016#endif
1017
1018 for (irq = 0; irq <= SYS_IRQS; irq++) {
Bryan Wu1394f032007-05-06 14:50:22 -07001019 if (irq <= IRQ_CORETMR)
1020 set_irq_chip(irq, &bfin_core_irqchip);
1021 else
1022 set_irq_chip(irq, &bfin_internal_irqchip);
Bryan Wu1394f032007-05-06 14:50:22 -07001023
Michael Hennerich464abc52008-02-25 13:50:20 +08001024 switch (irq) {
Michael Hennerich59003142007-10-21 16:54:27 +08001025#if defined(CONFIG_BF53x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001026 case IRQ_PROG_INTA:
Mike Frysingera055b2b2007-11-15 21:12:32 +08001027# if defined(BF537_FAMILY) && !(defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
Michael Hennerich464abc52008-02-25 13:50:20 +08001028 case IRQ_MAC_RX:
Mike Frysingera055b2b2007-11-15 21:12:32 +08001029# endif
Michael Hennerich59003142007-10-21 16:54:27 +08001030#elif defined(CONFIG_BF54x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001031 case IRQ_PINT0:
1032 case IRQ_PINT1:
1033 case IRQ_PINT2:
1034 case IRQ_PINT3:
Bryan Wu2f6f4bc2008-11-18 17:48:21 +08001035#elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001036 case IRQ_PORTF_INTA:
1037 case IRQ_PORTG_INTA:
1038 case IRQ_PORTH_INTA:
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001039#elif defined(CONFIG_BF561)
Michael Hennerich464abc52008-02-25 13:50:20 +08001040 case IRQ_PROG0_INTA:
1041 case IRQ_PROG1_INTA:
1042 case IRQ_PROG2_INTA:
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001043#elif defined(CONFIG_BF538) || defined(CONFIG_BF539)
1044 case IRQ_PORTF_INTA:
Michael Hennerich59003142007-10-21 16:54:27 +08001045#endif
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001046
Michael Hennerich464abc52008-02-25 13:50:20 +08001047 set_irq_chained_handler(irq,
1048 bfin_demux_gpio_irq);
1049 break;
Bryan Wu1394f032007-05-06 14:50:22 -07001050#ifdef BF537_GENERIC_ERROR_INT_DEMUX
Michael Hennerich464abc52008-02-25 13:50:20 +08001051 case IRQ_GENERIC_ERROR:
Yi Li6a01f232009-01-07 23:14:39 +08001052 set_irq_chained_handler(irq, bfin_demux_error_irq);
Michael Hennerich464abc52008-02-25 13:50:20 +08001053 break;
1054#endif
Graf Yang6b3087c2009-01-07 23:14:39 +08001055#ifdef CONFIG_SMP
1056 case IRQ_SUPPLE_0:
1057 case IRQ_SUPPLE_1:
1058 set_irq_handler(irq, handle_percpu_irq);
1059 break;
1060#endif
Yi Li6a01f232009-01-07 23:14:39 +08001061#ifdef CONFIG_IPIPE
Philippe Geruma40494a2009-06-16 05:25:42 +02001062#ifndef CONFIG_TICKSOURCE_CORETMR
1063 case IRQ_TIMER0:
Michael Hennerich464abc52008-02-25 13:50:20 +08001064 set_irq_handler(irq, handle_simple_irq);
1065 break;
Philippe Geruma40494a2009-06-16 05:25:42 +02001066#endif /* !CONFIG_TICKSOURCE_CORETMR */
1067 case IRQ_CORETMR:
1068 set_irq_handler(irq, handle_simple_irq);
1069 break;
1070 default:
1071 set_irq_handler(irq, handle_level_irq);
1072 break;
1073#else /* !CONFIG_IPIPE */
1074#ifdef CONFIG_TICKSOURCE_GPTMR0
1075 case IRQ_TIMER0:
1076 set_irq_handler(irq, handle_percpu_irq);
1077 break;
1078#endif /* CONFIG_TICKSOURCE_GPTMR0 */
1079 default:
1080 set_irq_handler(irq, handle_simple_irq);
1081 break;
1082#endif /* !CONFIG_IPIPE */
Bryan Wu1394f032007-05-06 14:50:22 -07001083 }
Bryan Wu1394f032007-05-06 14:50:22 -07001084 }
Michael Hennerich464abc52008-02-25 13:50:20 +08001085
Bryan Wu1394f032007-05-06 14:50:22 -07001086#ifdef BF537_GENERIC_ERROR_INT_DEMUX
Michael Hennerich464abc52008-02-25 13:50:20 +08001087 for (irq = IRQ_PPI_ERROR; irq <= IRQ_UART1_ERROR; irq++)
1088 set_irq_chip_and_handler(irq, &bfin_generic_error_irqchip,
1089 handle_level_irq);
Bryan Wu1394f032007-05-06 14:50:22 -07001090#endif
1091
Michael Hennerich464abc52008-02-25 13:50:20 +08001092 /* if configured as edge, then will be changed to do_edge_IRQ */
1093 for (irq = GPIO_IRQ_BASE; irq < NR_IRQS; irq++)
1094 set_irq_chip_and_handler(irq, &bfin_gpio_irqchip,
1095 handle_level_irq);
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001096
Mike Frysingera055b2b2007-11-15 21:12:32 +08001097
Bryan Wu1394f032007-05-06 14:50:22 -07001098 bfin_write_IMASK(0);
1099 CSYNC();
1100 ilat = bfin_read_ILAT();
1101 CSYNC();
1102 bfin_write_ILAT(ilat);
1103 CSYNC();
1104
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001105 printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n");
Mike Frysinger40059782008-11-18 17:48:22 +08001106 /* IMASK=xxx is equivalent to STI xx or bfin_irq_flags=xx,
Bryan Wu1394f032007-05-06 14:50:22 -07001107 * local_irq_enable()
1108 */
1109 program_IAR();
1110 /* Therefore it's better to setup IARs before interrupts enabled */
1111 search_IAR();
1112
1113 /* Enable interrupts IVG7-15 */
Mike Frysinger40059782008-11-18 17:48:22 +08001114 bfin_irq_flags |= IMASK_IVG15 |
Bryan Wu1394f032007-05-06 14:50:22 -07001115 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001116 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
Bryan Wu1394f032007-05-06 14:50:22 -07001117
Michael Hennerich349ebbc2009-04-15 08:48:08 +00001118 /* This implicitly covers ANOMALY_05000171
1119 * Boot-ROM code modifies SICA_IWRx wakeup registers
1120 */
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001121#ifdef SIC_IWR0
Michael Hennerich56f5f592008-08-06 17:55:32 +08001122 bfin_write_SIC_IWR0(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001123# ifdef SIC_IWR1
Bryan Wu2f6f4bc2008-11-18 17:48:21 +08001124 /* BF52x/BF51x system reset does not properly reset SIC_IWR1 which
Michael Hennerich55546ac2008-08-13 17:41:13 +08001125 * will screw up the bootrom as it relies on MDMA0/1 waking it
1126 * up from IDLE instructions. See this report for more info:
1127 * http://blackfin.uclinux.org/gf/tracker/4323
1128 */
Mike Frysingerb7e11292008-11-18 17:48:22 +08001129 if (ANOMALY_05000435)
1130 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
1131 else
1132 bfin_write_SIC_IWR1(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001133# endif
1134# ifdef SIC_IWR2
Michael Hennerich56f5f592008-08-06 17:55:32 +08001135 bfin_write_SIC_IWR2(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001136# endif
1137#else
Michael Hennerich56f5f592008-08-06 17:55:32 +08001138 bfin_write_SIC_IWR(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001139#endif
1140
Bryan Wu1394f032007-05-06 14:50:22 -07001141 return 0;
1142}
1143
1144#ifdef CONFIG_DO_IRQ_L1
Mike Frysingera055b2b2007-11-15 21:12:32 +08001145__attribute__((l1_text))
Bryan Wu1394f032007-05-06 14:50:22 -07001146#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001147void do_irq(int vec, struct pt_regs *fp)
1148{
1149 if (vec == EVT_IVTMR_P) {
1150 vec = IRQ_CORETMR;
1151 } else {
1152 struct ivgx *ivg = ivg7_13[vec - IVG7].ifirst;
1153 struct ivgx *ivg_stop = ivg7_13[vec - IVG7].istop;
Mike Frysinger780172b2009-06-01 19:43:02 -04001154#if defined(SIC_ISR0) || defined(SICA_ISR0)
Roy Huang24a07a12007-07-12 22:41:45 +08001155 unsigned long sic_status[3];
Bryan Wu1394f032007-05-06 14:50:22 -07001156
Graf Yang6b3087c2009-01-07 23:14:39 +08001157 if (smp_processor_id()) {
Mike Frysinger780172b2009-06-01 19:43:02 -04001158# ifdef SICB_ISR0
Graf Yang6b3087c2009-01-07 23:14:39 +08001159 /* This will be optimized out in UP mode. */
1160 sic_status[0] = bfin_read_SICB_ISR0() & bfin_read_SICB_IMASK0();
1161 sic_status[1] = bfin_read_SICB_ISR1() & bfin_read_SICB_IMASK1();
Mike Frysinger780172b2009-06-01 19:43:02 -04001162# endif
Graf Yang6b3087c2009-01-07 23:14:39 +08001163 } else {
1164 sic_status[0] = bfin_read_SIC_ISR0() & bfin_read_SIC_IMASK0();
1165 sic_status[1] = bfin_read_SIC_ISR1() & bfin_read_SIC_IMASK1();
1166 }
Mike Frysinger780172b2009-06-01 19:43:02 -04001167# ifdef SIC_ISR2
Michael Hennerich4fb45242007-10-21 16:53:53 +08001168 sic_status[2] = bfin_read_SIC_ISR2() & bfin_read_SIC_IMASK2();
Mike Frysinger780172b2009-06-01 19:43:02 -04001169# endif
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001170 for (;; ivg++) {
Roy Huang24a07a12007-07-12 22:41:45 +08001171 if (ivg >= ivg_stop) {
1172 atomic_inc(&num_spurious);
1173 return;
1174 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001175 if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag)
Roy Huang24a07a12007-07-12 22:41:45 +08001176 break;
1177 }
1178#else
1179 unsigned long sic_status;
Michael Hennerich464abc52008-02-25 13:50:20 +08001180
Bryan Wu1394f032007-05-06 14:50:22 -07001181 sic_status = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
1182
1183 for (;; ivg++) {
1184 if (ivg >= ivg_stop) {
1185 atomic_inc(&num_spurious);
1186 return;
1187 } else if (sic_status & ivg->isrflag)
1188 break;
1189 }
Roy Huang24a07a12007-07-12 22:41:45 +08001190#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001191 vec = ivg->irqno;
1192 }
1193 asm_do_IRQ(vec, fp);
Bryan Wu1394f032007-05-06 14:50:22 -07001194}
Yi Li6a01f232009-01-07 23:14:39 +08001195
1196#ifdef CONFIG_IPIPE
1197
1198int __ipipe_get_irq_priority(unsigned irq)
1199{
1200 int ient, prio;
1201
1202 if (irq <= IRQ_CORETMR)
1203 return irq;
1204
1205 for (ient = 0; ient < NR_PERI_INTS; ient++) {
1206 struct ivgx *ivg = ivg_table + ient;
1207 if (ivg->irqno == irq) {
1208 for (prio = 0; prio <= IVG13-IVG7; prio++) {
1209 if (ivg7_13[prio].ifirst <= ivg &&
1210 ivg7_13[prio].istop > ivg)
1211 return IVG7 + prio;
1212 }
1213 }
1214 }
1215
1216 return IVG15;
1217}
1218
Yi Li6a01f232009-01-07 23:14:39 +08001219/* Hw interrupts are disabled on entry (check SAVE_CONTEXT). */
1220#ifdef CONFIG_DO_IRQ_L1
1221__attribute__((l1_text))
1222#endif
1223asmlinkage int __ipipe_grab_irq(int vec, struct pt_regs *regs)
1224{
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001225 struct ipipe_percpu_domain_data *p = ipipe_root_cpudom_ptr();
Philippe Geruma40494a2009-06-16 05:25:42 +02001226 struct ipipe_domain *this_domain = __ipipe_current_domain;
Yi Li6a01f232009-01-07 23:14:39 +08001227 struct ivgx *ivg_stop = ivg7_13[vec-IVG7].istop;
1228 struct ivgx *ivg = ivg7_13[vec-IVG7].ifirst;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001229 int irq, s;
Yi Li6a01f232009-01-07 23:14:39 +08001230
Philippe Geruma40494a2009-06-16 05:25:42 +02001231 if (likely(vec == EVT_IVTMR_P))
Yi Li6a01f232009-01-07 23:14:39 +08001232 irq = IRQ_CORETMR;
Philippe Geruma40494a2009-06-16 05:25:42 +02001233 else {
Mike Frysinger780172b2009-06-01 19:43:02 -04001234#if defined(SIC_ISR0) || defined(SICA_ISR0)
Yi Li6a01f232009-01-07 23:14:39 +08001235 unsigned long sic_status[3];
1236
1237 sic_status[0] = bfin_read_SIC_ISR0() & bfin_read_SIC_IMASK0();
1238 sic_status[1] = bfin_read_SIC_ISR1() & bfin_read_SIC_IMASK1();
Mike Frysinger780172b2009-06-01 19:43:02 -04001239# ifdef SIC_ISR2
Yi Li6a01f232009-01-07 23:14:39 +08001240 sic_status[2] = bfin_read_SIC_ISR2() & bfin_read_SIC_IMASK2();
Mike Frysinger780172b2009-06-01 19:43:02 -04001241# endif
Yi Li6a01f232009-01-07 23:14:39 +08001242 for (;; ivg++) {
1243 if (ivg >= ivg_stop) {
1244 atomic_inc(&num_spurious);
1245 return 0;
1246 }
1247 if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag)
1248 break;
1249 }
Yi Li6a01f232009-01-07 23:14:39 +08001250#else
Yi Li6a01f232009-01-07 23:14:39 +08001251 unsigned long sic_status;
1252
1253 sic_status = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
1254
1255 for (;; ivg++) {
1256 if (ivg >= ivg_stop) {
1257 atomic_inc(&num_spurious);
1258 return 0;
1259 } else if (sic_status & ivg->isrflag)
1260 break;
1261 }
Yi Li6a01f232009-01-07 23:14:39 +08001262#endif
Graf Yang1fa9be72009-05-15 11:01:59 +00001263 irq = ivg->irqno;
1264 }
Yi Li6a01f232009-01-07 23:14:39 +08001265
1266 if (irq == IRQ_SYSTMR) {
Philippe Geruma40494a2009-06-16 05:25:42 +02001267#if !defined(CONFIG_GENERIC_CLOCKEVENTS) || defined(CONFIG_TICKSOURCE_GPTMR0)
Yi Li6a01f232009-01-07 23:14:39 +08001268 bfin_write_TIMER_STATUS(1); /* Latch TIMIL0 */
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001269#endif
Yi Li6a01f232009-01-07 23:14:39 +08001270 /* This is basically what we need from the register frame. */
1271 __raw_get_cpu_var(__ipipe_tick_regs).ipend = regs->ipend;
1272 __raw_get_cpu_var(__ipipe_tick_regs).pc = regs->pc;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001273 if (this_domain != ipipe_root_domain)
Yi Li6a01f232009-01-07 23:14:39 +08001274 __raw_get_cpu_var(__ipipe_tick_regs).ipend &= ~0x10;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001275 else
1276 __raw_get_cpu_var(__ipipe_tick_regs).ipend |= 0x10;
Yi Li6a01f232009-01-07 23:14:39 +08001277 }
1278
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001279 if (this_domain == ipipe_root_domain) {
1280 s = __test_and_set_bit(IPIPE_SYNCDEFER_FLAG, &p->status);
1281 barrier();
1282 }
Yi Li6a01f232009-01-07 23:14:39 +08001283
1284 ipipe_trace_irq_entry(irq);
1285 __ipipe_handle_irq(irq, regs);
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001286 ipipe_trace_irq_exit(irq);
Yi Li6a01f232009-01-07 23:14:39 +08001287
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001288 if (this_domain == ipipe_root_domain) {
1289 set_thread_flag(TIF_IRQ_SYNC);
1290 if (!s) {
1291 __clear_bit(IPIPE_SYNCDEFER_FLAG, &p->status);
1292 return !test_bit(IPIPE_STALL_FLAG, &p->status);
1293 }
1294 }
Yi Li6a01f232009-01-07 23:14:39 +08001295
Graf Yang1fa9be72009-05-15 11:01:59 +00001296 return 0;
Yi Li6a01f232009-01-07 23:14:39 +08001297}
1298
1299#endif /* CONFIG_IPIPE */