Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1 | /* |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 2 | * Set up the interrupt priorities |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 3 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 4 | * 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 Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 10 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 11 | * Licensed under the GPL-2 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/kernel_stat.h> |
| 16 | #include <linux/seq_file.h> |
| 17 | #include <linux/irq.h> |
Philippe Gerum | 5b5da4c | 2011-03-17 02:12:48 -0400 | [diff] [blame] | 18 | #include <linux/sched.h> |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 19 | #include <linux/syscore_ops.h> |
Bjorn Helgaas | 288e6ea | 2016-02-02 13:53:23 -0600 | [diff] [blame] | 20 | #include <linux/gpio.h> |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 21 | #include <asm/delay.h> |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 22 | #ifdef CONFIG_IPIPE |
| 23 | #include <linux/ipipe.h> |
| 24 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 25 | #include <asm/traps.h> |
| 26 | #include <asm/blackfin.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 27 | #include <asm/irq_handler.h> |
Mike Frysinger | 761ec44 | 2009-10-15 17:12:05 +0000 | [diff] [blame] | 28 | #include <asm/dpmc.h> |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 29 | #include <asm/traps.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 30 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 31 | /* |
| 32 | * NOTES: |
| 33 | * - we have separated the physical Hardware interrupt from the |
| 34 | * levels that the LINUX kernel sees (see the description in irq.h) |
| 35 | * - |
| 36 | */ |
| 37 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 38 | #ifndef CONFIG_SMP |
Mike Frysinger | a99bbcc | 2007-10-22 00:19:31 +0800 | [diff] [blame] | 39 | /* Initialize this to an actual value to force it into the .data |
| 40 | * section so that we know it is properly initialized at entry into |
| 41 | * the kernel but before bss is initialized to zero (which is where |
| 42 | * it would live otherwise). The 0x1f magic represents the IRQs we |
| 43 | * cannot actually mask out in hardware. |
| 44 | */ |
Mike Frysinger | 4005978 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 45 | unsigned long bfin_irq_flags = 0x1f; |
| 46 | EXPORT_SYMBOL(bfin_irq_flags); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 47 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 48 | |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 49 | #ifdef CONFIG_PM |
| 50 | unsigned long bfin_sic_iwr[3]; /* Up to 3 SIC_IWRx registers */ |
Michael Hennerich | 4a88d0c | 2008-08-05 17:38:41 +0800 | [diff] [blame] | 51 | unsigned vr_wakeup; |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 52 | #endif |
| 53 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 54 | #ifndef SEC_GCTL |
Mike Frysinger | e9e334c | 2011-03-30 00:43:52 -0400 | [diff] [blame] | 55 | static struct ivgx { |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 56 | /* irq number for request_irq, available in mach-bf5xx/irq.h */ |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 57 | unsigned int irqno; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 58 | /* corresponding bit in the SIC_ISR register */ |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 59 | unsigned int isrflag; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 60 | } ivg_table[NR_PERI_INTS]; |
| 61 | |
Mike Frysinger | e9e334c | 2011-03-30 00:43:52 -0400 | [diff] [blame] | 62 | static struct ivg_slice { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 63 | /* position of first irq in ivg_table for given ivg */ |
| 64 | struct ivgx *ifirst; |
| 65 | struct ivgx *istop; |
| 66 | } ivg7_13[IVG13 - IVG7 + 1]; |
| 67 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | * Search SIC_IAR and fill tables with the irqvalues |
| 71 | * and their positions in the SIC_ISR register. |
| 72 | */ |
| 73 | static void __init search_IAR(void) |
| 74 | { |
| 75 | unsigned ivg, irq_pos = 0; |
| 76 | for (ivg = 0; ivg <= IVG13 - IVG7; ivg++) { |
Mike Frysinger | 80fcdb9 | 2010-04-22 21:15:00 +0000 | [diff] [blame] | 77 | int irqN; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 78 | |
Michael Hennerich | 34e0fc8 | 2007-07-12 16:17:18 +0800 | [diff] [blame] | 79 | ivg7_13[ivg].istop = ivg7_13[ivg].ifirst = &ivg_table[irq_pos]; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 80 | |
Mike Frysinger | 80fcdb9 | 2010-04-22 21:15:00 +0000 | [diff] [blame] | 81 | for (irqN = 0; irqN < NR_PERI_INTS; irqN += 4) { |
| 82 | int irqn; |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 83 | u32 iar = |
| 84 | bfin_read32((unsigned long *)SIC_IAR0 + |
Mike Frysinger | 80fcdb9 | 2010-04-22 21:15:00 +0000 | [diff] [blame] | 85 | #if defined(CONFIG_BF51x) || defined(CONFIG_BF52x) || \ |
| 86 | defined(CONFIG_BF538) || defined(CONFIG_BF539) |
| 87 | ((irqN % 32) >> 3) + ((irqN / 32) * ((SIC_IAR4 - SIC_IAR0) / 4)) |
Michael Hennerich | 5900314 | 2007-10-21 16:54:27 +0800 | [diff] [blame] | 88 | #else |
Mike Frysinger | 80fcdb9 | 2010-04-22 21:15:00 +0000 | [diff] [blame] | 89 | (irqN >> 3) |
Michael Hennerich | 5900314 | 2007-10-21 16:54:27 +0800 | [diff] [blame] | 90 | #endif |
Mike Frysinger | 80fcdb9 | 2010-04-22 21:15:00 +0000 | [diff] [blame] | 91 | ); |
Mike Frysinger | 80fcdb9 | 2010-04-22 21:15:00 +0000 | [diff] [blame] | 92 | for (irqn = irqN; irqn < irqN + 4; ++irqn) { |
| 93 | int iar_shift = (irqn & 7) * 4; |
| 94 | if (ivg == (0xf & (iar >> iar_shift))) { |
| 95 | ivg_table[irq_pos].irqno = IVG7 + irqn; |
| 96 | ivg_table[irq_pos].isrflag = 1 << (irqn % 32); |
| 97 | ivg7_13[ivg].istop++; |
| 98 | irq_pos++; |
| 99 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | } |
| 103 | } |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 104 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 107 | * This is for core internal IRQs |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 108 | */ |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 109 | void bfin_ack_noop(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 110 | { |
| 111 | /* Dummy function. */ |
| 112 | } |
| 113 | |
Thomas Gleixner | 4f19ea4 | 2011-02-06 18:23:27 +0000 | [diff] [blame] | 114 | static void bfin_core_mask_irq(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 115 | { |
Thomas Gleixner | 4f19ea4 | 2011-02-06 18:23:27 +0000 | [diff] [blame] | 116 | bfin_irq_flags &= ~(1 << d->irq); |
David Howells | 3b139cd | 2010-10-07 14:08:52 +0100 | [diff] [blame] | 117 | if (!hard_irqs_disabled()) |
| 118 | hard_local_irq_enable(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Thomas Gleixner | 4f19ea4 | 2011-02-06 18:23:27 +0000 | [diff] [blame] | 121 | static void bfin_core_unmask_irq(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 122 | { |
Thomas Gleixner | 4f19ea4 | 2011-02-06 18:23:27 +0000 | [diff] [blame] | 123 | bfin_irq_flags |= 1 << d->irq; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 124 | /* |
| 125 | * If interrupts are enabled, IMASK must contain the same value |
Mike Frysinger | 4005978 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 126 | * as bfin_irq_flags. Make sure that invariant holds. If interrupts |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 127 | * are currently disabled we need not do anything; one of the |
| 128 | * callers will take care of setting IMASK to the proper value |
| 129 | * when reenabling interrupts. |
Mike Frysinger | 4005978 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 130 | * local_irq_enable just does "STI bfin_irq_flags", so it's exactly |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 131 | * what we need. |
| 132 | */ |
David Howells | 3b139cd | 2010-10-07 14:08:52 +0100 | [diff] [blame] | 133 | if (!hard_irqs_disabled()) |
| 134 | hard_local_irq_enable(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 135 | return; |
| 136 | } |
| 137 | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 138 | #ifndef SEC_GCTL |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 139 | void bfin_internal_mask_irq(unsigned int irq) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 140 | { |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 141 | unsigned long flags = hard_local_irq_save(); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 142 | #ifdef SIC_IMASK0 |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 143 | unsigned mask_bank = BFIN_SYSIRQ(irq) / 32; |
| 144 | unsigned mask_bit = BFIN_SYSIRQ(irq) % 32; |
Bryan Wu | c04d66b | 2007-07-12 17:26:31 +0800 | [diff] [blame] | 145 | bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) & |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 146 | ~(1 << mask_bit)); |
| 147 | # if defined(CONFIG_SMP) || defined(CONFIG_ICC) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 148 | bfin_write_SICB_IMASK(mask_bank, bfin_read_SICB_IMASK(mask_bank) & |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 149 | ~(1 << mask_bit)); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 150 | # endif |
| 151 | #else |
| 152 | bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() & |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 153 | ~(1 << BFIN_SYSIRQ(irq))); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 154 | #endif /* end of SIC_IMASK0 */ |
David Howells | 3b139cd | 2010-10-07 14:08:52 +0100 | [diff] [blame] | 155 | hard_local_irq_restore(flags); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Thomas Gleixner | ff43a67 | 2011-02-06 18:23:29 +0000 | [diff] [blame] | 158 | static void bfin_internal_mask_irq_chip(struct irq_data *d) |
| 159 | { |
| 160 | bfin_internal_mask_irq(d->irq); |
| 161 | } |
| 162 | |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 163 | #ifdef CONFIG_SMP |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 164 | void bfin_internal_unmask_irq_affinity(unsigned int irq, |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 165 | const struct cpumask *affinity) |
| 166 | #else |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 167 | void bfin_internal_unmask_irq(unsigned int irq) |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 168 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 169 | { |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 170 | unsigned long flags = hard_local_irq_save(); |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 171 | |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 172 | #ifdef SIC_IMASK0 |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 173 | unsigned mask_bank = BFIN_SYSIRQ(irq) / 32; |
| 174 | unsigned mask_bit = BFIN_SYSIRQ(irq) % 32; |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 175 | # ifdef CONFIG_SMP |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 176 | if (cpumask_test_cpu(0, affinity)) |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 177 | # endif |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 178 | bfin_write_SIC_IMASK(mask_bank, |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 179 | bfin_read_SIC_IMASK(mask_bank) | |
| 180 | (1 << mask_bit)); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 181 | # ifdef CONFIG_SMP |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 182 | if (cpumask_test_cpu(1, affinity)) |
| 183 | bfin_write_SICB_IMASK(mask_bank, |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 184 | bfin_read_SICB_IMASK(mask_bank) | |
| 185 | (1 << mask_bit)); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 186 | # endif |
| 187 | #else |
| 188 | bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 189 | (1 << BFIN_SYSIRQ(irq))); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 190 | #endif |
| 191 | hard_local_irq_restore(flags); |
| 192 | } |
| 193 | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 194 | #ifdef CONFIG_SMP |
| 195 | static void bfin_internal_unmask_irq_chip(struct irq_data *d) |
| 196 | { |
Jiang Liu | 247bd4f | 2015-07-13 20:34:56 +0000 | [diff] [blame] | 197 | bfin_internal_unmask_irq_affinity(d->irq, |
| 198 | irq_data_get_affinity_mask(d)); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static int bfin_internal_set_affinity(struct irq_data *d, |
| 202 | const struct cpumask *mask, bool force) |
| 203 | { |
| 204 | bfin_internal_mask_irq(d->irq); |
| 205 | bfin_internal_unmask_irq_affinity(d->irq, mask); |
| 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | #else |
| 210 | static void bfin_internal_unmask_irq_chip(struct irq_data *d) |
| 211 | { |
| 212 | bfin_internal_unmask_irq(d->irq); |
| 213 | } |
| 214 | #endif |
| 215 | |
| 216 | #if defined(CONFIG_PM) |
| 217 | int bfin_internal_set_wake(unsigned int irq, unsigned int state) |
| 218 | { |
| 219 | u32 bank, bit, wakeup = 0; |
| 220 | unsigned long flags; |
| 221 | bank = BFIN_SYSIRQ(irq) / 32; |
| 222 | bit = BFIN_SYSIRQ(irq) % 32; |
| 223 | |
| 224 | switch (irq) { |
| 225 | #ifdef IRQ_RTC |
| 226 | case IRQ_RTC: |
| 227 | wakeup |= WAKE; |
| 228 | break; |
| 229 | #endif |
| 230 | #ifdef IRQ_CAN0_RX |
| 231 | case IRQ_CAN0_RX: |
| 232 | wakeup |= CANWE; |
| 233 | break; |
| 234 | #endif |
| 235 | #ifdef IRQ_CAN1_RX |
| 236 | case IRQ_CAN1_RX: |
| 237 | wakeup |= CANWE; |
| 238 | break; |
| 239 | #endif |
| 240 | #ifdef IRQ_USB_INT0 |
| 241 | case IRQ_USB_INT0: |
| 242 | wakeup |= USBWE; |
| 243 | break; |
| 244 | #endif |
| 245 | #ifdef CONFIG_BF54x |
| 246 | case IRQ_CNT: |
| 247 | wakeup |= ROTWE; |
| 248 | break; |
| 249 | #endif |
| 250 | default: |
| 251 | break; |
| 252 | } |
| 253 | |
| 254 | flags = hard_local_irq_save(); |
| 255 | |
| 256 | if (state) { |
| 257 | bfin_sic_iwr[bank] |= (1 << bit); |
| 258 | vr_wakeup |= wakeup; |
| 259 | |
| 260 | } else { |
| 261 | bfin_sic_iwr[bank] &= ~(1 << bit); |
| 262 | vr_wakeup &= ~wakeup; |
| 263 | } |
| 264 | |
| 265 | hard_local_irq_restore(flags); |
| 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
| 270 | static int bfin_internal_set_wake_chip(struct irq_data *d, unsigned int state) |
| 271 | { |
| 272 | return bfin_internal_set_wake(d->irq, state); |
| 273 | } |
| 274 | #else |
| 275 | inline int bfin_internal_set_wake(unsigned int irq, unsigned int state) |
| 276 | { |
| 277 | return 0; |
| 278 | } |
| 279 | # define bfin_internal_set_wake_chip NULL |
| 280 | #endif |
| 281 | |
| 282 | #else /* SEC_GCTL */ |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 283 | static void bfin_sec_preflow_handler(struct irq_data *d) |
| 284 | { |
| 285 | unsigned long flags = hard_local_irq_save(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 286 | unsigned int sid = BFIN_SYSIRQ(d->irq); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 287 | |
| 288 | bfin_write_SEC_SCI(0, SEC_CSID, sid); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 289 | |
David Howells | 3b139cd | 2010-10-07 14:08:52 +0100 | [diff] [blame] | 290 | hard_local_irq_restore(flags); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 293 | static void bfin_sec_mask_ack_irq(struct irq_data *d) |
| 294 | { |
| 295 | unsigned long flags = hard_local_irq_save(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 296 | unsigned int sid = BFIN_SYSIRQ(d->irq); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 297 | |
| 298 | bfin_write_SEC_SCI(0, SEC_CSID, sid); |
| 299 | |
| 300 | hard_local_irq_restore(flags); |
| 301 | } |
| 302 | |
| 303 | static void bfin_sec_unmask_irq(struct irq_data *d) |
| 304 | { |
| 305 | unsigned long flags = hard_local_irq_save(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 306 | unsigned int sid = BFIN_SYSIRQ(d->irq); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 307 | |
| 308 | bfin_write32(SEC_END, sid); |
| 309 | |
| 310 | hard_local_irq_restore(flags); |
| 311 | } |
| 312 | |
| 313 | static void bfin_sec_enable_ssi(unsigned int sid) |
| 314 | { |
| 315 | unsigned long flags = hard_local_irq_save(); |
| 316 | uint32_t reg_sctl = bfin_read_SEC_SCTL(sid); |
| 317 | |
| 318 | reg_sctl |= SEC_SCTL_SRC_EN; |
| 319 | bfin_write_SEC_SCTL(sid, reg_sctl); |
| 320 | |
| 321 | hard_local_irq_restore(flags); |
| 322 | } |
| 323 | |
| 324 | static void bfin_sec_disable_ssi(unsigned int sid) |
| 325 | { |
| 326 | unsigned long flags = hard_local_irq_save(); |
| 327 | uint32_t reg_sctl = bfin_read_SEC_SCTL(sid); |
| 328 | |
| 329 | reg_sctl &= ((uint32_t)~SEC_SCTL_SRC_EN); |
| 330 | bfin_write_SEC_SCTL(sid, reg_sctl); |
| 331 | |
| 332 | hard_local_irq_restore(flags); |
| 333 | } |
| 334 | |
| 335 | static void bfin_sec_set_ssi_coreid(unsigned int sid, unsigned int coreid) |
| 336 | { |
| 337 | unsigned long flags = hard_local_irq_save(); |
| 338 | uint32_t reg_sctl = bfin_read_SEC_SCTL(sid); |
| 339 | |
| 340 | reg_sctl &= ((uint32_t)~SEC_SCTL_CTG); |
| 341 | bfin_write_SEC_SCTL(sid, reg_sctl | ((coreid << 20) & SEC_SCTL_CTG)); |
| 342 | |
| 343 | hard_local_irq_restore(flags); |
| 344 | } |
| 345 | |
| 346 | static void bfin_sec_enable_sci(unsigned int sid) |
| 347 | { |
| 348 | unsigned long flags = hard_local_irq_save(); |
| 349 | uint32_t reg_sctl = bfin_read_SEC_SCTL(sid); |
| 350 | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 351 | if (sid == BFIN_SYSIRQ(IRQ_WATCH0)) |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 352 | reg_sctl |= SEC_SCTL_FAULT_EN; |
| 353 | else |
| 354 | reg_sctl |= SEC_SCTL_INT_EN; |
| 355 | bfin_write_SEC_SCTL(sid, reg_sctl); |
| 356 | |
| 357 | hard_local_irq_restore(flags); |
| 358 | } |
| 359 | |
| 360 | static void bfin_sec_disable_sci(unsigned int sid) |
| 361 | { |
| 362 | unsigned long flags = hard_local_irq_save(); |
| 363 | uint32_t reg_sctl = bfin_read_SEC_SCTL(sid); |
| 364 | |
| 365 | reg_sctl &= ((uint32_t)~SEC_SCTL_INT_EN); |
| 366 | bfin_write_SEC_SCTL(sid, reg_sctl); |
| 367 | |
| 368 | hard_local_irq_restore(flags); |
| 369 | } |
| 370 | |
| 371 | static void bfin_sec_enable(struct irq_data *d) |
| 372 | { |
| 373 | unsigned long flags = hard_local_irq_save(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 374 | unsigned int sid = BFIN_SYSIRQ(d->irq); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 375 | |
| 376 | bfin_sec_enable_sci(sid); |
| 377 | bfin_sec_enable_ssi(sid); |
| 378 | |
| 379 | hard_local_irq_restore(flags); |
| 380 | } |
| 381 | |
| 382 | static void bfin_sec_disable(struct irq_data *d) |
| 383 | { |
| 384 | unsigned long flags = hard_local_irq_save(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 385 | unsigned int sid = BFIN_SYSIRQ(d->irq); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 386 | |
| 387 | bfin_sec_disable_sci(sid); |
| 388 | bfin_sec_disable_ssi(sid); |
| 389 | |
| 390 | hard_local_irq_restore(flags); |
| 391 | } |
| 392 | |
Sonic Zhang | e0a5931 | 2012-06-29 18:19:29 +0800 | [diff] [blame] | 393 | static void bfin_sec_set_priority(unsigned int sec_int_levels, u8 *sec_int_priority) |
| 394 | { |
| 395 | unsigned long flags = hard_local_irq_save(); |
| 396 | uint32_t reg_sctl; |
| 397 | int i; |
| 398 | |
| 399 | bfin_write_SEC_SCI(0, SEC_CPLVL, sec_int_levels); |
| 400 | |
| 401 | for (i = 0; i < SYS_IRQS - BFIN_IRQ(0); i++) { |
| 402 | reg_sctl = bfin_read_SEC_SCTL(i) & ~SEC_SCTL_PRIO; |
| 403 | reg_sctl |= sec_int_priority[i] << SEC_SCTL_PRIO_OFFSET; |
| 404 | bfin_write_SEC_SCTL(i, reg_sctl); |
| 405 | } |
| 406 | |
| 407 | hard_local_irq_restore(flags); |
| 408 | } |
| 409 | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 410 | void bfin_sec_raise_irq(unsigned int irq) |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 411 | { |
| 412 | unsigned long flags = hard_local_irq_save(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 413 | unsigned int sid = BFIN_SYSIRQ(irq); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 414 | |
| 415 | bfin_write32(SEC_RAISE, sid); |
| 416 | |
| 417 | hard_local_irq_restore(flags); |
| 418 | } |
| 419 | |
| 420 | static void init_software_driven_irq(void) |
| 421 | { |
| 422 | bfin_sec_set_ssi_coreid(34, 0); |
| 423 | bfin_sec_set_ssi_coreid(35, 1); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 424 | |
| 425 | bfin_sec_enable_sci(35); |
| 426 | bfin_sec_enable_ssi(35); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 427 | bfin_sec_set_ssi_coreid(36, 0); |
| 428 | bfin_sec_set_ssi_coreid(37, 1); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 429 | bfin_sec_enable_sci(37); |
| 430 | bfin_sec_enable_ssi(37); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 431 | } |
| 432 | |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 433 | void handle_sec_sfi_fault(uint32_t gstat) |
| 434 | { |
| 435 | |
| 436 | } |
| 437 | |
| 438 | void handle_sec_sci_fault(uint32_t gstat) |
| 439 | { |
| 440 | uint32_t core_id; |
| 441 | uint32_t cstat; |
| 442 | |
| 443 | core_id = gstat & SEC_GSTAT_SCI; |
| 444 | cstat = bfin_read_SEC_SCI(core_id, SEC_CSTAT); |
| 445 | if (cstat & SEC_CSTAT_ERR) { |
| 446 | switch (cstat & SEC_CSTAT_ERRC) { |
| 447 | case SEC_CSTAT_ACKERR: |
| 448 | printk(KERN_DEBUG "sec ack err\n"); |
| 449 | break; |
| 450 | default: |
Masanari Iida | 9b13494 | 2014-08-06 22:31:28 +0900 | [diff] [blame] | 451 | printk(KERN_DEBUG "sec sci unknown err\n"); |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 452 | } |
| 453 | } |
| 454 | |
| 455 | } |
| 456 | |
| 457 | void handle_sec_ssi_fault(uint32_t gstat) |
| 458 | { |
| 459 | uint32_t sid; |
| 460 | uint32_t sstat; |
| 461 | |
| 462 | sid = gstat & SEC_GSTAT_SID; |
| 463 | sstat = bfin_read_SEC_SSTAT(sid); |
| 464 | |
| 465 | } |
| 466 | |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 467 | void handle_sec_fault(uint32_t sec_gstat) |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 468 | { |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 469 | if (sec_gstat & SEC_GSTAT_ERR) { |
| 470 | |
| 471 | switch (sec_gstat & SEC_GSTAT_ERRC) { |
| 472 | case 0: |
| 473 | handle_sec_sfi_fault(sec_gstat); |
| 474 | break; |
| 475 | case SEC_GSTAT_SCIERR: |
| 476 | handle_sec_sci_fault(sec_gstat); |
| 477 | break; |
| 478 | case SEC_GSTAT_SSIERR: |
| 479 | handle_sec_ssi_fault(sec_gstat); |
| 480 | break; |
| 481 | } |
| 482 | |
| 483 | |
| 484 | } |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 485 | } |
| 486 | |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 487 | static struct irqaction bfin_fault_irq = { |
| 488 | .name = "Blackfin fault", |
| 489 | }; |
| 490 | |
| 491 | static irqreturn_t bfin_fault_routine(int irq, void *data) |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 492 | { |
| 493 | struct pt_regs *fp = get_irq_regs(); |
| 494 | |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 495 | switch (irq) { |
| 496 | case IRQ_C0_DBL_FAULT: |
| 497 | double_fault_c(fp); |
| 498 | break; |
| 499 | case IRQ_C0_HW_ERR: |
| 500 | dump_bfin_process(fp); |
| 501 | dump_bfin_mem(fp); |
| 502 | show_regs(fp); |
| 503 | printk(KERN_NOTICE "Kernel Stack\n"); |
| 504 | show_stack(current, NULL); |
| 505 | print_modules(); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 506 | panic("Core 0 hardware error"); |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 507 | break; |
| 508 | case IRQ_C0_NMI_L1_PARITY_ERR: |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 509 | panic("Core 0 NMI L1 parity error"); |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 510 | break; |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 511 | case IRQ_SEC_ERR: |
| 512 | pr_err("SEC error\n"); |
| 513 | handle_sec_fault(bfin_read32(SEC_GSTAT)); |
| 514 | break; |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 515 | default: |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 516 | panic("Unknown fault %d", irq); |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 517 | } |
| 518 | |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 519 | return IRQ_HANDLED; |
Sonic Zhang | 06051fd | 2012-07-04 19:22:55 +0800 | [diff] [blame] | 520 | } |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 521 | #endif /* SEC_GCTL */ |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 522 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 523 | static struct irq_chip bfin_core_irqchip = { |
Graf Yang | 763e63c | 2008-10-08 17:08:15 +0800 | [diff] [blame] | 524 | .name = "CORE", |
Thomas Gleixner | 4f19ea4 | 2011-02-06 18:23:27 +0000 | [diff] [blame] | 525 | .irq_mask = bfin_core_mask_irq, |
| 526 | .irq_unmask = bfin_core_unmask_irq, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 527 | }; |
| 528 | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 529 | #ifndef SEC_GCTL |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 530 | static struct irq_chip bfin_internal_irqchip = { |
Graf Yang | 763e63c | 2008-10-08 17:08:15 +0800 | [diff] [blame] | 531 | .name = "INTN", |
Thomas Gleixner | ff43a67 | 2011-02-06 18:23:29 +0000 | [diff] [blame] | 532 | .irq_mask = bfin_internal_mask_irq_chip, |
| 533 | .irq_unmask = bfin_internal_unmask_irq_chip, |
Thomas Gleixner | ff43a67 | 2011-02-06 18:23:29 +0000 | [diff] [blame] | 534 | .irq_disable = bfin_internal_mask_irq_chip, |
| 535 | .irq_enable = bfin_internal_unmask_irq_chip, |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 536 | #ifdef CONFIG_SMP |
Thomas Gleixner | ff43a67 | 2011-02-06 18:23:29 +0000 | [diff] [blame] | 537 | .irq_set_affinity = bfin_internal_set_affinity, |
Sonic Zhang | 0325f25 | 2009-12-28 07:29:57 +0000 | [diff] [blame] | 538 | #endif |
Thomas Gleixner | ff43a67 | 2011-02-06 18:23:29 +0000 | [diff] [blame] | 539 | .irq_set_wake = bfin_internal_set_wake_chip, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 540 | }; |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 541 | #else |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 542 | static struct irq_chip bfin_sec_irqchip = { |
| 543 | .name = "SEC", |
| 544 | .irq_mask_ack = bfin_sec_mask_ack_irq, |
| 545 | .irq_mask = bfin_sec_mask_ack_irq, |
| 546 | .irq_unmask = bfin_sec_unmask_irq, |
| 547 | .irq_eoi = bfin_sec_unmask_irq, |
| 548 | .irq_disable = bfin_sec_disable, |
| 549 | .irq_enable = bfin_sec_enable, |
| 550 | }; |
| 551 | #endif |
| 552 | |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 553 | void bfin_handle_irq(unsigned irq) |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 554 | { |
| 555 | #ifdef CONFIG_IPIPE |
| 556 | struct pt_regs regs; /* Contents not used. */ |
| 557 | ipipe_trace_irq_entry(irq); |
| 558 | __ipipe_handle_irq(irq, ®s); |
| 559 | ipipe_trace_irq_exit(irq); |
| 560 | #else /* !CONFIG_IPIPE */ |
Thomas Gleixner | b10bbbb | 2011-02-06 18:23:25 +0000 | [diff] [blame] | 561 | generic_handle_irq(irq); |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 562 | #endif /* !CONFIG_IPIPE */ |
| 563 | } |
| 564 | |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 565 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 566 | static int mac_stat_int_mask; |
| 567 | |
| 568 | static void bfin_mac_status_ack_irq(unsigned int irq) |
| 569 | { |
| 570 | switch (irq) { |
| 571 | case IRQ_MAC_MMCINT: |
| 572 | bfin_write_EMAC_MMC_TIRQS( |
| 573 | bfin_read_EMAC_MMC_TIRQE() & |
| 574 | bfin_read_EMAC_MMC_TIRQS()); |
| 575 | bfin_write_EMAC_MMC_RIRQS( |
| 576 | bfin_read_EMAC_MMC_RIRQE() & |
| 577 | bfin_read_EMAC_MMC_RIRQS()); |
| 578 | break; |
| 579 | case IRQ_MAC_RXFSINT: |
| 580 | bfin_write_EMAC_RX_STKY( |
| 581 | bfin_read_EMAC_RX_IRQE() & |
| 582 | bfin_read_EMAC_RX_STKY()); |
| 583 | break; |
| 584 | case IRQ_MAC_TXFSINT: |
| 585 | bfin_write_EMAC_TX_STKY( |
| 586 | bfin_read_EMAC_TX_IRQE() & |
| 587 | bfin_read_EMAC_TX_STKY()); |
| 588 | break; |
| 589 | case IRQ_MAC_WAKEDET: |
| 590 | bfin_write_EMAC_WKUP_CTL( |
| 591 | bfin_read_EMAC_WKUP_CTL() | MPKS | RWKS); |
| 592 | break; |
| 593 | default: |
| 594 | /* These bits are W1C */ |
| 595 | bfin_write_EMAC_SYSTAT(1L << (irq - IRQ_MAC_PHYINT)); |
| 596 | break; |
| 597 | } |
| 598 | } |
| 599 | |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 600 | static void bfin_mac_status_mask_irq(struct irq_data *d) |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 601 | { |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 602 | unsigned int irq = d->irq; |
| 603 | |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 604 | mac_stat_int_mask &= ~(1L << (irq - IRQ_MAC_PHYINT)); |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 605 | #ifdef BF537_FAMILY |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 606 | switch (irq) { |
| 607 | case IRQ_MAC_PHYINT: |
| 608 | bfin_write_EMAC_SYSCTL(bfin_read_EMAC_SYSCTL() & ~PHYIE); |
| 609 | break; |
| 610 | default: |
| 611 | break; |
| 612 | } |
| 613 | #else |
| 614 | if (!mac_stat_int_mask) |
| 615 | bfin_internal_mask_irq(IRQ_MAC_ERROR); |
| 616 | #endif |
| 617 | bfin_mac_status_ack_irq(irq); |
| 618 | } |
| 619 | |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 620 | static void bfin_mac_status_unmask_irq(struct irq_data *d) |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 621 | { |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 622 | unsigned int irq = d->irq; |
| 623 | |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 624 | #ifdef BF537_FAMILY |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 625 | switch (irq) { |
| 626 | case IRQ_MAC_PHYINT: |
| 627 | bfin_write_EMAC_SYSCTL(bfin_read_EMAC_SYSCTL() | PHYIE); |
| 628 | break; |
| 629 | default: |
| 630 | break; |
| 631 | } |
| 632 | #else |
| 633 | if (!mac_stat_int_mask) |
| 634 | bfin_internal_unmask_irq(IRQ_MAC_ERROR); |
| 635 | #endif |
| 636 | mac_stat_int_mask |= 1L << (irq - IRQ_MAC_PHYINT); |
| 637 | } |
| 638 | |
| 639 | #ifdef CONFIG_PM |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 640 | int bfin_mac_status_set_wake(struct irq_data *d, unsigned int state) |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 641 | { |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 642 | #ifdef BF537_FAMILY |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 643 | return bfin_internal_set_wake(IRQ_GENERIC_ERROR, state); |
| 644 | #else |
| 645 | return bfin_internal_set_wake(IRQ_MAC_ERROR, state); |
| 646 | #endif |
| 647 | } |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 648 | #else |
| 649 | # define bfin_mac_status_set_wake NULL |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 650 | #endif |
| 651 | |
| 652 | static struct irq_chip bfin_mac_status_irqchip = { |
| 653 | .name = "MACST", |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 654 | .irq_mask = bfin_mac_status_mask_irq, |
| 655 | .irq_unmask = bfin_mac_status_unmask_irq, |
Thomas Gleixner | 172d2d1 | 2011-02-06 18:23:34 +0000 | [diff] [blame] | 656 | .irq_set_wake = bfin_mac_status_set_wake, |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 657 | }; |
| 658 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 659 | void bfin_demux_mac_status_irq(struct irq_desc *inta_desc) |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 660 | { |
| 661 | int i, irq = 0; |
| 662 | u32 status = bfin_read_EMAC_SYSTAT(); |
| 663 | |
Michael Hennerich | bedeea6 | 2010-08-20 11:59:27 +0000 | [diff] [blame] | 664 | for (i = 0; i <= (IRQ_MAC_STMDONE - IRQ_MAC_PHYINT); i++) |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 665 | if (status & (1L << i)) { |
| 666 | irq = IRQ_MAC_PHYINT + i; |
| 667 | break; |
| 668 | } |
| 669 | |
| 670 | if (irq) { |
| 671 | if (mac_stat_int_mask & (1L << (irq - IRQ_MAC_PHYINT))) { |
| 672 | bfin_handle_irq(irq); |
| 673 | } else { |
| 674 | bfin_mac_status_ack_irq(irq); |
| 675 | pr_debug("IRQ %d:" |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 676 | " MASKED MAC ERROR INTERRUPT ASSERTED\n", |
| 677 | irq); |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 678 | } |
| 679 | } else |
| 680 | printk(KERN_ERR |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 681 | "%s : %s : LINE %d :\nIRQ ?: MAC ERROR" |
| 682 | " INTERRUPT ASSERTED BUT NO SOURCE FOUND" |
| 683 | "(EMAC_SYSTAT=0x%X)\n", |
| 684 | __func__, __FILE__, __LINE__, status); |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 685 | } |
| 686 | #endif |
| 687 | |
Thomas Gleixner | 2843844 | 2015-07-13 20:34:57 +0000 | [diff] [blame] | 688 | static inline void bfin_set_irq_handler(struct irq_data *d, irq_flow_handler_t handle) |
Graf Yang | bfd1511 | 2008-10-08 18:02:44 +0800 | [diff] [blame] | 689 | { |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 690 | #ifdef CONFIG_IPIPE |
Philippe Gerum | 5b5da4c | 2011-03-17 02:12:48 -0400 | [diff] [blame] | 691 | handle = handle_level_irq; |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 692 | #endif |
Thomas Gleixner | 2843844 | 2015-07-13 20:34:57 +0000 | [diff] [blame] | 693 | irq_set_handler_locked(d, handle); |
Graf Yang | bfd1511 | 2008-10-08 18:02:44 +0800 | [diff] [blame] | 694 | } |
| 695 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 696 | #ifdef CONFIG_GPIO_ADI |
Michael Hennerich | 6fce6a8 | 2007-12-24 16:56:12 +0800 | [diff] [blame] | 697 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 698 | static DECLARE_BITMAP(gpio_enabled, MAX_BLACKFIN_GPIOS); |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 699 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 700 | static void bfin_gpio_ack_irq(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 701 | { |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 702 | /* AFAIK ack_irq in case mask_ack is provided |
| 703 | * get's only called for edge sense irqs |
| 704 | */ |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 705 | set_gpio_data(irq_to_gpio(d->irq), 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 706 | } |
| 707 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 708 | static void bfin_gpio_mask_ack_irq(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 709 | { |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 710 | unsigned int irq = d->irq; |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 711 | u32 gpionr = irq_to_gpio(irq); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 712 | |
Thomas Gleixner | 1907d8b | 2011-03-24 17:21:01 +0100 | [diff] [blame] | 713 | if (!irqd_is_level_type(d)) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 714 | set_gpio_data(gpionr, 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 715 | |
| 716 | set_gpio_maska(gpionr, 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 719 | static void bfin_gpio_mask_irq(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 720 | { |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 721 | set_gpio_maska(irq_to_gpio(d->irq), 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 724 | static void bfin_gpio_unmask_irq(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 725 | { |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 726 | set_gpio_maska(irq_to_gpio(d->irq), 1); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 729 | static unsigned int bfin_gpio_irq_startup(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 730 | { |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 731 | u32 gpionr = irq_to_gpio(d->irq); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 732 | |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 733 | if (__test_and_set_bit(gpionr, gpio_enabled)) |
Michael Hennerich | affee2b | 2008-04-24 08:10:10 +0800 | [diff] [blame] | 734 | bfin_gpio_irq_prepare(gpionr); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 735 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 736 | bfin_gpio_unmask_irq(d); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 737 | |
Michael Hennerich | affee2b | 2008-04-24 08:10:10 +0800 | [diff] [blame] | 738 | return 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 739 | } |
| 740 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 741 | static void bfin_gpio_irq_shutdown(struct irq_data *d) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 742 | { |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 743 | u32 gpionr = irq_to_gpio(d->irq); |
Graf Yang | 30af6d4 | 2008-11-18 17:48:21 +0800 | [diff] [blame] | 744 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 745 | bfin_gpio_mask_irq(d); |
Graf Yang | 30af6d4 | 2008-11-18 17:48:21 +0800 | [diff] [blame] | 746 | __clear_bit(gpionr, gpio_enabled); |
Graf Yang | 9570ff4 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 747 | bfin_gpio_irq_free(gpionr); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 748 | } |
| 749 | |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 750 | static int bfin_gpio_irq_type(struct irq_data *d, unsigned int type) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 751 | { |
Thomas Gleixner | e950285 | 2011-02-06 18:23:36 +0000 | [diff] [blame] | 752 | unsigned int irq = d->irq; |
Graf Yang | 8eb3e3b | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 753 | int ret; |
| 754 | char buf[16]; |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 755 | u32 gpionr = irq_to_gpio(irq); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 756 | |
| 757 | if (type == IRQ_TYPE_PROBE) { |
| 758 | /* only probe unenabled GPIO interrupt lines */ |
Mike Frysinger | c369534 | 2009-06-13 10:32:29 -0400 | [diff] [blame] | 759 | if (test_bit(gpionr, gpio_enabled)) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 760 | return 0; |
| 761 | type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; |
| 762 | } |
| 763 | |
| 764 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING | |
Michael Hennerich | 34e0fc8 | 2007-07-12 16:17:18 +0800 | [diff] [blame] | 765 | IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) { |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 766 | |
Graf Yang | 9570ff4 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 767 | snprintf(buf, 16, "gpio-irq%d", irq); |
| 768 | ret = bfin_gpio_irq_request(gpionr, buf); |
| 769 | if (ret) |
| 770 | return ret; |
| 771 | |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 772 | if (__test_and_set_bit(gpionr, gpio_enabled)) |
Michael Hennerich | affee2b | 2008-04-24 08:10:10 +0800 | [diff] [blame] | 773 | bfin_gpio_irq_prepare(gpionr); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 774 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 775 | } else { |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 776 | __clear_bit(gpionr, gpio_enabled); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 777 | return 0; |
| 778 | } |
| 779 | |
Michael Hennerich | f1bceb4 | 2008-02-02 16:17:52 +0800 | [diff] [blame] | 780 | set_gpio_inen(gpionr, 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 781 | set_gpio_dir(gpionr, 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 782 | |
| 783 | if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) |
| 784 | == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) |
| 785 | set_gpio_both(gpionr, 1); |
| 786 | else |
| 787 | set_gpio_both(gpionr, 0); |
| 788 | |
| 789 | if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW))) |
| 790 | set_gpio_polar(gpionr, 1); /* low or falling edge denoted by one */ |
| 791 | else |
| 792 | set_gpio_polar(gpionr, 0); /* high or rising edge denoted by zero */ |
| 793 | |
Michael Hennerich | f1bceb4 | 2008-02-02 16:17:52 +0800 | [diff] [blame] | 794 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) { |
| 795 | set_gpio_edge(gpionr, 1); |
| 796 | set_gpio_inen(gpionr, 1); |
Michael Hennerich | f1bceb4 | 2008-02-02 16:17:52 +0800 | [diff] [blame] | 797 | set_gpio_data(gpionr, 0); |
| 798 | |
| 799 | } else { |
| 800 | set_gpio_edge(gpionr, 0); |
Michael Hennerich | f1bceb4 | 2008-02-02 16:17:52 +0800 | [diff] [blame] | 801 | set_gpio_inen(gpionr, 1); |
| 802 | } |
| 803 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 804 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) |
Thomas Gleixner | 2843844 | 2015-07-13 20:34:57 +0000 | [diff] [blame] | 805 | bfin_set_irq_handler(d, handle_edge_irq); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 806 | else |
Thomas Gleixner | 2843844 | 2015-07-13 20:34:57 +0000 | [diff] [blame] | 807 | bfin_set_irq_handler(d, handle_level_irq); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 808 | |
| 809 | return 0; |
| 810 | } |
| 811 | |
Mike Frysinger | e2a8092 | 2011-04-15 12:51:33 -0400 | [diff] [blame] | 812 | static void bfin_demux_gpio_block(unsigned int irq) |
| 813 | { |
| 814 | unsigned int gpio, mask; |
| 815 | |
| 816 | gpio = irq_to_gpio(irq); |
| 817 | mask = get_gpiop_data(gpio) & get_gpiop_maska(gpio); |
| 818 | |
| 819 | while (mask) { |
| 820 | if (mask & 1) |
| 821 | bfin_handle_irq(irq); |
| 822 | irq++; |
| 823 | mask >>= 1; |
| 824 | } |
| 825 | } |
| 826 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 827 | void bfin_demux_gpio_irq(struct irq_desc *desc) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 828 | { |
Thomas Gleixner | 2b501769 | 2015-07-31 21:50:30 +0200 | [diff] [blame] | 829 | unsigned int inta_irq = irq_desc_get_irq(desc); |
Mike Frysinger | e2a8092 | 2011-04-15 12:51:33 -0400 | [diff] [blame] | 830 | unsigned int irq; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 831 | |
Michael Hennerich | 2c4f829 | 2008-02-09 04:11:14 +0800 | [diff] [blame] | 832 | switch (inta_irq) { |
Mike Frysinger | e2a8092 | 2011-04-15 12:51:33 -0400 | [diff] [blame] | 833 | #if defined(BF537_FAMILY) |
Mike Frysinger | 8c05410 | 2011-04-15 13:04:59 -0400 | [diff] [blame] | 834 | case IRQ_PF_INTA_PG_INTA: |
Mike Frysinger | e2a8092 | 2011-04-15 12:51:33 -0400 | [diff] [blame] | 835 | bfin_demux_gpio_block(IRQ_PF0); |
| 836 | irq = IRQ_PG0; |
Michael Hennerich | 2c4f829 | 2008-02-09 04:11:14 +0800 | [diff] [blame] | 837 | break; |
Mike Frysinger | 8c05410 | 2011-04-15 13:04:59 -0400 | [diff] [blame] | 838 | case IRQ_PH_INTA_MAC_RX: |
Michael Hennerich | 2c4f829 | 2008-02-09 04:11:14 +0800 | [diff] [blame] | 839 | irq = IRQ_PH0; |
| 840 | break; |
Mike Frysinger | e2a8092 | 2011-04-15 12:51:33 -0400 | [diff] [blame] | 841 | #elif defined(BF533_FAMILY) |
| 842 | case IRQ_PROG_INTA: |
| 843 | irq = IRQ_PF0; |
| 844 | break; |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 845 | #elif defined(BF538_FAMILY) |
Michael Hennerich | dc26aec | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 846 | case IRQ_PORTF_INTA: |
| 847 | irq = IRQ_PF0; |
| 848 | break; |
Bryan Wu | 2f6f4bc | 2008-11-18 17:48:21 +0800 | [diff] [blame] | 849 | #elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x) |
Michael Hennerich | 2c4f829 | 2008-02-09 04:11:14 +0800 | [diff] [blame] | 850 | case IRQ_PORTF_INTA: |
| 851 | irq = IRQ_PF0; |
| 852 | break; |
| 853 | case IRQ_PORTG_INTA: |
| 854 | irq = IRQ_PG0; |
| 855 | break; |
| 856 | case IRQ_PORTH_INTA: |
| 857 | irq = IRQ_PH0; |
| 858 | break; |
| 859 | #elif defined(CONFIG_BF561) |
| 860 | case IRQ_PROG0_INTA: |
| 861 | irq = IRQ_PF0; |
| 862 | break; |
| 863 | case IRQ_PROG1_INTA: |
| 864 | irq = IRQ_PF16; |
| 865 | break; |
| 866 | case IRQ_PROG2_INTA: |
| 867 | irq = IRQ_PF32; |
| 868 | break; |
| 869 | #endif |
| 870 | default: |
| 871 | BUG(); |
| 872 | return; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 873 | } |
Michael Hennerich | 2c4f829 | 2008-02-09 04:11:14 +0800 | [diff] [blame] | 874 | |
Mike Frysinger | e2a8092 | 2011-04-15 12:51:33 -0400 | [diff] [blame] | 875 | bfin_demux_gpio_block(irq); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 876 | } |
| 877 | |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 878 | #ifdef CONFIG_PM |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 879 | |
Mike Frysinger | dd8cb37 | 2011-04-15 03:19:22 -0400 | [diff] [blame] | 880 | static int bfin_gpio_set_wake(struct irq_data *d, unsigned int state) |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 881 | { |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 882 | return bfin_gpio_pm_wakeup_ctrl(irq_to_gpio(d->irq), state); |
| 883 | } |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 884 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 885 | #else |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 886 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 887 | # define bfin_gpio_set_wake NULL |
| 888 | |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 889 | #endif |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 890 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 891 | static struct irq_chip bfin_gpio_irqchip = { |
| 892 | .name = "GPIO", |
| 893 | .irq_ack = bfin_gpio_ack_irq, |
| 894 | .irq_mask = bfin_gpio_mask_irq, |
| 895 | .irq_mask_ack = bfin_gpio_mask_ack_irq, |
| 896 | .irq_unmask = bfin_gpio_unmask_irq, |
| 897 | .irq_disable = bfin_gpio_mask_irq, |
| 898 | .irq_enable = bfin_gpio_unmask_irq, |
| 899 | .irq_set_type = bfin_gpio_irq_type, |
| 900 | .irq_startup = bfin_gpio_irq_startup, |
| 901 | .irq_shutdown = bfin_gpio_irq_shutdown, |
| 902 | .irq_set_wake = bfin_gpio_set_wake, |
| 903 | }; |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 904 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 905 | #endif |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 906 | |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 907 | #ifdef CONFIG_PM |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 908 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 909 | #ifdef SEC_GCTL |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 910 | static u32 save_pint_sec_ctl[NR_PINT_SYS_IRQS]; |
| 911 | |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 912 | static int sec_suspend(void) |
| 913 | { |
| 914 | u32 bank; |
| 915 | |
| 916 | for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++) |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 917 | save_pint_sec_ctl[bank] = bfin_read_SEC_SCTL(bank + BFIN_SYSIRQ(IRQ_PINT0)); |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 918 | return 0; |
| 919 | } |
| 920 | |
| 921 | static void sec_resume(void) |
| 922 | { |
| 923 | u32 bank; |
| 924 | |
| 925 | bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_RESET); |
| 926 | udelay(100); |
| 927 | bfin_write_SEC_GCTL(SEC_GCTL_EN); |
| 928 | bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN); |
| 929 | |
| 930 | for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++) |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 931 | bfin_write_SEC_SCTL(bank + BFIN_SYSIRQ(IRQ_PINT0), save_pint_sec_ctl[bank]); |
Steven Miao | d49cdf840 | 2012-06-14 18:04:01 +0800 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | static struct syscore_ops sec_pm_syscore_ops = { |
| 935 | .suspend = sec_suspend, |
| 936 | .resume = sec_resume, |
| 937 | }; |
Michael Hennerich | cfefe3c | 2008-02-09 04:12:37 +0800 | [diff] [blame] | 938 | #endif |
| 939 | |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 940 | #endif |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 941 | |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 942 | void init_exception_vectors(void) |
Bernd Schmidt | 8be80ed | 2007-07-25 14:44:49 +0800 | [diff] [blame] | 943 | { |
Mike Frysinger | f0b5d12 | 2007-08-05 17:03:59 +0800 | [diff] [blame] | 944 | /* cannot program in software: |
| 945 | * evt0 - emulation (jtag) |
| 946 | * evt1 - reset |
| 947 | */ |
| 948 | bfin_write_EVT2(evt_nmi); |
Bernd Schmidt | 8be80ed | 2007-07-25 14:44:49 +0800 | [diff] [blame] | 949 | bfin_write_EVT3(trap); |
| 950 | bfin_write_EVT5(evt_ivhw); |
| 951 | bfin_write_EVT6(evt_timer); |
| 952 | bfin_write_EVT7(evt_evt7); |
| 953 | bfin_write_EVT8(evt_evt8); |
| 954 | bfin_write_EVT9(evt_evt9); |
| 955 | bfin_write_EVT10(evt_evt10); |
| 956 | bfin_write_EVT11(evt_evt11); |
| 957 | bfin_write_EVT12(evt_evt12); |
| 958 | bfin_write_EVT13(evt_evt13); |
Philippe Gerum | 9703a73 | 2009-06-22 18:23:48 +0200 | [diff] [blame] | 959 | bfin_write_EVT14(evt_evt14); |
Bernd Schmidt | 8be80ed | 2007-07-25 14:44:49 +0800 | [diff] [blame] | 960 | bfin_write_EVT15(evt_system_call); |
| 961 | CSYNC(); |
| 962 | } |
| 963 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 964 | #ifndef SEC_GCTL |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 965 | /* |
| 966 | * This function should be called during kernel startup to initialize |
| 967 | * the BFin IRQ handling routines. |
| 968 | */ |
Michael Hennerich | 8d02237 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 969 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 970 | int __init init_arch_irq(void) |
| 971 | { |
| 972 | int irq; |
| 973 | unsigned long ilat = 0; |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 974 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 975 | /* Disable all the peripheral intrs - page 4-29 HW Ref manual */ |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 976 | #ifdef SIC_IMASK0 |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 977 | bfin_write_SIC_IMASK0(SIC_UNMASK_ALL); |
| 978 | bfin_write_SIC_IMASK1(SIC_UNMASK_ALL); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 979 | # ifdef SIC_IMASK2 |
Michael Hennerich | 5900314 | 2007-10-21 16:54:27 +0800 | [diff] [blame] | 980 | bfin_write_SIC_IMASK2(SIC_UNMASK_ALL); |
Mike Frysinger | a055b2b | 2007-11-15 21:12:32 +0800 | [diff] [blame] | 981 | # endif |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 982 | # if defined(CONFIG_SMP) || defined(CONFIG_ICC) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 983 | bfin_write_SICB_IMASK0(SIC_UNMASK_ALL); |
| 984 | bfin_write_SICB_IMASK1(SIC_UNMASK_ALL); |
| 985 | # endif |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 986 | #else |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 987 | bfin_write_SIC_IMASK(SIC_UNMASK_ALL); |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 988 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 989 | |
| 990 | local_irq_disable(); |
| 991 | |
Michael Hennerich | 34e0fc8 | 2007-07-12 16:17:18 +0800 | [diff] [blame] | 992 | for (irq = 0; irq <= SYS_IRQS; irq++) { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 993 | if (irq <= IRQ_CORETMR) |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 994 | irq_set_chip(irq, &bfin_core_irqchip); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 995 | else |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 996 | irq_set_chip(irq, &bfin_internal_irqchip); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 997 | |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 998 | switch (irq) { |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 999 | #if !BFIN_GPIO_PINT |
| 1000 | #if defined(BF537_FAMILY) |
Mike Frysinger | 01f8e34 | 2011-06-26 13:56:23 -0400 | [diff] [blame] | 1001 | case IRQ_PH_INTA_MAC_RX: |
| 1002 | case IRQ_PF_INTA_PG_INTA: |
| 1003 | #elif defined(BF533_FAMILY) |
| 1004 | case IRQ_PROG_INTA: |
Bryan Wu | 2f6f4bc | 2008-11-18 17:48:21 +0800 | [diff] [blame] | 1005 | #elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x) |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1006 | case IRQ_PORTF_INTA: |
| 1007 | case IRQ_PORTG_INTA: |
| 1008 | case IRQ_PORTH_INTA: |
Michael Hennerich | 2c4f829 | 2008-02-09 04:11:14 +0800 | [diff] [blame] | 1009 | #elif defined(CONFIG_BF561) |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1010 | case IRQ_PROG0_INTA: |
| 1011 | case IRQ_PROG1_INTA: |
| 1012 | case IRQ_PROG2_INTA: |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 1013 | #elif defined(BF538_FAMILY) |
Michael Hennerich | dc26aec | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1014 | case IRQ_PORTF_INTA: |
Michael Hennerich | 5900314 | 2007-10-21 16:54:27 +0800 | [diff] [blame] | 1015 | #endif |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1016 | irq_set_chained_handler(irq, bfin_demux_gpio_irq); |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1017 | break; |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 1018 | #endif |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 1019 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 1020 | case IRQ_MAC_ERROR: |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1021 | irq_set_chained_handler(irq, |
| 1022 | bfin_demux_mac_status_irq); |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 1023 | break; |
| 1024 | #endif |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 1025 | #if defined(CONFIG_SMP) || defined(CONFIG_ICC) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1026 | case IRQ_SUPPLE_0: |
| 1027 | case IRQ_SUPPLE_1: |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1028 | irq_set_handler(irq, handle_percpu_irq); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1029 | break; |
| 1030 | #endif |
Graf Yang | 17941314 | 2009-08-18 04:29:33 +0000 | [diff] [blame] | 1031 | |
Yi Li | cb19171 | 2009-12-30 07:12:50 +0000 | [diff] [blame] | 1032 | #ifdef CONFIG_TICKSOURCE_CORETMR |
| 1033 | case IRQ_CORETMR: |
| 1034 | # ifdef CONFIG_SMP |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1035 | irq_set_handler(irq, handle_percpu_irq); |
Yi Li | cb19171 | 2009-12-30 07:12:50 +0000 | [diff] [blame] | 1036 | # else |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1037 | irq_set_handler(irq, handle_simple_irq); |
Yi Li | cb19171 | 2009-12-30 07:12:50 +0000 | [diff] [blame] | 1038 | # endif |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 1039 | break; |
Yi Li | cb19171 | 2009-12-30 07:12:50 +0000 | [diff] [blame] | 1040 | #endif |
| 1041 | |
| 1042 | #ifdef CONFIG_TICKSOURCE_GPTMR0 |
Philippe Gerum | a40494a | 2009-06-16 05:25:42 +0200 | [diff] [blame] | 1043 | case IRQ_TIMER0: |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1044 | irq_set_handler(irq, handle_simple_irq); |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1045 | break; |
Graf Yang | 17941314 | 2009-08-18 04:29:33 +0000 | [diff] [blame] | 1046 | #endif |
Yi Li | cb19171 | 2009-12-30 07:12:50 +0000 | [diff] [blame] | 1047 | |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 1048 | default: |
Yi Li | cb19171 | 2009-12-30 07:12:50 +0000 | [diff] [blame] | 1049 | #ifdef CONFIG_IPIPE |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1050 | irq_set_handler(irq, handle_level_irq); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 1051 | #else |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1052 | irq_set_handler(irq, handle_simple_irq); |
Mike Frysinger | fc6bd7b | 2011-04-15 01:35:53 -0400 | [diff] [blame] | 1053 | #endif |
Philippe Gerum | a40494a | 2009-06-16 05:25:42 +0200 | [diff] [blame] | 1054 | break; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1055 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1056 | } |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1057 | |
Mike Frysinger | f58c327 | 2011-04-15 03:08:20 -0400 | [diff] [blame] | 1058 | init_mach_irq(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1059 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1060 | #if (defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)) |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 1061 | for (irq = IRQ_MAC_PHYINT; irq <= IRQ_MAC_STMDONE; irq++) |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1062 | irq_set_chip_and_handler(irq, &bfin_mac_status_irqchip, |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 1063 | handle_level_irq); |
| 1064 | #endif |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1065 | /* if configured as edge, then will be changed to do_edge_IRQ */ |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 1066 | #ifdef CONFIG_GPIO_ADI |
Michael Hennerich | aec59c9 | 2010-02-19 15:09:10 +0000 | [diff] [blame] | 1067 | for (irq = GPIO_IRQ_BASE; |
| 1068 | irq < (GPIO_IRQ_BASE + MAX_BLACKFIN_GPIOS); irq++) |
Thomas Gleixner | 43f2f11 | 2011-03-24 17:22:30 +0100 | [diff] [blame] | 1069 | irq_set_chip_and_handler(irq, &bfin_gpio_irqchip, |
Michael Hennerich | 464abc5 | 2008-02-25 13:50:20 +0800 | [diff] [blame] | 1070 | handle_level_irq); |
Sonic Zhang | 54e4ff4 | 2013-05-30 18:37:28 +0800 | [diff] [blame] | 1071 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1072 | bfin_write_IMASK(0); |
| 1073 | CSYNC(); |
| 1074 | ilat = bfin_read_ILAT(); |
| 1075 | CSYNC(); |
| 1076 | bfin_write_ILAT(ilat); |
| 1077 | CSYNC(); |
| 1078 | |
Michael Hennerich | 34e0fc8 | 2007-07-12 16:17:18 +0800 | [diff] [blame] | 1079 | printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n"); |
Mike Frysinger | 4005978 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1080 | /* IMASK=xxx is equivalent to STI xx or bfin_irq_flags=xx, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1081 | * local_irq_enable() |
| 1082 | */ |
| 1083 | program_IAR(); |
| 1084 | /* Therefore it's better to setup IARs before interrupts enabled */ |
| 1085 | search_IAR(); |
| 1086 | |
| 1087 | /* Enable interrupts IVG7-15 */ |
Mike Frysinger | 4005978 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1088 | bfin_irq_flags |= IMASK_IVG15 | |
Steven Miao | 4f6b600 | 2012-05-16 17:56:51 +0800 | [diff] [blame] | 1089 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | |
| 1090 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; |
| 1091 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1092 | |
Michael Hennerich | 349ebbc | 2009-04-15 08:48:08 +0000 | [diff] [blame] | 1093 | /* This implicitly covers ANOMALY_05000171 |
| 1094 | * Boot-ROM code modifies SICA_IWRx wakeup registers |
| 1095 | */ |
Mike Frysinger | be1d854 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1096 | #ifdef SIC_IWR0 |
Michael Hennerich | 56f5f59 | 2008-08-06 17:55:32 +0800 | [diff] [blame] | 1097 | bfin_write_SIC_IWR0(IWR_DISABLE_ALL); |
Mike Frysinger | be1d854 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1098 | # ifdef SIC_IWR1 |
Bryan Wu | 2f6f4bc | 2008-11-18 17:48:21 +0800 | [diff] [blame] | 1099 | /* BF52x/BF51x system reset does not properly reset SIC_IWR1 which |
Michael Hennerich | 55546ac | 2008-08-13 17:41:13 +0800 | [diff] [blame] | 1100 | * will screw up the bootrom as it relies on MDMA0/1 waking it |
| 1101 | * up from IDLE instructions. See this report for more info: |
| 1102 | * http://blackfin.uclinux.org/gf/tracker/4323 |
| 1103 | */ |
Mike Frysinger | b7e1129 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1104 | if (ANOMALY_05000435) |
| 1105 | bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11)); |
| 1106 | else |
| 1107 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); |
Mike Frysinger | be1d854 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1108 | # endif |
| 1109 | # ifdef SIC_IWR2 |
Michael Hennerich | 56f5f59 | 2008-08-06 17:55:32 +0800 | [diff] [blame] | 1110 | bfin_write_SIC_IWR2(IWR_DISABLE_ALL); |
Michael Hennerich | fe9ec9b | 2008-02-25 12:04:57 +0800 | [diff] [blame] | 1111 | # endif |
| 1112 | #else |
Michael Hennerich | 56f5f59 | 2008-08-06 17:55:32 +0800 | [diff] [blame] | 1113 | bfin_write_SIC_IWR(IWR_DISABLE_ALL); |
Michael Hennerich | fe9ec9b | 2008-02-25 12:04:57 +0800 | [diff] [blame] | 1114 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1115 | return 0; |
| 1116 | } |
| 1117 | |
| 1118 | #ifdef CONFIG_DO_IRQ_L1 |
Mike Frysinger | a055b2b | 2007-11-15 21:12:32 +0800 | [diff] [blame] | 1119 | __attribute__((l1_text)) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1120 | #endif |
Mike Frysinger | 6b10804 | 2011-03-30 01:35:41 -0400 | [diff] [blame] | 1121 | static int vec_to_irq(int vec) |
| 1122 | { |
| 1123 | struct ivgx *ivg = ivg7_13[vec - IVG7].ifirst; |
| 1124 | struct ivgx *ivg_stop = ivg7_13[vec - IVG7].istop; |
| 1125 | unsigned long sic_status[3]; |
Mike Frysinger | 6b10804 | 2011-03-30 01:35:41 -0400 | [diff] [blame] | 1126 | if (likely(vec == EVT_IVTMR_P)) |
| 1127 | return IRQ_CORETMR; |
Mike Frysinger | 6b10804 | 2011-03-30 01:35:41 -0400 | [diff] [blame] | 1128 | #ifdef SIC_ISR |
| 1129 | sic_status[0] = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR(); |
| 1130 | #else |
| 1131 | if (smp_processor_id()) { |
| 1132 | # ifdef SICB_ISR0 |
| 1133 | /* This will be optimized out in UP mode. */ |
| 1134 | sic_status[0] = bfin_read_SICB_ISR0() & bfin_read_SICB_IMASK0(); |
| 1135 | sic_status[1] = bfin_read_SICB_ISR1() & bfin_read_SICB_IMASK1(); |
| 1136 | # endif |
| 1137 | } else { |
| 1138 | sic_status[0] = bfin_read_SIC_ISR0() & bfin_read_SIC_IMASK0(); |
| 1139 | sic_status[1] = bfin_read_SIC_ISR1() & bfin_read_SIC_IMASK1(); |
| 1140 | } |
| 1141 | #endif |
| 1142 | #ifdef SIC_ISR2 |
| 1143 | sic_status[2] = bfin_read_SIC_ISR2() & bfin_read_SIC_IMASK2(); |
| 1144 | #endif |
| 1145 | |
| 1146 | for (;; ivg++) { |
| 1147 | if (ivg >= ivg_stop) |
| 1148 | return -1; |
| 1149 | #ifdef SIC_ISR |
| 1150 | if (sic_status[0] & ivg->isrflag) |
| 1151 | #else |
| 1152 | if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag) |
| 1153 | #endif |
| 1154 | return ivg->irqno; |
| 1155 | } |
| 1156 | } |
| 1157 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1158 | #else /* SEC_GCTL */ |
| 1159 | |
| 1160 | /* |
| 1161 | * This function should be called during kernel startup to initialize |
| 1162 | * the BFin IRQ handling routines. |
| 1163 | */ |
| 1164 | |
| 1165 | int __init init_arch_irq(void) |
| 1166 | { |
| 1167 | int irq; |
| 1168 | unsigned long ilat = 0; |
| 1169 | |
| 1170 | bfin_write_SEC_GCTL(SEC_GCTL_RESET); |
| 1171 | |
| 1172 | local_irq_disable(); |
| 1173 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1174 | for (irq = 0; irq <= SYS_IRQS; irq++) { |
| 1175 | if (irq <= IRQ_CORETMR) { |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 1176 | irq_set_chip_and_handler(irq, &bfin_core_irqchip, |
| 1177 | handle_simple_irq); |
| 1178 | #if defined(CONFIG_TICKSOURCE_CORETMR) && defined(CONFIG_SMP) |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1179 | if (irq == IRQ_CORETMR) |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1180 | irq_set_handler(irq, handle_percpu_irq); |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1181 | #endif |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1182 | } else if (irq >= BFIN_IRQ(34) && irq <= BFIN_IRQ(37)) { |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1183 | irq_set_chip_and_handler(irq, &bfin_sec_irqchip, |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 1184 | handle_percpu_irq); |
| 1185 | } else { |
| 1186 | irq_set_chip(irq, &bfin_sec_irqchip); |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 1187 | irq_set_handler(irq, handle_fasteoi_irq); |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1188 | __irq_set_preflow_handler(irq, bfin_sec_preflow_handler); |
| 1189 | } |
| 1190 | } |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1191 | |
| 1192 | bfin_write_IMASK(0); |
| 1193 | CSYNC(); |
| 1194 | ilat = bfin_read_ILAT(); |
| 1195 | CSYNC(); |
| 1196 | bfin_write_ILAT(ilat); |
| 1197 | CSYNC(); |
| 1198 | |
| 1199 | printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n"); |
| 1200 | |
Sonic Zhang | e0a5931 | 2012-06-29 18:19:29 +0800 | [diff] [blame] | 1201 | bfin_sec_set_priority(CONFIG_SEC_IRQ_PRIORITY_LEVELS, sec_int_priority); |
| 1202 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1203 | /* Enable interrupts IVG7-15 */ |
| 1204 | bfin_irq_flags |= IMASK_IVG15 | |
| 1205 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | |
| 1206 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; |
| 1207 | |
| 1208 | |
| 1209 | bfin_write_SEC_FCTL(SEC_FCTL_EN | SEC_FCTL_SYSRST_EN | SEC_FCTL_FLTIN_EN); |
Sonic Zhang | 86794b4 | 2012-12-14 11:19:24 +0800 | [diff] [blame] | 1210 | bfin_sec_enable_sci(BFIN_SYSIRQ(IRQ_WATCH0)); |
| 1211 | bfin_sec_enable_ssi(BFIN_SYSIRQ(IRQ_WATCH0)); |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1212 | bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_RESET); |
| 1213 | udelay(100); |
| 1214 | bfin_write_SEC_GCTL(SEC_GCTL_EN); |
| 1215 | bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN); |
| 1216 | bfin_write_SEC_SCI(1, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN); |
| 1217 | |
| 1218 | init_software_driven_irq(); |
Steven Miao | 36c4723 | 2012-12-21 14:34:16 +0800 | [diff] [blame] | 1219 | |
| 1220 | #ifdef CONFIG_PM |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1221 | register_syscore_ops(&sec_pm_syscore_ops); |
Steven Miao | 36c4723 | 2012-12-21 14:34:16 +0800 | [diff] [blame] | 1222 | #endif |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1223 | |
Sonic Zhang | 1b60123 | 2013-12-04 15:27:47 +0800 | [diff] [blame] | 1224 | bfin_fault_irq.handler = bfin_fault_routine; |
| 1225 | #ifdef CONFIG_L1_PARITY_CHECK |
| 1226 | setup_irq(IRQ_C0_NMI_L1_PARITY_ERR, &bfin_fault_irq); |
| 1227 | #endif |
| 1228 | setup_irq(IRQ_C0_DBL_FAULT, &bfin_fault_irq); |
| 1229 | setup_irq(IRQ_SEC_ERR, &bfin_fault_irq); |
| 1230 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1231 | return 0; |
| 1232 | } |
| 1233 | |
| 1234 | #ifdef CONFIG_DO_IRQ_L1 |
| 1235 | __attribute__((l1_text)) |
| 1236 | #endif |
| 1237 | static int vec_to_irq(int vec) |
| 1238 | { |
| 1239 | if (likely(vec == EVT_IVTMR_P)) |
| 1240 | return IRQ_CORETMR; |
| 1241 | |
| 1242 | return BFIN_IRQ(bfin_read_SEC_SCI(0, SEC_CSID)); |
| 1243 | } |
| 1244 | #endif /* SEC_GCTL */ |
| 1245 | |
Mike Frysinger | 6b10804 | 2011-03-30 01:35:41 -0400 | [diff] [blame] | 1246 | #ifdef CONFIG_DO_IRQ_L1 |
| 1247 | __attribute__((l1_text)) |
| 1248 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1249 | void do_irq(int vec, struct pt_regs *fp) |
| 1250 | { |
Mike Frysinger | 6b10804 | 2011-03-30 01:35:41 -0400 | [diff] [blame] | 1251 | int irq = vec_to_irq(vec); |
| 1252 | if (irq == -1) |
| 1253 | return; |
| 1254 | asm_do_IRQ(irq, fp); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1255 | } |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1256 | |
| 1257 | #ifdef CONFIG_IPIPE |
| 1258 | |
| 1259 | int __ipipe_get_irq_priority(unsigned irq) |
| 1260 | { |
| 1261 | int ient, prio; |
| 1262 | |
| 1263 | if (irq <= IRQ_CORETMR) |
| 1264 | return irq; |
| 1265 | |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1266 | #ifdef SEC_GCTL |
| 1267 | if (irq >= BFIN_IRQ(0)) |
| 1268 | return IVG11; |
| 1269 | #else |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1270 | for (ient = 0; ient < NR_PERI_INTS; ient++) { |
| 1271 | struct ivgx *ivg = ivg_table + ient; |
| 1272 | if (ivg->irqno == irq) { |
| 1273 | for (prio = 0; prio <= IVG13-IVG7; prio++) { |
| 1274 | if (ivg7_13[prio].ifirst <= ivg && |
| 1275 | ivg7_13[prio].istop > ivg) |
| 1276 | return IVG7 + prio; |
| 1277 | } |
| 1278 | } |
| 1279 | } |
Sonic Zhang | 11b27cb | 2012-06-28 19:16:48 +0800 | [diff] [blame] | 1280 | #endif |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1281 | |
| 1282 | return IVG15; |
| 1283 | } |
| 1284 | |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1285 | /* Hw interrupts are disabled on entry (check SAVE_CONTEXT). */ |
| 1286 | #ifdef CONFIG_DO_IRQ_L1 |
| 1287 | __attribute__((l1_text)) |
| 1288 | #endif |
| 1289 | asmlinkage int __ipipe_grab_irq(int vec, struct pt_regs *regs) |
| 1290 | { |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1291 | struct ipipe_percpu_domain_data *p = ipipe_root_cpudom_ptr(); |
Philippe Gerum | a40494a | 2009-06-16 05:25:42 +0200 | [diff] [blame] | 1292 | struct ipipe_domain *this_domain = __ipipe_current_domain; |
Philippe Gerum | 5b5da4c | 2011-03-17 02:12:48 -0400 | [diff] [blame] | 1293 | int irq, s = 0; |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1294 | |
Mike Frysinger | 6b10804 | 2011-03-30 01:35:41 -0400 | [diff] [blame] | 1295 | irq = vec_to_irq(vec); |
| 1296 | if (irq == -1) |
| 1297 | return 0; |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1298 | |
| 1299 | if (irq == IRQ_SYSTMR) { |
Philippe Gerum | a40494a | 2009-06-16 05:25:42 +0200 | [diff] [blame] | 1300 | #if !defined(CONFIG_GENERIC_CLOCKEVENTS) || defined(CONFIG_TICKSOURCE_GPTMR0) |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1301 | bfin_write_TIMER_STATUS(1); /* Latch TIMIL0 */ |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1302 | #endif |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1303 | /* This is basically what we need from the register frame. */ |
Christoph Lameter | 7e788ab | 2014-08-17 12:30:52 -0500 | [diff] [blame] | 1304 | __this_cpu_write(__ipipe_tick_regs.ipend, regs->ipend); |
| 1305 | __this_cpu_write(__ipipe_tick_regs.pc, regs->pc); |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1306 | if (this_domain != ipipe_root_domain) |
Christoph Lameter | 7e788ab | 2014-08-17 12:30:52 -0500 | [diff] [blame] | 1307 | __this_cpu_and(__ipipe_tick_regs.ipend, ~0x10); |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1308 | else |
Christoph Lameter | 7e788ab | 2014-08-17 12:30:52 -0500 | [diff] [blame] | 1309 | __this_cpu_or(__ipipe_tick_regs.ipend, 0x10); |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1310 | } |
| 1311 | |
Philippe Gerum | 5b5da4c | 2011-03-17 02:12:48 -0400 | [diff] [blame] | 1312 | /* |
| 1313 | * We don't want Linux interrupt handlers to run at the |
| 1314 | * current core priority level (i.e. < EVT15), since this |
| 1315 | * might delay other interrupts handled by a high priority |
| 1316 | * domain. Here is what we do instead: |
| 1317 | * |
| 1318 | * - we raise the SYNCDEFER bit to prevent |
| 1319 | * __ipipe_handle_irq() to sync the pipeline for the root |
| 1320 | * stage for the incoming interrupt. Upon return, that IRQ is |
| 1321 | * pending in the interrupt log. |
| 1322 | * |
| 1323 | * - we raise the TIF_IRQ_SYNC bit for the current thread, so |
| 1324 | * that _schedule_and_signal_from_int will eventually sync the |
| 1325 | * pipeline from EVT15. |
| 1326 | */ |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1327 | if (this_domain == ipipe_root_domain) { |
| 1328 | s = __test_and_set_bit(IPIPE_SYNCDEFER_FLAG, &p->status); |
| 1329 | barrier(); |
| 1330 | } |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1331 | |
| 1332 | ipipe_trace_irq_entry(irq); |
| 1333 | __ipipe_handle_irq(irq, regs); |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1334 | ipipe_trace_irq_exit(irq); |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1335 | |
Philippe Gerum | 5b5da4c | 2011-03-17 02:12:48 -0400 | [diff] [blame] | 1336 | if (user_mode(regs) && |
| 1337 | !ipipe_test_foreign_stack() && |
| 1338 | (current->ipipe_flags & PF_EVTRET) != 0) { |
| 1339 | /* |
| 1340 | * Testing for user_regs() does NOT fully eliminate |
| 1341 | * foreign stack contexts, because of the forged |
| 1342 | * interrupt returns we do through |
| 1343 | * __ipipe_call_irqtail. In that case, we might have |
| 1344 | * preempted a foreign stack context in a high |
| 1345 | * priority domain, with a single interrupt level now |
| 1346 | * pending after the irqtail unwinding is done. In |
| 1347 | * which case user_mode() is now true, and the event |
| 1348 | * gets dispatched spuriously. |
| 1349 | */ |
| 1350 | current->ipipe_flags &= ~PF_EVTRET; |
| 1351 | __ipipe_dispatch_event(IPIPE_EVENT_RETURN, regs); |
| 1352 | } |
| 1353 | |
Philippe Gerum | 9bd50df | 2009-03-04 16:52:38 +0800 | [diff] [blame] | 1354 | if (this_domain == ipipe_root_domain) { |
| 1355 | set_thread_flag(TIF_IRQ_SYNC); |
| 1356 | if (!s) { |
| 1357 | __clear_bit(IPIPE_SYNCDEFER_FLAG, &p->status); |
| 1358 | return !test_bit(IPIPE_STALL_FLAG, &p->status); |
| 1359 | } |
| 1360 | } |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1361 | |
Graf Yang | 1fa9be7 | 2009-05-15 11:01:59 +0000 | [diff] [blame] | 1362 | return 0; |
Yi Li | 6a01f23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | #endif /* CONFIG_IPIPE */ |