blob: 332dace6af3438ed8156178817df718e6feaab65 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Set up the interrupt priorities
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Copyright 2004-2009 Analog Devices Inc.
5 * 2003 Bas Vermeulen <bas@buyways.nl>
6 * 2002 Arcturus Networks Inc. MaTed <mated@sympatico.ca>
7 * 2000-2001 Lineo, Inc. D. Jefff Dionne <jeff@lineo.ca>
8 * 1999 D. Jeff Dionne <jeff@uclinux.org>
9 * 1996 Roman Zippel
Bryan Wu1394f032007-05-06 14:50:22 -070010 *
Robin Getz96f10502009-09-24 14:11:24 +000011 * Licensed under the GPL-2
Bryan Wu1394f032007-05-06 14:50:22 -070012 */
13
14#include <linux/module.h>
15#include <linux/kernel_stat.h>
16#include <linux/seq_file.h>
17#include <linux/irq.h>
Philippe Gerum5b5da4c2011-03-17 02:12:48 -040018#include <linux/sched.h>
Yi Li6a01f232009-01-07 23:14:39 +080019#ifdef CONFIG_IPIPE
20#include <linux/ipipe.h>
21#endif
Bryan Wu1394f032007-05-06 14:50:22 -070022#include <asm/traps.h>
23#include <asm/blackfin.h>
24#include <asm/gpio.h>
25#include <asm/irq_handler.h>
Mike Frysinger761ec442009-10-15 17:12:05 +000026#include <asm/dpmc.h>
Bryan Wu1394f032007-05-06 14:50:22 -070027
Mike Frysinger7beb7432008-11-18 17:48:22 +080028#define SIC_SYSIRQ(irq) (irq - (IRQ_CORETMR + 1))
29
Bryan Wu1394f032007-05-06 14:50:22 -070030/*
31 * NOTES:
32 * - we have separated the physical Hardware interrupt from the
33 * levels that the LINUX kernel sees (see the description in irq.h)
34 * -
35 */
36
Graf Yang6b3087c2009-01-07 23:14:39 +080037#ifndef CONFIG_SMP
Mike Frysingera99bbcc2007-10-22 00:19:31 +080038/* Initialize this to an actual value to force it into the .data
39 * section so that we know it is properly initialized at entry into
40 * the kernel but before bss is initialized to zero (which is where
41 * it would live otherwise). The 0x1f magic represents the IRQs we
42 * cannot actually mask out in hardware.
43 */
Mike Frysinger40059782008-11-18 17:48:22 +080044unsigned long bfin_irq_flags = 0x1f;
45EXPORT_SYMBOL(bfin_irq_flags);
Graf Yang6b3087c2009-01-07 23:14:39 +080046#endif
Bryan Wu1394f032007-05-06 14:50:22 -070047
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080048#ifdef CONFIG_PM
49unsigned long bfin_sic_iwr[3]; /* Up to 3 SIC_IWRx registers */
Michael Hennerich4a88d0c2008-08-05 17:38:41 +080050unsigned vr_wakeup;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080051#endif
52
Mike Frysingere9e334c2011-03-30 00:43:52 -040053static struct ivgx {
Michael Hennerich464abc52008-02-25 13:50:20 +080054 /* irq number for request_irq, available in mach-bf5xx/irq.h */
Roy Huang24a07a12007-07-12 22:41:45 +080055 unsigned int irqno;
Bryan Wu1394f032007-05-06 14:50:22 -070056 /* corresponding bit in the SIC_ISR register */
Roy Huang24a07a12007-07-12 22:41:45 +080057 unsigned int isrflag;
Bryan Wu1394f032007-05-06 14:50:22 -070058} ivg_table[NR_PERI_INTS];
59
Mike Frysingere9e334c2011-03-30 00:43:52 -040060static struct ivg_slice {
Bryan Wu1394f032007-05-06 14:50:22 -070061 /* position of first irq in ivg_table for given ivg */
62 struct ivgx *ifirst;
63 struct ivgx *istop;
64} ivg7_13[IVG13 - IVG7 + 1];
65
Bryan Wu1394f032007-05-06 14:50:22 -070066
67/*
68 * Search SIC_IAR and fill tables with the irqvalues
69 * and their positions in the SIC_ISR register.
70 */
71static void __init search_IAR(void)
72{
73 unsigned ivg, irq_pos = 0;
74 for (ivg = 0; ivg <= IVG13 - IVG7; ivg++) {
Mike Frysinger80fcdb92010-04-22 21:15:00 +000075 int irqN;
Bryan Wu1394f032007-05-06 14:50:22 -070076
Michael Hennerich34e0fc82007-07-12 16:17:18 +080077 ivg7_13[ivg].istop = ivg7_13[ivg].ifirst = &ivg_table[irq_pos];
Bryan Wu1394f032007-05-06 14:50:22 -070078
Mike Frysinger80fcdb92010-04-22 21:15:00 +000079 for (irqN = 0; irqN < NR_PERI_INTS; irqN += 4) {
80 int irqn;
81 u32 iar = bfin_read32((unsigned long *)SIC_IAR0 +
82#if defined(CONFIG_BF51x) || defined(CONFIG_BF52x) || \
83 defined(CONFIG_BF538) || defined(CONFIG_BF539)
84 ((irqN % 32) >> 3) + ((irqN / 32) * ((SIC_IAR4 - SIC_IAR0) / 4))
Michael Hennerich59003142007-10-21 16:54:27 +080085#else
Mike Frysinger80fcdb92010-04-22 21:15:00 +000086 (irqN >> 3)
Michael Hennerich59003142007-10-21 16:54:27 +080087#endif
Mike Frysinger80fcdb92010-04-22 21:15:00 +000088 );
89
90 for (irqn = irqN; irqn < irqN + 4; ++irqn) {
91 int iar_shift = (irqn & 7) * 4;
92 if (ivg == (0xf & (iar >> iar_shift))) {
93 ivg_table[irq_pos].irqno = IVG7 + irqn;
94 ivg_table[irq_pos].isrflag = 1 << (irqn % 32);
95 ivg7_13[ivg].istop++;
96 irq_pos++;
97 }
Bryan Wu1394f032007-05-06 14:50:22 -070098 }
99 }
100 }
101}
102
103/*
Michael Hennerich464abc52008-02-25 13:50:20 +0800104 * This is for core internal IRQs
Bryan Wu1394f032007-05-06 14:50:22 -0700105 */
106
Mike Frysingerf58c3272011-04-15 03:08:20 -0400107void bfin_ack_noop(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700108{
109 /* Dummy function. */
110}
111
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000112static void bfin_core_mask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700113{
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000114 bfin_irq_flags &= ~(1 << d->irq);
David Howells3b139cd2010-10-07 14:08:52 +0100115 if (!hard_irqs_disabled())
116 hard_local_irq_enable();
Bryan Wu1394f032007-05-06 14:50:22 -0700117}
118
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000119static void bfin_core_unmask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700120{
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000121 bfin_irq_flags |= 1 << d->irq;
Bryan Wu1394f032007-05-06 14:50:22 -0700122 /*
123 * If interrupts are enabled, IMASK must contain the same value
Mike Frysinger40059782008-11-18 17:48:22 +0800124 * as bfin_irq_flags. Make sure that invariant holds. If interrupts
Bryan Wu1394f032007-05-06 14:50:22 -0700125 * are currently disabled we need not do anything; one of the
126 * callers will take care of setting IMASK to the proper value
127 * when reenabling interrupts.
Mike Frysinger40059782008-11-18 17:48:22 +0800128 * local_irq_enable just does "STI bfin_irq_flags", so it's exactly
Bryan Wu1394f032007-05-06 14:50:22 -0700129 * what we need.
130 */
David Howells3b139cd2010-10-07 14:08:52 +0100131 if (!hard_irqs_disabled())
132 hard_local_irq_enable();
Bryan Wu1394f032007-05-06 14:50:22 -0700133 return;
134}
135
Mike Frysingerf58c3272011-04-15 03:08:20 -0400136void bfin_internal_mask_irq(unsigned int irq)
Bryan Wu1394f032007-05-06 14:50:22 -0700137{
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400138 unsigned long flags = hard_local_irq_save();
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800139
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400140#ifdef SIC_IMASK0
141 unsigned mask_bank = SIC_SYSIRQ(irq) / 32;
142 unsigned mask_bit = SIC_SYSIRQ(irq) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800143 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) &
144 ~(1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400145# ifdef CONFIG_SMP
Graf Yang6b3087c2009-01-07 23:14:39 +0800146 bfin_write_SICB_IMASK(mask_bank, bfin_read_SICB_IMASK(mask_bank) &
147 ~(1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400148# endif
149#else
150 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
151 ~(1 << SIC_SYSIRQ(irq)));
Graf Yang6b3087c2009-01-07 23:14:39 +0800152#endif
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400153
David Howells3b139cd2010-10-07 14:08:52 +0100154 hard_local_irq_restore(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700155}
156
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000157static void bfin_internal_mask_irq_chip(struct irq_data *d)
158{
159 bfin_internal_mask_irq(d->irq);
160}
161
Sonic Zhang0325f252009-12-28 07:29:57 +0000162#ifdef CONFIG_SMP
163static void bfin_internal_unmask_irq_affinity(unsigned int irq,
164 const struct cpumask *affinity)
165#else
Mike Frysingerf58c3272011-04-15 03:08:20 -0400166void bfin_internal_unmask_irq(unsigned int irq)
Sonic Zhang0325f252009-12-28 07:29:57 +0000167#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700168{
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400169 unsigned long flags = hard_local_irq_save();
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800170
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400171#ifdef SIC_IMASK0
172 unsigned mask_bank = SIC_SYSIRQ(irq) / 32;
173 unsigned mask_bit = SIC_SYSIRQ(irq) % 32;
174# ifdef CONFIG_SMP
Sonic Zhang0325f252009-12-28 07:29:57 +0000175 if (cpumask_test_cpu(0, affinity))
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400176# endif
Sonic Zhang0325f252009-12-28 07:29:57 +0000177 bfin_write_SIC_IMASK(mask_bank,
178 bfin_read_SIC_IMASK(mask_bank) |
179 (1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400180# ifdef CONFIG_SMP
Sonic Zhang0325f252009-12-28 07:29:57 +0000181 if (cpumask_test_cpu(1, affinity))
182 bfin_write_SICB_IMASK(mask_bank,
183 bfin_read_SICB_IMASK(mask_bank) |
184 (1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400185# endif
186#else
187 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() |
188 (1 << SIC_SYSIRQ(irq)));
Graf Yang6b3087c2009-01-07 23:14:39 +0800189#endif
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400190
David Howells3b139cd2010-10-07 14:08:52 +0100191 hard_local_irq_restore(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700192}
193
Sonic Zhang0325f252009-12-28 07:29:57 +0000194#ifdef CONFIG_SMP
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000195static void bfin_internal_unmask_irq_chip(struct irq_data *d)
Sonic Zhang0325f252009-12-28 07:29:57 +0000196{
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000197 bfin_internal_unmask_irq_affinity(d->irq, d->affinity);
Sonic Zhang0325f252009-12-28 07:29:57 +0000198}
199
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000200static int bfin_internal_set_affinity(struct irq_data *d,
201 const struct cpumask *mask, bool force)
Sonic Zhang0325f252009-12-28 07:29:57 +0000202{
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000203 bfin_internal_mask_irq(d->irq);
204 bfin_internal_unmask_irq_affinity(d->irq, mask);
Sonic Zhang0325f252009-12-28 07:29:57 +0000205
206 return 0;
207}
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000208#else
209static void bfin_internal_unmask_irq_chip(struct irq_data *d)
210{
211 bfin_internal_unmask_irq(d->irq);
212}
Sonic Zhang0325f252009-12-28 07:29:57 +0000213#endif
214
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800215#ifdef CONFIG_PM
216int bfin_internal_set_wake(unsigned int irq, unsigned int state)
217{
Michael Hennerich8d022372008-11-18 17:48:22 +0800218 u32 bank, bit, wakeup = 0;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800219 unsigned long flags;
Michael Hennerich464abc52008-02-25 13:50:20 +0800220 bank = SIC_SYSIRQ(irq) / 32;
221 bit = SIC_SYSIRQ(irq) % 32;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800222
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800223 switch (irq) {
224#ifdef IRQ_RTC
225 case IRQ_RTC:
226 wakeup |= WAKE;
227 break;
228#endif
229#ifdef IRQ_CAN0_RX
230 case IRQ_CAN0_RX:
231 wakeup |= CANWE;
232 break;
233#endif
234#ifdef IRQ_CAN1_RX
235 case IRQ_CAN1_RX:
236 wakeup |= CANWE;
237 break;
238#endif
239#ifdef IRQ_USB_INT0
240 case IRQ_USB_INT0:
241 wakeup |= USBWE;
242 break;
243#endif
Michael Hennerichd310fb42008-08-28 17:32:01 +0800244#ifdef CONFIG_BF54x
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800245 case IRQ_CNT:
246 wakeup |= ROTWE;
247 break;
248#endif
249 default:
250 break;
251 }
252
David Howells3b139cd2010-10-07 14:08:52 +0100253 flags = hard_local_irq_save();
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800254
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800255 if (state) {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800256 bfin_sic_iwr[bank] |= (1 << bit);
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800257 vr_wakeup |= wakeup;
258
259 } else {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800260 bfin_sic_iwr[bank] &= ~(1 << bit);
Michael Hennerich4a88d0c2008-08-05 17:38:41 +0800261 vr_wakeup &= ~wakeup;
262 }
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800263
David Howells3b139cd2010-10-07 14:08:52 +0100264 hard_local_irq_restore(flags);
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800265
266 return 0;
267}
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000268
269static int bfin_internal_set_wake_chip(struct irq_data *d, unsigned int state)
270{
271 return bfin_internal_set_wake(d->irq, state);
272}
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400273#else
274# define bfin_internal_set_wake_chip NULL
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800275#endif
276
Bryan Wu1394f032007-05-06 14:50:22 -0700277static struct irq_chip bfin_core_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800278 .name = "CORE",
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000279 .irq_ack = bfin_ack_noop,
280 .irq_mask = bfin_core_mask_irq,
281 .irq_unmask = bfin_core_unmask_irq,
Bryan Wu1394f032007-05-06 14:50:22 -0700282};
283
284static struct irq_chip bfin_internal_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800285 .name = "INTN",
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000286 .irq_ack = bfin_ack_noop,
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000287 .irq_mask = bfin_internal_mask_irq_chip,
288 .irq_unmask = bfin_internal_unmask_irq_chip,
289 .irq_mask_ack = bfin_internal_mask_irq_chip,
290 .irq_disable = bfin_internal_mask_irq_chip,
291 .irq_enable = bfin_internal_unmask_irq_chip,
Sonic Zhang0325f252009-12-28 07:29:57 +0000292#ifdef CONFIG_SMP
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000293 .irq_set_affinity = bfin_internal_set_affinity,
Sonic Zhang0325f252009-12-28 07:29:57 +0000294#endif
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000295 .irq_set_wake = bfin_internal_set_wake_chip,
Bryan Wu1394f032007-05-06 14:50:22 -0700296};
297
Mike Frysingerf58c3272011-04-15 03:08:20 -0400298void bfin_handle_irq(unsigned irq)
Yi Li6a01f232009-01-07 23:14:39 +0800299{
300#ifdef CONFIG_IPIPE
301 struct pt_regs regs; /* Contents not used. */
302 ipipe_trace_irq_entry(irq);
303 __ipipe_handle_irq(irq, &regs);
304 ipipe_trace_irq_exit(irq);
305#else /* !CONFIG_IPIPE */
Thomas Gleixnerb10bbbb2011-02-06 18:23:25 +0000306 generic_handle_irq(irq);
Yi Li6a01f232009-01-07 23:14:39 +0800307#endif /* !CONFIG_IPIPE */
308}
309
Michael Hennerichaec59c92010-02-19 15:09:10 +0000310#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
311static int mac_stat_int_mask;
312
313static void bfin_mac_status_ack_irq(unsigned int irq)
314{
315 switch (irq) {
316 case IRQ_MAC_MMCINT:
317 bfin_write_EMAC_MMC_TIRQS(
318 bfin_read_EMAC_MMC_TIRQE() &
319 bfin_read_EMAC_MMC_TIRQS());
320 bfin_write_EMAC_MMC_RIRQS(
321 bfin_read_EMAC_MMC_RIRQE() &
322 bfin_read_EMAC_MMC_RIRQS());
323 break;
324 case IRQ_MAC_RXFSINT:
325 bfin_write_EMAC_RX_STKY(
326 bfin_read_EMAC_RX_IRQE() &
327 bfin_read_EMAC_RX_STKY());
328 break;
329 case IRQ_MAC_TXFSINT:
330 bfin_write_EMAC_TX_STKY(
331 bfin_read_EMAC_TX_IRQE() &
332 bfin_read_EMAC_TX_STKY());
333 break;
334 case IRQ_MAC_WAKEDET:
335 bfin_write_EMAC_WKUP_CTL(
336 bfin_read_EMAC_WKUP_CTL() | MPKS | RWKS);
337 break;
338 default:
339 /* These bits are W1C */
340 bfin_write_EMAC_SYSTAT(1L << (irq - IRQ_MAC_PHYINT));
341 break;
342 }
343}
344
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000345static void bfin_mac_status_mask_irq(struct irq_data *d)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000346{
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000347 unsigned int irq = d->irq;
348
Michael Hennerichaec59c92010-02-19 15:09:10 +0000349 mac_stat_int_mask &= ~(1L << (irq - IRQ_MAC_PHYINT));
Mike Frysingerf58c3272011-04-15 03:08:20 -0400350#ifdef BF537_FAMILY
Michael Hennerichaec59c92010-02-19 15:09:10 +0000351 switch (irq) {
352 case IRQ_MAC_PHYINT:
353 bfin_write_EMAC_SYSCTL(bfin_read_EMAC_SYSCTL() & ~PHYIE);
354 break;
355 default:
356 break;
357 }
358#else
359 if (!mac_stat_int_mask)
360 bfin_internal_mask_irq(IRQ_MAC_ERROR);
361#endif
362 bfin_mac_status_ack_irq(irq);
363}
364
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000365static void bfin_mac_status_unmask_irq(struct irq_data *d)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000366{
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000367 unsigned int irq = d->irq;
368
Mike Frysingerf58c3272011-04-15 03:08:20 -0400369#ifdef BF537_FAMILY
Michael Hennerichaec59c92010-02-19 15:09:10 +0000370 switch (irq) {
371 case IRQ_MAC_PHYINT:
372 bfin_write_EMAC_SYSCTL(bfin_read_EMAC_SYSCTL() | PHYIE);
373 break;
374 default:
375 break;
376 }
377#else
378 if (!mac_stat_int_mask)
379 bfin_internal_unmask_irq(IRQ_MAC_ERROR);
380#endif
381 mac_stat_int_mask |= 1L << (irq - IRQ_MAC_PHYINT);
382}
383
384#ifdef CONFIG_PM
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000385int bfin_mac_status_set_wake(struct irq_data *d, unsigned int state)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000386{
Mike Frysingerf58c3272011-04-15 03:08:20 -0400387#ifdef BF537_FAMILY
Michael Hennerichaec59c92010-02-19 15:09:10 +0000388 return bfin_internal_set_wake(IRQ_GENERIC_ERROR, state);
389#else
390 return bfin_internal_set_wake(IRQ_MAC_ERROR, state);
391#endif
392}
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400393#else
394# define bfin_mac_status_set_wake NULL
Michael Hennerichaec59c92010-02-19 15:09:10 +0000395#endif
396
397static struct irq_chip bfin_mac_status_irqchip = {
398 .name = "MACST",
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000399 .irq_ack = bfin_ack_noop,
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000400 .irq_mask_ack = bfin_mac_status_mask_irq,
401 .irq_mask = bfin_mac_status_mask_irq,
402 .irq_unmask = bfin_mac_status_unmask_irq,
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000403 .irq_set_wake = bfin_mac_status_set_wake,
Michael Hennerichaec59c92010-02-19 15:09:10 +0000404};
405
Mike Frysingerf58c3272011-04-15 03:08:20 -0400406void bfin_demux_mac_status_irq(unsigned int int_err_irq,
407 struct irq_desc *inta_desc)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000408{
409 int i, irq = 0;
410 u32 status = bfin_read_EMAC_SYSTAT();
411
Michael Hennerichbedeea62010-08-20 11:59:27 +0000412 for (i = 0; i <= (IRQ_MAC_STMDONE - IRQ_MAC_PHYINT); i++)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000413 if (status & (1L << i)) {
414 irq = IRQ_MAC_PHYINT + i;
415 break;
416 }
417
418 if (irq) {
419 if (mac_stat_int_mask & (1L << (irq - IRQ_MAC_PHYINT))) {
420 bfin_handle_irq(irq);
421 } else {
422 bfin_mac_status_ack_irq(irq);
423 pr_debug("IRQ %d:"
424 " MASKED MAC ERROR INTERRUPT ASSERTED\n",
425 irq);
426 }
427 } else
428 printk(KERN_ERR
429 "%s : %s : LINE %d :\nIRQ ?: MAC ERROR"
Michael Hennerichbedeea62010-08-20 11:59:27 +0000430 " INTERRUPT ASSERTED BUT NO SOURCE FOUND"
431 "(EMAC_SYSTAT=0x%X)\n",
432 __func__, __FILE__, __LINE__, status);
Michael Hennerichaec59c92010-02-19 15:09:10 +0000433}
434#endif
435
Graf Yangbfd15112008-10-08 18:02:44 +0800436static inline void bfin_set_irq_handler(unsigned irq, irq_flow_handler_t handle)
437{
Yi Li6a01f232009-01-07 23:14:39 +0800438#ifdef CONFIG_IPIPE
Philippe Gerum5b5da4c2011-03-17 02:12:48 -0400439 handle = handle_level_irq;
Yi Li6a01f232009-01-07 23:14:39 +0800440#endif
Thomas Gleixner43f2f112011-03-24 17:22:30 +0100441 __irq_set_handler_locked(irq, handle);
Graf Yangbfd15112008-10-08 18:02:44 +0800442}
443
Michael Hennerich8d022372008-11-18 17:48:22 +0800444static DECLARE_BITMAP(gpio_enabled, MAX_BLACKFIN_GPIOS);
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800445extern void bfin_gpio_irq_prepare(unsigned gpio);
Michael Hennerich6fce6a82007-12-24 16:56:12 +0800446
Mike Frysinger01f8e342011-06-26 13:56:23 -0400447#if !BFIN_GPIO_PINT
Michael Hennerich8d022372008-11-18 17:48:22 +0800448
Thomas Gleixnere9502852011-02-06 18:23:36 +0000449static void bfin_gpio_ack_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700450{
Michael Hennerich8d022372008-11-18 17:48:22 +0800451 /* AFAIK ack_irq in case mask_ack is provided
452 * get's only called for edge sense irqs
453 */
Thomas Gleixnere9502852011-02-06 18:23:36 +0000454 set_gpio_data(irq_to_gpio(d->irq), 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700455}
456
Thomas Gleixnere9502852011-02-06 18:23:36 +0000457static void bfin_gpio_mask_ack_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700458{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000459 unsigned int irq = d->irq;
Michael Hennerich8d022372008-11-18 17:48:22 +0800460 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700461
Thomas Gleixner1907d8b2011-03-24 17:21:01 +0100462 if (!irqd_is_level_type(d))
Bryan Wu1394f032007-05-06 14:50:22 -0700463 set_gpio_data(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700464
465 set_gpio_maska(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700466}
467
Thomas Gleixnere9502852011-02-06 18:23:36 +0000468static void bfin_gpio_mask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700469{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000470 set_gpio_maska(irq_to_gpio(d->irq), 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700471}
472
Thomas Gleixnere9502852011-02-06 18:23:36 +0000473static void bfin_gpio_unmask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700474{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000475 set_gpio_maska(irq_to_gpio(d->irq), 1);
Bryan Wu1394f032007-05-06 14:50:22 -0700476}
477
Thomas Gleixnere9502852011-02-06 18:23:36 +0000478static unsigned int bfin_gpio_irq_startup(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700479{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000480 u32 gpionr = irq_to_gpio(d->irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700481
Michael Hennerich8d022372008-11-18 17:48:22 +0800482 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800483 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700484
Thomas Gleixnere9502852011-02-06 18:23:36 +0000485 bfin_gpio_unmask_irq(d);
Bryan Wu1394f032007-05-06 14:50:22 -0700486
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800487 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700488}
489
Thomas Gleixnere9502852011-02-06 18:23:36 +0000490static void bfin_gpio_irq_shutdown(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700491{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000492 u32 gpionr = irq_to_gpio(d->irq);
Graf Yang30af6d42008-11-18 17:48:21 +0800493
Thomas Gleixnere9502852011-02-06 18:23:36 +0000494 bfin_gpio_mask_irq(d);
Graf Yang30af6d42008-11-18 17:48:21 +0800495 __clear_bit(gpionr, gpio_enabled);
Graf Yang9570ff42009-01-07 23:14:38 +0800496 bfin_gpio_irq_free(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700497}
498
Thomas Gleixnere9502852011-02-06 18:23:36 +0000499static int bfin_gpio_irq_type(struct irq_data *d, unsigned int type)
Bryan Wu1394f032007-05-06 14:50:22 -0700500{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000501 unsigned int irq = d->irq;
Graf Yang8eb3e3b2008-11-18 17:48:22 +0800502 int ret;
503 char buf[16];
Michael Hennerich8d022372008-11-18 17:48:22 +0800504 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700505
506 if (type == IRQ_TYPE_PROBE) {
507 /* only probe unenabled GPIO interrupt lines */
Mike Frysingerc3695342009-06-13 10:32:29 -0400508 if (test_bit(gpionr, gpio_enabled))
Bryan Wu1394f032007-05-06 14:50:22 -0700509 return 0;
510 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
511 }
512
513 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800514 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Michael Hennerich8d022372008-11-18 17:48:22 +0800515
Graf Yang9570ff42009-01-07 23:14:38 +0800516 snprintf(buf, 16, "gpio-irq%d", irq);
517 ret = bfin_gpio_irq_request(gpionr, buf);
518 if (ret)
519 return ret;
520
Michael Hennerich8d022372008-11-18 17:48:22 +0800521 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800522 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700523
Bryan Wu1394f032007-05-06 14:50:22 -0700524 } else {
Michael Hennerich8d022372008-11-18 17:48:22 +0800525 __clear_bit(gpionr, gpio_enabled);
Bryan Wu1394f032007-05-06 14:50:22 -0700526 return 0;
527 }
528
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800529 set_gpio_inen(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700530 set_gpio_dir(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700531
532 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
533 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
534 set_gpio_both(gpionr, 1);
535 else
536 set_gpio_both(gpionr, 0);
537
538 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
539 set_gpio_polar(gpionr, 1); /* low or falling edge denoted by one */
540 else
541 set_gpio_polar(gpionr, 0); /* high or rising edge denoted by zero */
542
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800543 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
544 set_gpio_edge(gpionr, 1);
545 set_gpio_inen(gpionr, 1);
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800546 set_gpio_data(gpionr, 0);
547
548 } else {
549 set_gpio_edge(gpionr, 0);
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800550 set_gpio_inen(gpionr, 1);
551 }
552
Bryan Wu1394f032007-05-06 14:50:22 -0700553 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
Graf Yangbfd15112008-10-08 18:02:44 +0800554 bfin_set_irq_handler(irq, handle_edge_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700555 else
Graf Yangbfd15112008-10-08 18:02:44 +0800556 bfin_set_irq_handler(irq, handle_level_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700557
558 return 0;
559}
560
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800561#ifdef CONFIG_PM
Mike Frysingerdd8cb372011-04-15 03:19:22 -0400562static int bfin_gpio_set_wake(struct irq_data *d, unsigned int state)
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800563{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000564 return gpio_pm_wakeup_ctrl(irq_to_gpio(d->irq), state);
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800565}
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400566#else
567# define bfin_gpio_set_wake NULL
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800568#endif
569
Mike Frysingere2a80922011-04-15 12:51:33 -0400570static void bfin_demux_gpio_block(unsigned int irq)
571{
572 unsigned int gpio, mask;
573
574 gpio = irq_to_gpio(irq);
575 mask = get_gpiop_data(gpio) & get_gpiop_maska(gpio);
576
577 while (mask) {
578 if (mask & 1)
579 bfin_handle_irq(irq);
580 irq++;
581 mask >>= 1;
582 }
583}
584
Mike Frysinger8c054102011-04-15 13:04:59 -0400585void bfin_demux_gpio_irq(unsigned int inta_irq,
586 struct irq_desc *desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700587{
Mike Frysingere2a80922011-04-15 12:51:33 -0400588 unsigned int irq;
Bryan Wu1394f032007-05-06 14:50:22 -0700589
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800590 switch (inta_irq) {
Mike Frysingere2a80922011-04-15 12:51:33 -0400591#if defined(BF537_FAMILY)
Mike Frysinger8c054102011-04-15 13:04:59 -0400592 case IRQ_PF_INTA_PG_INTA:
Mike Frysingere2a80922011-04-15 12:51:33 -0400593 bfin_demux_gpio_block(IRQ_PF0);
594 irq = IRQ_PG0;
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800595 break;
Mike Frysinger8c054102011-04-15 13:04:59 -0400596 case IRQ_PH_INTA_MAC_RX:
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800597 irq = IRQ_PH0;
598 break;
Mike Frysingere2a80922011-04-15 12:51:33 -0400599#elif defined(BF533_FAMILY)
600 case IRQ_PROG_INTA:
601 irq = IRQ_PF0;
602 break;
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400603#elif defined(BF538_FAMILY)
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800604 case IRQ_PORTF_INTA:
605 irq = IRQ_PF0;
606 break;
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800607#elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x)
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800608 case IRQ_PORTF_INTA:
609 irq = IRQ_PF0;
610 break;
611 case IRQ_PORTG_INTA:
612 irq = IRQ_PG0;
613 break;
614 case IRQ_PORTH_INTA:
615 irq = IRQ_PH0;
616 break;
617#elif defined(CONFIG_BF561)
618 case IRQ_PROG0_INTA:
619 irq = IRQ_PF0;
620 break;
621 case IRQ_PROG1_INTA:
622 irq = IRQ_PF16;
623 break;
624 case IRQ_PROG2_INTA:
625 irq = IRQ_PF32;
626 break;
627#endif
628 default:
629 BUG();
630 return;
Bryan Wu1394f032007-05-06 14:50:22 -0700631 }
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800632
Mike Frysingere2a80922011-04-15 12:51:33 -0400633 bfin_demux_gpio_block(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700634}
635
Mike Frysinger01f8e342011-06-26 13:56:23 -0400636#else
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800637
638#define NR_PINT_SYS_IRQS 4
639#define NR_PINT_BITS 32
640#define NR_PINTS 160
641#define IRQ_NOT_AVAIL 0xFF
642
643#define PINT_2_BANK(x) ((x) >> 5)
644#define PINT_2_BIT(x) ((x) & 0x1F)
645#define PINT_BIT(x) (1 << (PINT_2_BIT(x)))
646
647static unsigned char irq2pint_lut[NR_PINTS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800648static unsigned char pint2irq_lut[NR_PINT_SYS_IRQS * NR_PINT_BITS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800649
Mike Frysinger82ed5f72011-06-26 13:22:05 -0400650static struct bfin_pint_regs * const pint[NR_PINT_SYS_IRQS] = {
651 (struct bfin_pint_regs *)PINT0_MASK_SET,
652 (struct bfin_pint_regs *)PINT1_MASK_SET,
653 (struct bfin_pint_regs *)PINT2_MASK_SET,
654 (struct bfin_pint_regs *)PINT3_MASK_SET,
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800655};
656
Michael Hennerich8d022372008-11-18 17:48:22 +0800657inline unsigned int get_irq_base(u32 bank, u8 bmap)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800658{
Michael Hennerich8d022372008-11-18 17:48:22 +0800659 unsigned int irq_base;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800660
661 if (bank < 2) { /*PA-PB */
662 irq_base = IRQ_PA0 + bmap * 16;
663 } else { /*PC-PJ */
664 irq_base = IRQ_PC0 + bmap * 16;
665 }
666
667 return irq_base;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800668}
669
670 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
671void init_pint_lut(void)
672{
673 u16 bank, bit, irq_base, bit_pos;
674 u32 pint_assign;
675 u8 bmap;
676
677 memset(irq2pint_lut, IRQ_NOT_AVAIL, sizeof(irq2pint_lut));
678
679 for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++) {
680
681 pint_assign = pint[bank]->assign;
682
683 for (bit = 0; bit < NR_PINT_BITS; bit++) {
684
685 bmap = (pint_assign >> ((bit / 8) * 8)) & 0xFF;
686
687 irq_base = get_irq_base(bank, bmap);
688
689 irq_base += (bit % 8) + ((bit / 8) & 1 ? 8 : 0);
690 bit_pos = bit + bank * NR_PINT_BITS;
691
Michael Henneriche3f23002007-07-12 16:39:29 +0800692 pint2irq_lut[bit_pos] = irq_base - SYS_IRQS;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800693 irq2pint_lut[irq_base - SYS_IRQS] = bit_pos;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800694 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800695 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800696}
697
Thomas Gleixnere9502852011-02-06 18:23:36 +0000698static void bfin_gpio_ack_irq(struct irq_data *d)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800699{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000700 u32 pint_val = irq2pint_lut[d->irq - SYS_IRQS];
Michael Hennerich8baf5602007-12-24 18:51:34 +0800701 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800702 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800703
Thomas Gleixner1907d8b2011-03-24 17:21:01 +0100704 if (irqd_get_trigger_type(d) == IRQ_TYPE_EDGE_BOTH) {
Michael Hennerich8baf5602007-12-24 18:51:34 +0800705 if (pint[bank]->invert_set & pintbit)
706 pint[bank]->invert_clear = pintbit;
707 else
708 pint[bank]->invert_set = pintbit;
709 }
710 pint[bank]->request = pintbit;
711
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800712}
713
Thomas Gleixnere9502852011-02-06 18:23:36 +0000714static void bfin_gpio_mask_ack_irq(struct irq_data *d)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800715{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000716 u32 pint_val = irq2pint_lut[d->irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800717 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800718 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800719
Thomas Gleixner1907d8b2011-03-24 17:21:01 +0100720 if (irqd_get_trigger_type(d) == IRQ_TYPE_EDGE_BOTH) {
Michael Hennerich8baf5602007-12-24 18:51:34 +0800721 if (pint[bank]->invert_set & pintbit)
722 pint[bank]->invert_clear = pintbit;
723 else
724 pint[bank]->invert_set = pintbit;
725 }
726
Michael Henneriche3f23002007-07-12 16:39:29 +0800727 pint[bank]->request = pintbit;
728 pint[bank]->mask_clear = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800729}
730
Thomas Gleixnere9502852011-02-06 18:23:36 +0000731static void bfin_gpio_mask_irq(struct irq_data *d)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800732{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000733 u32 pint_val = irq2pint_lut[d->irq - SYS_IRQS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800734
735 pint[PINT_2_BANK(pint_val)]->mask_clear = PINT_BIT(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800736}
737
Thomas Gleixnere9502852011-02-06 18:23:36 +0000738static void bfin_gpio_unmask_irq(struct irq_data *d)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800739{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000740 u32 pint_val = irq2pint_lut[d->irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800741 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800742 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800743
Michael Henneriche3f23002007-07-12 16:39:29 +0800744 pint[bank]->mask_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800745}
746
Thomas Gleixnere9502852011-02-06 18:23:36 +0000747static unsigned int bfin_gpio_irq_startup(struct irq_data *d)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800748{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000749 unsigned int irq = d->irq;
Michael Hennerich8d022372008-11-18 17:48:22 +0800750 u32 gpionr = irq_to_gpio(irq);
751 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800752
Michael Hennerich50e163c2007-07-24 16:17:28 +0800753 if (pint_val == IRQ_NOT_AVAIL) {
754 printk(KERN_ERR
755 "GPIO IRQ %d :Not in PINT Assign table "
756 "Reconfigure Interrupt to Port Assignemt\n", irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800757 return -ENODEV;
Michael Hennerich50e163c2007-07-24 16:17:28 +0800758 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800759
Michael Hennerich8d022372008-11-18 17:48:22 +0800760 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800761 bfin_gpio_irq_prepare(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800762
Thomas Gleixnere9502852011-02-06 18:23:36 +0000763 bfin_gpio_unmask_irq(d);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800764
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800765 return 0;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800766}
767
Thomas Gleixnere9502852011-02-06 18:23:36 +0000768static void bfin_gpio_irq_shutdown(struct irq_data *d)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800769{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000770 u32 gpionr = irq_to_gpio(d->irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800771
Thomas Gleixnere9502852011-02-06 18:23:36 +0000772 bfin_gpio_mask_irq(d);
Michael Hennerich8d022372008-11-18 17:48:22 +0800773 __clear_bit(gpionr, gpio_enabled);
Graf Yang9570ff42009-01-07 23:14:38 +0800774 bfin_gpio_irq_free(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800775}
776
Thomas Gleixnere9502852011-02-06 18:23:36 +0000777static int bfin_gpio_irq_type(struct irq_data *d, unsigned int type)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800778{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000779 unsigned int irq = d->irq;
Graf Yang8eb3e3b2008-11-18 17:48:22 +0800780 int ret;
781 char buf[16];
Michael Hennerich8d022372008-11-18 17:48:22 +0800782 u32 gpionr = irq_to_gpio(irq);
783 u32 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800784 u32 pintbit = PINT_BIT(pint_val);
Michael Hennerich8d022372008-11-18 17:48:22 +0800785 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800786
787 if (pint_val == IRQ_NOT_AVAIL)
788 return -ENODEV;
789
790 if (type == IRQ_TYPE_PROBE) {
791 /* only probe unenabled GPIO interrupt lines */
Mike Frysingerc3695342009-06-13 10:32:29 -0400792 if (test_bit(gpionr, gpio_enabled))
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800793 return 0;
794 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
795 }
796
797 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
798 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Graf Yang9570ff42009-01-07 23:14:38 +0800799
800 snprintf(buf, 16, "gpio-irq%d", irq);
801 ret = bfin_gpio_irq_request(gpionr, buf);
802 if (ret)
803 return ret;
804
Michael Hennerich8d022372008-11-18 17:48:22 +0800805 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800806 bfin_gpio_irq_prepare(gpionr);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800807
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800808 } else {
Michael Hennerich8d022372008-11-18 17:48:22 +0800809 __clear_bit(gpionr, gpio_enabled);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800810 return 0;
811 }
812
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800813 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
Michael Henneriche3f23002007-07-12 16:39:29 +0800814 pint[bank]->invert_set = pintbit; /* low or falling edge denoted by one */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800815 else
Michael Hennerich8baf5602007-12-24 18:51:34 +0800816 pint[bank]->invert_clear = pintbit; /* high or rising edge denoted by zero */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800817
Michael Hennerich8baf5602007-12-24 18:51:34 +0800818 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
819 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
Michael Hennerich8baf5602007-12-24 18:51:34 +0800820 if (gpio_get_value(gpionr))
821 pint[bank]->invert_set = pintbit;
822 else
823 pint[bank]->invert_clear = pintbit;
Michael Hennerich8baf5602007-12-24 18:51:34 +0800824 }
825
826 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
827 pint[bank]->edge_set = pintbit;
Graf Yangbfd15112008-10-08 18:02:44 +0800828 bfin_set_irq_handler(irq, handle_edge_irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800829 } else {
830 pint[bank]->edge_clear = pintbit;
Graf Yangbfd15112008-10-08 18:02:44 +0800831 bfin_set_irq_handler(irq, handle_level_irq);
Michael Hennerich8baf5602007-12-24 18:51:34 +0800832 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800833
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800834 return 0;
835}
836
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800837#ifdef CONFIG_PM
Mike Frysingerdd8cb372011-04-15 03:19:22 -0400838static int bfin_gpio_set_wake(struct irq_data *d, unsigned int state)
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800839{
840 u32 pint_irq;
Thomas Gleixnere9502852011-02-06 18:23:36 +0000841 u32 pint_val = irq2pint_lut[d->irq - SYS_IRQS];
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800842 u32 bank = PINT_2_BANK(pint_val);
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800843
844 switch (bank) {
845 case 0:
846 pint_irq = IRQ_PINT0;
847 break;
848 case 2:
849 pint_irq = IRQ_PINT2;
850 break;
851 case 3:
852 pint_irq = IRQ_PINT3;
853 break;
854 case 1:
855 pint_irq = IRQ_PINT1;
856 break;
857 default:
858 return -EINVAL;
859 }
860
861 bfin_internal_set_wake(pint_irq, state);
862
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800863 return 0;
864}
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400865#else
866# define bfin_gpio_set_wake NULL
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800867#endif
868
Mike Frysinger8c054102011-04-15 13:04:59 -0400869void bfin_demux_gpio_irq(unsigned int inta_irq,
870 struct irq_desc *desc)
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800871{
Michael Hennerich8d022372008-11-18 17:48:22 +0800872 u32 bank, pint_val;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800873 u32 request, irq;
874
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800875 switch (inta_irq) {
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800876 case IRQ_PINT0:
877 bank = 0;
878 break;
879 case IRQ_PINT2:
880 bank = 2;
881 break;
882 case IRQ_PINT3:
883 bank = 3;
884 break;
885 case IRQ_PINT1:
886 bank = 1;
887 break;
Michael Henneriche3f23002007-07-12 16:39:29 +0800888 default:
889 return;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800890 }
891
892 pint_val = bank * NR_PINT_BITS;
893
894 request = pint[bank]->request;
895
896 while (request) {
897 if (request & 1) {
Michael Henneriche3f23002007-07-12 16:39:29 +0800898 irq = pint2irq_lut[pint_val] + SYS_IRQS;
Yi Li6a01f232009-01-07 23:14:39 +0800899 bfin_handle_irq(irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800900 }
901 pint_val++;
902 request >>= 1;
903 }
904
905}
Mike Frysingera055b2b2007-11-15 21:12:32 +0800906#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700907
Michael Hennerich8d022372008-11-18 17:48:22 +0800908static struct irq_chip bfin_gpio_irqchip = {
909 .name = "GPIO",
Thomas Gleixnere9502852011-02-06 18:23:36 +0000910 .irq_ack = bfin_gpio_ack_irq,
911 .irq_mask = bfin_gpio_mask_irq,
912 .irq_mask_ack = bfin_gpio_mask_ack_irq,
913 .irq_unmask = bfin_gpio_unmask_irq,
914 .irq_disable = bfin_gpio_mask_irq,
915 .irq_enable = bfin_gpio_unmask_irq,
916 .irq_set_type = bfin_gpio_irq_type,
917 .irq_startup = bfin_gpio_irq_startup,
918 .irq_shutdown = bfin_gpio_irq_shutdown,
Thomas Gleixnere9502852011-02-06 18:23:36 +0000919 .irq_set_wake = bfin_gpio_set_wake,
Michael Hennerich8d022372008-11-18 17:48:22 +0800920};
921
Graf Yang6b3087c2009-01-07 23:14:39 +0800922void __cpuinit init_exception_vectors(void)
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800923{
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800924 /* cannot program in software:
925 * evt0 - emulation (jtag)
926 * evt1 - reset
927 */
928 bfin_write_EVT2(evt_nmi);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800929 bfin_write_EVT3(trap);
930 bfin_write_EVT5(evt_ivhw);
931 bfin_write_EVT6(evt_timer);
932 bfin_write_EVT7(evt_evt7);
933 bfin_write_EVT8(evt_evt8);
934 bfin_write_EVT9(evt_evt9);
935 bfin_write_EVT10(evt_evt10);
936 bfin_write_EVT11(evt_evt11);
937 bfin_write_EVT12(evt_evt12);
938 bfin_write_EVT13(evt_evt13);
Philippe Gerum9703a732009-06-22 18:23:48 +0200939 bfin_write_EVT14(evt_evt14);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800940 bfin_write_EVT15(evt_system_call);
941 CSYNC();
942}
943
Bryan Wu1394f032007-05-06 14:50:22 -0700944/*
945 * This function should be called during kernel startup to initialize
946 * the BFin IRQ handling routines.
947 */
Michael Hennerich8d022372008-11-18 17:48:22 +0800948
Bryan Wu1394f032007-05-06 14:50:22 -0700949int __init init_arch_irq(void)
950{
951 int irq;
952 unsigned long ilat = 0;
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400953
Bryan Wu1394f032007-05-06 14:50:22 -0700954 /* Disable all the peripheral intrs - page 4-29 HW Ref manual */
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400955#ifdef SIC_IMASK0
Roy Huang24a07a12007-07-12 22:41:45 +0800956 bfin_write_SIC_IMASK0(SIC_UNMASK_ALL);
957 bfin_write_SIC_IMASK1(SIC_UNMASK_ALL);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400958# ifdef SIC_IMASK2
Michael Hennerich59003142007-10-21 16:54:27 +0800959 bfin_write_SIC_IMASK2(SIC_UNMASK_ALL);
Mike Frysingera055b2b2007-11-15 21:12:32 +0800960# endif
Graf Yang6b3087c2009-01-07 23:14:39 +0800961# ifdef CONFIG_SMP
962 bfin_write_SICB_IMASK0(SIC_UNMASK_ALL);
963 bfin_write_SICB_IMASK1(SIC_UNMASK_ALL);
964# endif
Roy Huang24a07a12007-07-12 22:41:45 +0800965#else
Bryan Wu1394f032007-05-06 14:50:22 -0700966 bfin_write_SIC_IMASK(SIC_UNMASK_ALL);
Roy Huang24a07a12007-07-12 22:41:45 +0800967#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700968
969 local_irq_disable();
970
Mike Frysinger01f8e342011-06-26 13:56:23 -0400971#if BFIN_GPIO_PINT
Mike Frysingera055b2b2007-11-15 21:12:32 +0800972# ifdef CONFIG_PINTx_REASSIGN
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800973 pint[0]->assign = CONFIG_PINT0_ASSIGN;
974 pint[1]->assign = CONFIG_PINT1_ASSIGN;
975 pint[2]->assign = CONFIG_PINT2_ASSIGN;
976 pint[3]->assign = CONFIG_PINT3_ASSIGN;
Mike Frysingera055b2b2007-11-15 21:12:32 +0800977# endif
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800978 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
979 init_pint_lut();
980#endif
981
982 for (irq = 0; irq <= SYS_IRQS; irq++) {
Bryan Wu1394f032007-05-06 14:50:22 -0700983 if (irq <= IRQ_CORETMR)
Thomas Gleixner43f2f112011-03-24 17:22:30 +0100984 irq_set_chip(irq, &bfin_core_irqchip);
Bryan Wu1394f032007-05-06 14:50:22 -0700985 else
Thomas Gleixner43f2f112011-03-24 17:22:30 +0100986 irq_set_chip(irq, &bfin_internal_irqchip);
Bryan Wu1394f032007-05-06 14:50:22 -0700987
Michael Hennerich464abc52008-02-25 13:50:20 +0800988 switch (irq) {
Mike Frysinger01f8e342011-06-26 13:56:23 -0400989#if BFIN_GPIO_PINT
Michael Hennerich464abc52008-02-25 13:50:20 +0800990 case IRQ_PINT0:
991 case IRQ_PINT1:
992 case IRQ_PINT2:
993 case IRQ_PINT3:
Mike Frysinger01f8e342011-06-26 13:56:23 -0400994#elif defined(BF537_FAMILY)
995 case IRQ_PH_INTA_MAC_RX:
996 case IRQ_PF_INTA_PG_INTA:
997#elif defined(BF533_FAMILY)
998 case IRQ_PROG_INTA:
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800999#elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001000 case IRQ_PORTF_INTA:
1001 case IRQ_PORTG_INTA:
1002 case IRQ_PORTH_INTA:
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001003#elif defined(CONFIG_BF561)
Michael Hennerich464abc52008-02-25 13:50:20 +08001004 case IRQ_PROG0_INTA:
1005 case IRQ_PROG1_INTA:
1006 case IRQ_PROG2_INTA:
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001007#elif defined(BF538_FAMILY)
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001008 case IRQ_PORTF_INTA:
Michael Hennerich59003142007-10-21 16:54:27 +08001009#endif
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001010 irq_set_chained_handler(irq, bfin_demux_gpio_irq);
Michael Hennerich464abc52008-02-25 13:50:20 +08001011 break;
Michael Hennerichaec59c92010-02-19 15:09:10 +00001012#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
1013 case IRQ_MAC_ERROR:
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001014 irq_set_chained_handler(irq,
1015 bfin_demux_mac_status_irq);
Michael Hennerichaec59c92010-02-19 15:09:10 +00001016 break;
1017#endif
Graf Yang6b3087c2009-01-07 23:14:39 +08001018#ifdef CONFIG_SMP
1019 case IRQ_SUPPLE_0:
1020 case IRQ_SUPPLE_1:
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001021 irq_set_handler(irq, handle_percpu_irq);
Graf Yang6b3087c2009-01-07 23:14:39 +08001022 break;
1023#endif
Graf Yang179413142009-08-18 04:29:33 +00001024
Yi Licb191712009-12-30 07:12:50 +00001025#ifdef CONFIG_TICKSOURCE_CORETMR
1026 case IRQ_CORETMR:
1027# ifdef CONFIG_SMP
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001028 irq_set_handler(irq, handle_percpu_irq);
Yi Licb191712009-12-30 07:12:50 +00001029# else
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001030 irq_set_handler(irq, handle_simple_irq);
Yi Licb191712009-12-30 07:12:50 +00001031# endif
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001032 break;
Yi Licb191712009-12-30 07:12:50 +00001033#endif
1034
1035#ifdef CONFIG_TICKSOURCE_GPTMR0
Philippe Geruma40494a2009-06-16 05:25:42 +02001036 case IRQ_TIMER0:
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001037 irq_set_handler(irq, handle_simple_irq);
Michael Hennerich464abc52008-02-25 13:50:20 +08001038 break;
Graf Yang179413142009-08-18 04:29:33 +00001039#endif
Yi Licb191712009-12-30 07:12:50 +00001040
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001041 default:
Yi Licb191712009-12-30 07:12:50 +00001042#ifdef CONFIG_IPIPE
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001043 irq_set_handler(irq, handle_level_irq);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001044#else
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001045 irq_set_handler(irq, handle_simple_irq);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001046#endif
Philippe Geruma40494a2009-06-16 05:25:42 +02001047 break;
Bryan Wu1394f032007-05-06 14:50:22 -07001048 }
Bryan Wu1394f032007-05-06 14:50:22 -07001049 }
Michael Hennerich464abc52008-02-25 13:50:20 +08001050
Mike Frysingerf58c3272011-04-15 03:08:20 -04001051 init_mach_irq();
Bryan Wu1394f032007-05-06 14:50:22 -07001052
Michael Hennerichaec59c92010-02-19 15:09:10 +00001053#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
1054 for (irq = IRQ_MAC_PHYINT; irq <= IRQ_MAC_STMDONE; irq++)
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001055 irq_set_chip_and_handler(irq, &bfin_mac_status_irqchip,
Michael Hennerichaec59c92010-02-19 15:09:10 +00001056 handle_level_irq);
1057#endif
Michael Hennerich464abc52008-02-25 13:50:20 +08001058 /* if configured as edge, then will be changed to do_edge_IRQ */
Michael Hennerichaec59c92010-02-19 15:09:10 +00001059 for (irq = GPIO_IRQ_BASE;
1060 irq < (GPIO_IRQ_BASE + MAX_BLACKFIN_GPIOS); irq++)
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001061 irq_set_chip_and_handler(irq, &bfin_gpio_irqchip,
Michael Hennerich464abc52008-02-25 13:50:20 +08001062 handle_level_irq);
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001063
Bryan Wu1394f032007-05-06 14:50:22 -07001064 bfin_write_IMASK(0);
1065 CSYNC();
1066 ilat = bfin_read_ILAT();
1067 CSYNC();
1068 bfin_write_ILAT(ilat);
1069 CSYNC();
1070
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001071 printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n");
Mike Frysinger40059782008-11-18 17:48:22 +08001072 /* IMASK=xxx is equivalent to STI xx or bfin_irq_flags=xx,
Bryan Wu1394f032007-05-06 14:50:22 -07001073 * local_irq_enable()
1074 */
1075 program_IAR();
1076 /* Therefore it's better to setup IARs before interrupts enabled */
1077 search_IAR();
1078
1079 /* Enable interrupts IVG7-15 */
Mike Frysinger40059782008-11-18 17:48:22 +08001080 bfin_irq_flags |= IMASK_IVG15 |
Bryan Wu1394f032007-05-06 14:50:22 -07001081 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001082 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
Bryan Wu1394f032007-05-06 14:50:22 -07001083
Michael Hennerich349ebbc2009-04-15 08:48:08 +00001084 /* This implicitly covers ANOMALY_05000171
1085 * Boot-ROM code modifies SICA_IWRx wakeup registers
1086 */
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001087#ifdef SIC_IWR0
Michael Hennerich56f5f592008-08-06 17:55:32 +08001088 bfin_write_SIC_IWR0(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001089# ifdef SIC_IWR1
Bryan Wu2f6f4bc2008-11-18 17:48:21 +08001090 /* BF52x/BF51x system reset does not properly reset SIC_IWR1 which
Michael Hennerich55546ac2008-08-13 17:41:13 +08001091 * will screw up the bootrom as it relies on MDMA0/1 waking it
1092 * up from IDLE instructions. See this report for more info:
1093 * http://blackfin.uclinux.org/gf/tracker/4323
1094 */
Mike Frysingerb7e11292008-11-18 17:48:22 +08001095 if (ANOMALY_05000435)
1096 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
1097 else
1098 bfin_write_SIC_IWR1(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001099# endif
1100# ifdef SIC_IWR2
Michael Hennerich56f5f592008-08-06 17:55:32 +08001101 bfin_write_SIC_IWR2(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001102# endif
1103#else
Michael Hennerich56f5f592008-08-06 17:55:32 +08001104 bfin_write_SIC_IWR(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001105#endif
1106
Bryan Wu1394f032007-05-06 14:50:22 -07001107 return 0;
1108}
1109
1110#ifdef CONFIG_DO_IRQ_L1
Mike Frysingera055b2b2007-11-15 21:12:32 +08001111__attribute__((l1_text))
Bryan Wu1394f032007-05-06 14:50:22 -07001112#endif
Mike Frysinger6b108042011-03-30 01:35:41 -04001113static int vec_to_irq(int vec)
1114{
1115 struct ivgx *ivg = ivg7_13[vec - IVG7].ifirst;
1116 struct ivgx *ivg_stop = ivg7_13[vec - IVG7].istop;
1117 unsigned long sic_status[3];
1118
1119 if (likely(vec == EVT_IVTMR_P))
1120 return IRQ_CORETMR;
1121
1122#ifdef SIC_ISR
1123 sic_status[0] = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
1124#else
1125 if (smp_processor_id()) {
1126# ifdef SICB_ISR0
1127 /* This will be optimized out in UP mode. */
1128 sic_status[0] = bfin_read_SICB_ISR0() & bfin_read_SICB_IMASK0();
1129 sic_status[1] = bfin_read_SICB_ISR1() & bfin_read_SICB_IMASK1();
1130# endif
1131 } else {
1132 sic_status[0] = bfin_read_SIC_ISR0() & bfin_read_SIC_IMASK0();
1133 sic_status[1] = bfin_read_SIC_ISR1() & bfin_read_SIC_IMASK1();
1134 }
1135#endif
1136#ifdef SIC_ISR2
1137 sic_status[2] = bfin_read_SIC_ISR2() & bfin_read_SIC_IMASK2();
1138#endif
1139
1140 for (;; ivg++) {
1141 if (ivg >= ivg_stop)
1142 return -1;
1143#ifdef SIC_ISR
1144 if (sic_status[0] & ivg->isrflag)
1145#else
1146 if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag)
1147#endif
1148 return ivg->irqno;
1149 }
1150}
1151
1152#ifdef CONFIG_DO_IRQ_L1
1153__attribute__((l1_text))
1154#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001155void do_irq(int vec, struct pt_regs *fp)
1156{
Mike Frysinger6b108042011-03-30 01:35:41 -04001157 int irq = vec_to_irq(vec);
1158 if (irq == -1)
1159 return;
1160 asm_do_IRQ(irq, fp);
Bryan Wu1394f032007-05-06 14:50:22 -07001161}
Yi Li6a01f232009-01-07 23:14:39 +08001162
1163#ifdef CONFIG_IPIPE
1164
1165int __ipipe_get_irq_priority(unsigned irq)
1166{
1167 int ient, prio;
1168
1169 if (irq <= IRQ_CORETMR)
1170 return irq;
1171
1172 for (ient = 0; ient < NR_PERI_INTS; ient++) {
1173 struct ivgx *ivg = ivg_table + ient;
1174 if (ivg->irqno == irq) {
1175 for (prio = 0; prio <= IVG13-IVG7; prio++) {
1176 if (ivg7_13[prio].ifirst <= ivg &&
1177 ivg7_13[prio].istop > ivg)
1178 return IVG7 + prio;
1179 }
1180 }
1181 }
1182
1183 return IVG15;
1184}
1185
Yi Li6a01f232009-01-07 23:14:39 +08001186/* Hw interrupts are disabled on entry (check SAVE_CONTEXT). */
1187#ifdef CONFIG_DO_IRQ_L1
1188__attribute__((l1_text))
1189#endif
1190asmlinkage int __ipipe_grab_irq(int vec, struct pt_regs *regs)
1191{
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001192 struct ipipe_percpu_domain_data *p = ipipe_root_cpudom_ptr();
Philippe Geruma40494a2009-06-16 05:25:42 +02001193 struct ipipe_domain *this_domain = __ipipe_current_domain;
Yi Li6a01f232009-01-07 23:14:39 +08001194 struct ivgx *ivg_stop = ivg7_13[vec-IVG7].istop;
1195 struct ivgx *ivg = ivg7_13[vec-IVG7].ifirst;
Philippe Gerum5b5da4c2011-03-17 02:12:48 -04001196 int irq, s = 0;
Yi Li6a01f232009-01-07 23:14:39 +08001197
Mike Frysinger6b108042011-03-30 01:35:41 -04001198 irq = vec_to_irq(vec);
1199 if (irq == -1)
1200 return 0;
Yi Li6a01f232009-01-07 23:14:39 +08001201
1202 if (irq == IRQ_SYSTMR) {
Philippe Geruma40494a2009-06-16 05:25:42 +02001203#if !defined(CONFIG_GENERIC_CLOCKEVENTS) || defined(CONFIG_TICKSOURCE_GPTMR0)
Yi Li6a01f232009-01-07 23:14:39 +08001204 bfin_write_TIMER_STATUS(1); /* Latch TIMIL0 */
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001205#endif
Yi Li6a01f232009-01-07 23:14:39 +08001206 /* This is basically what we need from the register frame. */
1207 __raw_get_cpu_var(__ipipe_tick_regs).ipend = regs->ipend;
1208 __raw_get_cpu_var(__ipipe_tick_regs).pc = regs->pc;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001209 if (this_domain != ipipe_root_domain)
Yi Li6a01f232009-01-07 23:14:39 +08001210 __raw_get_cpu_var(__ipipe_tick_regs).ipend &= ~0x10;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001211 else
1212 __raw_get_cpu_var(__ipipe_tick_regs).ipend |= 0x10;
Yi Li6a01f232009-01-07 23:14:39 +08001213 }
1214
Philippe Gerum5b5da4c2011-03-17 02:12:48 -04001215 /*
1216 * We don't want Linux interrupt handlers to run at the
1217 * current core priority level (i.e. < EVT15), since this
1218 * might delay other interrupts handled by a high priority
1219 * domain. Here is what we do instead:
1220 *
1221 * - we raise the SYNCDEFER bit to prevent
1222 * __ipipe_handle_irq() to sync the pipeline for the root
1223 * stage for the incoming interrupt. Upon return, that IRQ is
1224 * pending in the interrupt log.
1225 *
1226 * - we raise the TIF_IRQ_SYNC bit for the current thread, so
1227 * that _schedule_and_signal_from_int will eventually sync the
1228 * pipeline from EVT15.
1229 */
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001230 if (this_domain == ipipe_root_domain) {
1231 s = __test_and_set_bit(IPIPE_SYNCDEFER_FLAG, &p->status);
1232 barrier();
1233 }
Yi Li6a01f232009-01-07 23:14:39 +08001234
1235 ipipe_trace_irq_entry(irq);
1236 __ipipe_handle_irq(irq, regs);
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001237 ipipe_trace_irq_exit(irq);
Yi Li6a01f232009-01-07 23:14:39 +08001238
Philippe Gerum5b5da4c2011-03-17 02:12:48 -04001239 if (user_mode(regs) &&
1240 !ipipe_test_foreign_stack() &&
1241 (current->ipipe_flags & PF_EVTRET) != 0) {
1242 /*
1243 * Testing for user_regs() does NOT fully eliminate
1244 * foreign stack contexts, because of the forged
1245 * interrupt returns we do through
1246 * __ipipe_call_irqtail. In that case, we might have
1247 * preempted a foreign stack context in a high
1248 * priority domain, with a single interrupt level now
1249 * pending after the irqtail unwinding is done. In
1250 * which case user_mode() is now true, and the event
1251 * gets dispatched spuriously.
1252 */
1253 current->ipipe_flags &= ~PF_EVTRET;
1254 __ipipe_dispatch_event(IPIPE_EVENT_RETURN, regs);
1255 }
1256
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001257 if (this_domain == ipipe_root_domain) {
1258 set_thread_flag(TIF_IRQ_SYNC);
1259 if (!s) {
1260 __clear_bit(IPIPE_SYNCDEFER_FLAG, &p->status);
1261 return !test_bit(IPIPE_STALL_FLAG, &p->status);
1262 }
1263 }
Yi Li6a01f232009-01-07 23:14:39 +08001264
Graf Yang1fa9be72009-05-15 11:01:59 +00001265 return 0;
Yi Li6a01f232009-01-07 23:14:39 +08001266}
1267
1268#endif /* CONFIG_IPIPE */