Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Carsten Langgaard, carstenl@mips.com |
| 3 | * Copyright (C) 2000, 2001, 2004 MIPS Technologies, Inc. |
| 4 | * Copyright (C) 2001 Ralf Baechle |
| 5 | * |
| 6 | * This program is free software; you can distribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License (Version 2) as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 13 | * for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License along |
| 16 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 17 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. |
| 18 | * |
| 19 | * Routines for generic manipulation of the interrupts found on the MIPS |
| 20 | * Malta board. |
| 21 | * The interrupt controller is located in the South Bridge a PIIX4 device |
| 22 | * with two internal 82C95 interrupt controllers. |
| 23 | */ |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/irq.h> |
| 26 | #include <linux/sched.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 27 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/interrupt.h> |
Dmitri Vorobiev | 54bf038 | 2008-01-24 19:52:49 +0300 | [diff] [blame] | 29 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/kernel_stat.h> |
Ahmed S. Darwish | 25b8ac3 | 2007-02-05 04:42:11 +0200 | [diff] [blame] | 31 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/random.h> |
| 33 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 34 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/i8259.h> |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 36 | #include <asm/irq_cpu.h> |
Ralf Baechle | ba38cdf | 2006-10-15 09:17:43 +0100 | [diff] [blame] | 37 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/mips-boards/malta.h> |
| 39 | #include <asm/mips-boards/maltaint.h> |
| 40 | #include <asm/mips-boards/piix4.h> |
| 41 | #include <asm/gt64120.h> |
| 42 | #include <asm/mips-boards/generic.h> |
| 43 | #include <asm/mips-boards/msc01_pci.h> |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 44 | #include <asm/msc01_ic.h> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 45 | #include <asm/gic.h> |
| 46 | #include <asm/gcmpregs.h> |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame^] | 47 | #include <asm/setup.h> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 48 | |
| 49 | int gcmp_present = -1; |
| 50 | int gic_present; |
| 51 | static unsigned long _msc01_biu_base; |
| 52 | static unsigned long _gcmp_base; |
| 53 | static unsigned int ipi_map[NR_CPUS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Ralf Baechle | a963dc7 | 2010-02-27 12:53:32 +0100 | [diff] [blame] | 55 | static DEFINE_RAW_SPINLOCK(mips_irq_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | static inline int mips_pcibios_iack(void) |
| 58 | { |
| 59 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | /* |
| 62 | * Determine highest priority pending interrupt by performing |
| 63 | * a PCI Interrupt Acknowledge cycle. |
| 64 | */ |
Chris Dearman | b72c052 | 2007-04-27 15:58:41 +0100 | [diff] [blame] | 65 | switch (mips_revision_sconid) { |
| 66 | case MIPS_REVISION_SCON_SOCIT: |
| 67 | case MIPS_REVISION_SCON_ROCIT: |
| 68 | case MIPS_REVISION_SCON_SOCITSC: |
| 69 | case MIPS_REVISION_SCON_SOCITSCP: |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 70 | MSC_READ(MSC01_PCI_IACK, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | irq &= 0xff; |
| 72 | break; |
Chris Dearman | b72c052 | 2007-04-27 15:58:41 +0100 | [diff] [blame] | 73 | case MIPS_REVISION_SCON_GT64120: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | irq = GT_READ(GT_PCI0_IACK_OFS); |
| 75 | irq &= 0xff; |
| 76 | break; |
Chris Dearman | b72c052 | 2007-04-27 15:58:41 +0100 | [diff] [blame] | 77 | case MIPS_REVISION_SCON_BONITO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | /* The following will generate a PCI IACK cycle on the |
| 79 | * Bonito controller. It's a little bit kludgy, but it |
| 80 | * was the easiest way to implement it in hardware at |
| 81 | * the given time. |
| 82 | */ |
| 83 | BONITO_PCIMAP_CFG = 0x20000; |
| 84 | |
| 85 | /* Flush Bonito register block */ |
Ralf Baechle | 6be63bb | 2011-03-29 11:48:22 +0200 | [diff] [blame] | 86 | (void) BONITO_PCIMAP_CFG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | iob(); /* sync */ |
| 88 | |
Chris Dearman | accfd35 | 2009-07-10 01:53:54 -0700 | [diff] [blame] | 89 | irq = __raw_readl((u32 *)_pcictrl_bonito_pcicfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | iob(); /* sync */ |
| 91 | irq &= 0xff; |
| 92 | BONITO_PCIMAP_CFG = 0; |
| 93 | break; |
| 94 | default: |
Dmitri Vorobiev | 8216d34 | 2008-01-24 19:52:42 +0300 | [diff] [blame] | 95 | printk(KERN_WARNING "Unknown system controller.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | return -1; |
| 97 | } |
| 98 | return irq; |
| 99 | } |
| 100 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 101 | static inline int get_int(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
| 103 | unsigned long flags; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 104 | int irq; |
Ralf Baechle | a963dc7 | 2010-02-27 12:53:32 +0100 | [diff] [blame] | 105 | raw_spin_lock_irqsave(&mips_irq_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 107 | irq = mips_pcibios_iack(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | /* |
Ralf Baechle | 479a0e3 | 2005-08-16 15:44:06 +0000 | [diff] [blame] | 110 | * The only way we can decide if an interrupt is spurious |
| 111 | * is by checking the 8259 registers. This needs a spinlock |
| 112 | * on an SMP system, so leave it up to the generic code... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Ralf Baechle | a963dc7 | 2010-02-27 12:53:32 +0100 | [diff] [blame] | 115 | raw_spin_unlock_irqrestore(&mips_irq_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 117 | return irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 120 | static void malta_hw0_irqdispatch(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
| 122 | int irq; |
| 123 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 124 | irq = get_int(); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 125 | if (irq < 0) { |
Dmitri Vorobiev | cd80d54 | 2008-01-24 19:52:54 +0300 | [diff] [blame] | 126 | /* interrupt has already been cleared */ |
| 127 | return; |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 128 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 130 | do_IRQ(MALTA_INT_BASE + irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 133 | static void malta_ipi_irqdispatch(void) |
| 134 | { |
| 135 | int irq; |
| 136 | |
| 137 | irq = gic_get_int(); |
| 138 | if (irq < 0) |
| 139 | return; /* interrupt has already been cleared */ |
| 140 | |
| 141 | do_IRQ(MIPS_GIC_IRQ_BASE + irq); |
| 142 | } |
| 143 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 144 | static void corehi_irqdispatch(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 146 | unsigned int intedge, intsteer, pcicmd, pcibadaddr; |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 147 | unsigned int pcimstat, intisr, inten, intpol; |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 148 | unsigned int intrcause, datalo, datahi; |
Ralf Baechle | ba38cdf | 2006-10-15 09:17:43 +0100 | [diff] [blame] | 149 | struct pt_regs *regs = get_irq_regs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Dmitri Vorobiev | 8216d34 | 2008-01-24 19:52:42 +0300 | [diff] [blame] | 151 | printk(KERN_EMERG "CoreHI interrupt, shouldn't happen, we die here!\n"); |
| 152 | printk(KERN_EMERG "epc : %08lx\nStatus: %08lx\n" |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 153 | "Cause : %08lx\nbadVaddr : %08lx\n", |
| 154 | regs->cp0_epc, regs->cp0_status, |
| 155 | regs->cp0_cause, regs->cp0_badvaddr); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 156 | |
| 157 | /* Read all the registers and then print them as there is a |
| 158 | problem with interspersed printk's upsetting the Bonito controller. |
| 159 | Do it for the others too. |
| 160 | */ |
| 161 | |
Chris Dearman | b72c052 | 2007-04-27 15:58:41 +0100 | [diff] [blame] | 162 | switch (mips_revision_sconid) { |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 163 | case MIPS_REVISION_SCON_SOCIT: |
Chris Dearman | b72c052 | 2007-04-27 15:58:41 +0100 | [diff] [blame] | 164 | case MIPS_REVISION_SCON_ROCIT: |
| 165 | case MIPS_REVISION_SCON_SOCITSC: |
| 166 | case MIPS_REVISION_SCON_SOCITSCP: |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 167 | ll_msc_irq(); |
| 168 | break; |
| 169 | case MIPS_REVISION_SCON_GT64120: |
| 170 | intrcause = GT_READ(GT_INTRCAUSE_OFS); |
| 171 | datalo = GT_READ(GT_CPUERR_ADDRLO_OFS); |
| 172 | datahi = GT_READ(GT_CPUERR_ADDRHI_OFS); |
Dmitri Vorobiev | 8216d34 | 2008-01-24 19:52:42 +0300 | [diff] [blame] | 173 | printk(KERN_EMERG "GT_INTRCAUSE = %08x\n", intrcause); |
| 174 | printk(KERN_EMERG "GT_CPUERR_ADDR = %02x%08x\n", |
| 175 | datahi, datalo); |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 176 | break; |
| 177 | case MIPS_REVISION_SCON_BONITO: |
| 178 | pcibadaddr = BONITO_PCIBADADDR; |
| 179 | pcimstat = BONITO_PCIMSTAT; |
| 180 | intisr = BONITO_INTISR; |
| 181 | inten = BONITO_INTEN; |
| 182 | intpol = BONITO_INTPOL; |
| 183 | intedge = BONITO_INTEDGE; |
| 184 | intsteer = BONITO_INTSTEER; |
| 185 | pcicmd = BONITO_PCICMD; |
Dmitri Vorobiev | 8216d34 | 2008-01-24 19:52:42 +0300 | [diff] [blame] | 186 | printk(KERN_EMERG "BONITO_INTISR = %08x\n", intisr); |
| 187 | printk(KERN_EMERG "BONITO_INTEN = %08x\n", inten); |
| 188 | printk(KERN_EMERG "BONITO_INTPOL = %08x\n", intpol); |
| 189 | printk(KERN_EMERG "BONITO_INTEDGE = %08x\n", intedge); |
| 190 | printk(KERN_EMERG "BONITO_INTSTEER = %08x\n", intsteer); |
| 191 | printk(KERN_EMERG "BONITO_PCICMD = %08x\n", pcicmd); |
| 192 | printk(KERN_EMERG "BONITO_PCIBADADDR = %08x\n", pcibadaddr); |
| 193 | printk(KERN_EMERG "BONITO_PCIMSTAT = %08x\n", pcimstat); |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 194 | break; |
| 195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 197 | die("CoreHi interrupt", regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 200 | static inline int clz(unsigned long x) |
| 201 | { |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 202 | __asm__( |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 203 | " .set push \n" |
| 204 | " .set mips32 \n" |
| 205 | " clz %0, %1 \n" |
| 206 | " .set pop \n" |
| 207 | : "=r" (x) |
| 208 | : "r" (x)); |
| 209 | |
| 210 | return x; |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Version of ffs that only looks at bits 12..15. |
| 215 | */ |
| 216 | static inline unsigned int irq_ffs(unsigned int pending) |
| 217 | { |
| 218 | #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) |
| 219 | return -clz(pending) + 31 - CAUSEB_IP; |
| 220 | #else |
| 221 | unsigned int a0 = 7; |
| 222 | unsigned int t0; |
| 223 | |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 224 | t0 = pending & 0xf000; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 225 | t0 = t0 < 1; |
| 226 | t0 = t0 << 2; |
| 227 | a0 = a0 - t0; |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 228 | pending = pending << t0; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 229 | |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 230 | t0 = pending & 0xc000; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 231 | t0 = t0 < 1; |
| 232 | t0 = t0 << 1; |
| 233 | a0 = a0 - t0; |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 234 | pending = pending << t0; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 235 | |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 236 | t0 = pending & 0x8000; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 237 | t0 = t0 < 1; |
Dmitri Vorobiev | ae9cef0 | 2008-01-24 19:52:52 +0300 | [diff] [blame] | 238 | /* t0 = t0 << 2; */ |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 239 | a0 = a0 - t0; |
Dmitri Vorobiev | ae9cef0 | 2008-01-24 19:52:52 +0300 | [diff] [blame] | 240 | /* pending = pending << t0; */ |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 241 | |
| 242 | return a0; |
| 243 | #endif |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * IRQs on the Malta board look basically (barring software IRQs which we |
| 248 | * don't use at all and all external interrupt sources are combined together |
| 249 | * on hardware interrupt 0 (MIPS IRQ 2)) like: |
| 250 | * |
| 251 | * MIPS IRQ Source |
| 252 | * -------- ------ |
| 253 | * 0 Software (ignored) |
| 254 | * 1 Software (ignored) |
| 255 | * 2 Combined hardware interrupt (hw0) |
| 256 | * 3 Hardware (ignored) |
| 257 | * 4 Hardware (ignored) |
| 258 | * 5 Hardware (ignored) |
| 259 | * 6 Hardware (ignored) |
| 260 | * 7 R4k timer (what we use) |
| 261 | * |
| 262 | * We handle the IRQ according to _our_ priority which is: |
| 263 | * |
| 264 | * Highest ---- R4k Timer |
| 265 | * Lowest ---- Combined hardware interrupt |
| 266 | * |
| 267 | * then we just return, if multiple IRQs are pending then we will just take |
| 268 | * another exception, big deal. |
| 269 | */ |
| 270 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 271 | asmlinkage void plat_irq_dispatch(void) |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 272 | { |
| 273 | unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM; |
| 274 | int irq; |
| 275 | |
| 276 | irq = irq_ffs(pending); |
| 277 | |
| 278 | if (irq == MIPSCPU_INT_I8259A) |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 279 | malta_hw0_irqdispatch(); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 280 | else if (gic_present && ((1 << irq) & ipi_map[smp_processor_id()])) |
| 281 | malta_ipi_irqdispatch(); |
Ralf Baechle | 48d480b | 2007-09-13 17:36:22 +0100 | [diff] [blame] | 282 | else if (irq >= 0) |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 283 | do_IRQ(MIPS_CPU_IRQ_BASE + irq); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 284 | else |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 285 | spurious_interrupt(); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 286 | } |
| 287 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 288 | #ifdef CONFIG_MIPS_MT_SMP |
| 289 | |
| 290 | |
| 291 | #define GIC_MIPS_CPU_IPI_RESCHED_IRQ 3 |
| 292 | #define GIC_MIPS_CPU_IPI_CALL_IRQ 4 |
| 293 | |
| 294 | #define MIPS_CPU_IPI_RESCHED_IRQ 0 /* SW int 0 for resched */ |
| 295 | #define C_RESCHED C_SW0 |
| 296 | #define MIPS_CPU_IPI_CALL_IRQ 1 /* SW int 1 for resched */ |
| 297 | #define C_CALL C_SW1 |
| 298 | static int cpu_ipi_resched_irq, cpu_ipi_call_irq; |
| 299 | |
| 300 | static void ipi_resched_dispatch(void) |
| 301 | { |
| 302 | do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ); |
| 303 | } |
| 304 | |
| 305 | static void ipi_call_dispatch(void) |
| 306 | { |
| 307 | do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ); |
| 308 | } |
| 309 | |
| 310 | static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id) |
| 311 | { |
Peter Zijlstra | 184748c | 2011-04-05 17:23:39 +0200 | [diff] [blame] | 312 | scheduler_ipi(); |
| 313 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 314 | return IRQ_HANDLED; |
| 315 | } |
| 316 | |
| 317 | static irqreturn_t ipi_call_interrupt(int irq, void *dev_id) |
| 318 | { |
| 319 | smp_call_function_interrupt(); |
| 320 | |
| 321 | return IRQ_HANDLED; |
| 322 | } |
| 323 | |
| 324 | static struct irqaction irq_resched = { |
| 325 | .handler = ipi_resched_interrupt, |
Yong Zhang | 8b5690f | 2011-11-22 14:38:03 +0000 | [diff] [blame] | 326 | .flags = IRQF_PERCPU, |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 327 | .name = "IPI_resched" |
| 328 | }; |
| 329 | |
| 330 | static struct irqaction irq_call = { |
| 331 | .handler = ipi_call_interrupt, |
Yong Zhang | 8b5690f | 2011-11-22 14:38:03 +0000 | [diff] [blame] | 332 | .flags = IRQF_PERCPU, |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 333 | .name = "IPI_call" |
| 334 | }; |
Raghu Gandham | 008ee96 | 2009-07-08 17:00:44 -0700 | [diff] [blame] | 335 | #endif /* CONFIG_MIPS_MT_SMP */ |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 336 | |
| 337 | static int gic_resched_int_base; |
| 338 | static int gic_call_int_base; |
| 339 | #define GIC_RESCHED_INT(cpu) (gic_resched_int_base+(cpu)) |
| 340 | #define GIC_CALL_INT(cpu) (gic_call_int_base+(cpu)) |
Tim Anderson | 0365070 | 2009-06-17 16:22:53 -0700 | [diff] [blame] | 341 | |
| 342 | unsigned int plat_ipi_call_int_xlate(unsigned int cpu) |
| 343 | { |
| 344 | return GIC_CALL_INT(cpu); |
| 345 | } |
| 346 | |
| 347 | unsigned int plat_ipi_resched_int_xlate(unsigned int cpu) |
| 348 | { |
| 349 | return GIC_RESCHED_INT(cpu); |
| 350 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 351 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 352 | static struct irqaction i8259irq = { |
| 353 | .handler = no_action, |
Wu Zhangjin | 5a4a4ad | 2011-07-23 12:41:24 +0000 | [diff] [blame] | 354 | .name = "XT-PIC cascade", |
| 355 | .flags = IRQF_NO_THREAD, |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 356 | }; |
| 357 | |
| 358 | static struct irqaction corehi_irqaction = { |
| 359 | .handler = no_action, |
Wu Zhangjin | 5a4a4ad | 2011-07-23 12:41:24 +0000 | [diff] [blame] | 360 | .name = "CoreHi", |
| 361 | .flags = IRQF_NO_THREAD, |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 362 | }; |
| 363 | |
Dmitri Vorobiev | b57c191 | 2008-04-01 02:03:25 +0400 | [diff] [blame] | 364 | static msc_irqmap_t __initdata msc_irqmap[] = { |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 365 | {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, |
| 366 | {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, |
| 367 | }; |
Dmitri Vorobiev | b57c191 | 2008-04-01 02:03:25 +0400 | [diff] [blame] | 368 | static int __initdata msc_nr_irqs = ARRAY_SIZE(msc_irqmap); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 369 | |
Dmitri Vorobiev | b57c191 | 2008-04-01 02:03:25 +0400 | [diff] [blame] | 370 | static msc_irqmap_t __initdata msc_eicirqmap[] = { |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 371 | {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, |
| 372 | {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0}, |
| 373 | {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0}, |
| 374 | {MSC01E_INT_SMI, MSC01_IRQ_LEVEL, 0}, |
| 375 | {MSC01E_INT_COREHI, MSC01_IRQ_LEVEL, 0}, |
| 376 | {MSC01E_INT_CORELO, MSC01_IRQ_LEVEL, 0}, |
| 377 | {MSC01E_INT_TMR, MSC01_IRQ_EDGE, 0}, |
| 378 | {MSC01E_INT_PCI, MSC01_IRQ_LEVEL, 0}, |
| 379 | {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0}, |
| 380 | {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} |
| 381 | }; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 382 | |
Dmitri Vorobiev | b57c191 | 2008-04-01 02:03:25 +0400 | [diff] [blame] | 383 | static int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 384 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 385 | /* |
| 386 | * This GIC specific tabular array defines the association between External |
| 387 | * Interrupts and CPUs/Core Interrupts. The nature of the External |
| 388 | * Interrupts is also defined here - polarity/trigger. |
| 389 | */ |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 390 | |
| 391 | #define GIC_CPU_NMI GIC_MAP_TO_NMI_MSK |
Ralf Baechle | 863cb9b | 2010-09-17 17:07:48 +0100 | [diff] [blame] | 392 | #define X GIC_UNUSED |
| 393 | |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 394 | static struct gic_intr_map gic_intr_map[GIC_NUM_INTRS] = { |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 395 | { X, X, X, X, 0 }, |
| 396 | { X, X, X, X, 0 }, |
| 397 | { X, X, X, X, 0 }, |
| 398 | { 0, GIC_CPU_INT0, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 399 | { 0, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 400 | { 0, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 401 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 402 | { 0, GIC_CPU_INT4, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 403 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 404 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 405 | { X, X, X, X, 0 }, |
| 406 | { X, X, X, X, 0 }, |
| 407 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 408 | { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 409 | { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 410 | { X, X, X, X, 0 }, |
| 411 | /* The remainder of this table is initialised by fill_ipi_map */ |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 412 | }; |
Ralf Baechle | 863cb9b | 2010-09-17 17:07:48 +0100 | [diff] [blame] | 413 | #undef X |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 414 | |
| 415 | /* |
| 416 | * GCMP needs to be detected before any SMP initialisation |
| 417 | */ |
Tim Anderson | 47b178b | 2009-06-17 16:25:18 -0700 | [diff] [blame] | 418 | int __init gcmp_probe(unsigned long addr, unsigned long size) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 419 | { |
Jaidev Patwardhan | 05cf207 | 2009-07-10 01:54:25 -0700 | [diff] [blame] | 420 | if (mips_revision_sconid != MIPS_REVISION_SCON_ROCIT) { |
| 421 | gcmp_present = 0; |
| 422 | return gcmp_present; |
| 423 | } |
| 424 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 425 | if (gcmp_present >= 0) |
| 426 | return gcmp_present; |
| 427 | |
| 428 | _gcmp_base = (unsigned long) ioremap_nocache(GCMP_BASE_ADDR, GCMP_ADDRSPACE_SZ); |
| 429 | _msc01_biu_base = (unsigned long) ioremap_nocache(MSC01_BIU_REG_BASE, MSC01_BIU_ADDRSPACE_SZ); |
| 430 | gcmp_present = (GCMPGCB(GCMPB) & GCMP_GCB_GCMPB_GCMPBASE_MSK) == GCMP_BASE_ADDR; |
| 431 | |
| 432 | if (gcmp_present) |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 433 | pr_debug("GCMP present\n"); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 434 | return gcmp_present; |
| 435 | } |
| 436 | |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 437 | /* Return the number of IOCU's present */ |
| 438 | int __init gcmp_niocu(void) |
| 439 | { |
| 440 | return gcmp_present ? |
| 441 | (GCMPGCB(GC) & GCMP_GCB_GC_NUMIOCU_MSK) >> GCMP_GCB_GC_NUMIOCU_SHF : |
| 442 | 0; |
| 443 | } |
| 444 | |
| 445 | /* Set GCMP region attributes */ |
| 446 | void __init gcmp_setregion(int region, unsigned long base, |
| 447 | unsigned long mask, int type) |
| 448 | { |
| 449 | GCMPGCBn(CMxBASE, region) = base; |
| 450 | GCMPGCBn(CMxMASK, region) = mask | type; |
| 451 | } |
| 452 | |
Dmitri Vorobiev | 7afed6a | 2008-06-18 10:18:21 +0300 | [diff] [blame] | 453 | #if defined(CONFIG_MIPS_MT_SMP) |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 454 | static void __init fill_ipi_map1(int baseintr, int cpu, int cpupin) |
| 455 | { |
| 456 | int intr = baseintr + cpu; |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 457 | gic_intr_map[intr].cpunum = cpu; |
| 458 | gic_intr_map[intr].pin = cpupin; |
| 459 | gic_intr_map[intr].polarity = GIC_POL_POS; |
| 460 | gic_intr_map[intr].trigtype = GIC_TRIG_EDGE; |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 461 | gic_intr_map[intr].flags = GIC_FLAG_IPI; |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 462 | ipi_map[cpu] |= (1 << (cpupin + 2)); |
| 463 | } |
| 464 | |
Dmitri Vorobiev | 7afed6a | 2008-06-18 10:18:21 +0300 | [diff] [blame] | 465 | static void __init fill_ipi_map(void) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 466 | { |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 467 | int cpu; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 468 | |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 469 | for (cpu = 0; cpu < NR_CPUS; cpu++) { |
| 470 | fill_ipi_map1(gic_resched_int_base, cpu, GIC_CPU_INT1); |
| 471 | fill_ipi_map1(gic_call_int_base, cpu, GIC_CPU_INT2); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 472 | } |
| 473 | } |
Dmitri Vorobiev | 7afed6a | 2008-06-18 10:18:21 +0300 | [diff] [blame] | 474 | #endif |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 475 | |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 476 | void __init arch_init_ipiirq(int irq, struct irqaction *action) |
| 477 | { |
| 478 | setup_irq(irq, action); |
Thomas Gleixner | e4ec798 | 2011-03-27 15:19:28 +0200 | [diff] [blame] | 479 | irq_set_handler(irq, handle_percpu_irq); |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 480 | } |
| 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | void __init arch_init_irq(void) |
| 483 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | init_i8259_irqs(); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 485 | |
| 486 | if (!cpu_has_veic) |
Atsushi Nemoto | 97dcb82 | 2007-01-08 02:14:29 +0900 | [diff] [blame] | 487 | mips_cpu_irq_init(); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 488 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 489 | if (gcmp_present) { |
| 490 | GCMPGCB(GICBA) = GIC_BASE_ADDR | GCMP_GCB_GICBA_EN_MSK; |
| 491 | gic_present = 1; |
| 492 | } else { |
Jaidev Patwardhan | 05cf207 | 2009-07-10 01:54:25 -0700 | [diff] [blame] | 493 | if (mips_revision_sconid == MIPS_REVISION_SCON_ROCIT) { |
| 494 | _msc01_biu_base = (unsigned long) |
| 495 | ioremap_nocache(MSC01_BIU_REG_BASE, |
| 496 | MSC01_BIU_ADDRSPACE_SZ); |
| 497 | gic_present = (REG(_msc01_biu_base, MSC01_SC_CFG) & |
| 498 | MSC01_SC_CFG_GICPRES_MSK) >> |
| 499 | MSC01_SC_CFG_GICPRES_SHF; |
| 500 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 501 | } |
| 502 | if (gic_present) |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 503 | pr_debug("GIC present\n"); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 504 | |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 505 | switch (mips_revision_sconid) { |
| 506 | case MIPS_REVISION_SCON_SOCIT: |
| 507 | case MIPS_REVISION_SCON_ROCIT: |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 508 | if (cpu_has_veic) |
Dmitri Vorobiev | f807149 | 2008-01-24 19:52:47 +0300 | [diff] [blame] | 509 | init_msc_irqs(MIPS_MSC01_IC_REG_BASE, |
| 510 | MSC01E_INT_BASE, msc_eicirqmap, |
| 511 | msc_nr_eicirqs); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 512 | else |
Dmitri Vorobiev | f807149 | 2008-01-24 19:52:47 +0300 | [diff] [blame] | 513 | init_msc_irqs(MIPS_MSC01_IC_REG_BASE, |
| 514 | MSC01C_INT_BASE, msc_irqmap, |
| 515 | msc_nr_irqs); |
Chris Dearman | d725cf3 | 2007-05-08 14:05:39 +0100 | [diff] [blame] | 516 | break; |
| 517 | |
Dmitri Vorobiev | af82558 | 2008-01-24 19:52:45 +0300 | [diff] [blame] | 518 | case MIPS_REVISION_SCON_SOCITSC: |
| 519 | case MIPS_REVISION_SCON_SOCITSCP: |
Chris Dearman | d725cf3 | 2007-05-08 14:05:39 +0100 | [diff] [blame] | 520 | if (cpu_has_veic) |
Dmitri Vorobiev | f807149 | 2008-01-24 19:52:47 +0300 | [diff] [blame] | 521 | init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE, |
| 522 | MSC01E_INT_BASE, msc_eicirqmap, |
| 523 | msc_nr_eicirqs); |
Chris Dearman | d725cf3 | 2007-05-08 14:05:39 +0100 | [diff] [blame] | 524 | else |
Dmitri Vorobiev | f807149 | 2008-01-24 19:52:47 +0300 | [diff] [blame] | 525 | init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE, |
| 526 | MSC01C_INT_BASE, msc_irqmap, |
| 527 | msc_nr_irqs); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | if (cpu_has_veic) { |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 531 | set_vi_handler(MSC01E_INT_I8259A, malta_hw0_irqdispatch); |
| 532 | set_vi_handler(MSC01E_INT_COREHI, corehi_irqdispatch); |
| 533 | setup_irq(MSC01E_INT_BASE+MSC01E_INT_I8259A, &i8259irq); |
| 534 | setup_irq(MSC01E_INT_BASE+MSC01E_INT_COREHI, &corehi_irqaction); |
Dmitri Vorobiev | 52b3fc0 | 2008-01-24 19:52:51 +0300 | [diff] [blame] | 535 | } else if (cpu_has_vint) { |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 536 | set_vi_handler(MIPSCPU_INT_I8259A, malta_hw0_irqdispatch); |
| 537 | set_vi_handler(MIPSCPU_INT_COREHI, corehi_irqdispatch); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 538 | #ifdef CONFIG_MIPS_MT_SMTC |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 539 | setup_irq_smtc(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq, |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 540 | (0x100 << MIPSCPU_INT_I8259A)); |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 541 | setup_irq_smtc(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI, |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 542 | &corehi_irqaction, (0x100 << MIPSCPU_INT_COREHI)); |
Kevin D. Kissell | c3a005f | 2007-07-27 18:45:25 +0100 | [diff] [blame] | 543 | /* |
| 544 | * Temporary hack to ensure that the subsidiary device |
| 545 | * interrupts coing in via the i8259A, but associated |
| 546 | * with low IRQ numbers, will restore the Status.IM |
| 547 | * value associated with the i8259A. |
| 548 | */ |
| 549 | { |
| 550 | int i; |
| 551 | |
| 552 | for (i = 0; i < 16; i++) |
| 553 | irq_hwmask[i] = (0x100 << MIPSCPU_INT_I8259A); |
| 554 | } |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 555 | #else /* Not SMTC */ |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 556 | setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq); |
Dmitri Vorobiev | f807149 | 2008-01-24 19:52:47 +0300 | [diff] [blame] | 557 | setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI, |
| 558 | &corehi_irqaction); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 559 | #endif /* CONFIG_MIPS_MT_SMTC */ |
Dmitri Vorobiev | 52b3fc0 | 2008-01-24 19:52:51 +0300 | [diff] [blame] | 560 | } else { |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 561 | setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq); |
Dmitri Vorobiev | f807149 | 2008-01-24 19:52:47 +0300 | [diff] [blame] | 562 | setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI, |
| 563 | &corehi_irqaction); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 564 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 565 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 566 | if (gic_present) { |
| 567 | /* FIXME */ |
| 568 | int i; |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 569 | #if defined(CONFIG_MIPS_MT_SMP) |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 570 | gic_call_int_base = GIC_NUM_INTRS - NR_CPUS; |
| 571 | gic_resched_int_base = gic_call_int_base - NR_CPUS; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 572 | fill_ipi_map(); |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 573 | #endif |
| 574 | gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map, |
| 575 | ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 576 | if (!gcmp_present) { |
| 577 | /* Enable the GIC */ |
| 578 | i = REG(_msc01_biu_base, MSC01_SC_CFG); |
| 579 | REG(_msc01_biu_base, MSC01_SC_CFG) = |
| 580 | (i | (0x1 << MSC01_SC_CFG_GICENA_SHF)); |
| 581 | pr_debug("GIC Enabled\n"); |
| 582 | } |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 583 | #if defined(CONFIG_MIPS_MT_SMP) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 584 | /* set up ipi interrupts */ |
| 585 | if (cpu_has_vint) { |
| 586 | set_vi_handler(MIPSCPU_INT_IPI0, malta_ipi_irqdispatch); |
| 587 | set_vi_handler(MIPSCPU_INT_IPI1, malta_ipi_irqdispatch); |
| 588 | } |
| 589 | /* Argh.. this really needs sorting out.. */ |
| 590 | printk("CPU%d: status register was %08x\n", smp_processor_id(), read_c0_status()); |
| 591 | write_c0_status(read_c0_status() | STATUSF_IP3 | STATUSF_IP4); |
| 592 | printk("CPU%d: status register now %08x\n", smp_processor_id(), read_c0_status()); |
| 593 | write_c0_status(0x1100dc00); |
| 594 | printk("CPU%d: status register frc %08x\n", smp_processor_id(), read_c0_status()); |
Tim Anderson | a214cef | 2009-06-17 16:22:25 -0700 | [diff] [blame] | 595 | for (i = 0; i < NR_CPUS; i++) { |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 596 | arch_init_ipiirq(MIPS_GIC_IRQ_BASE + |
| 597 | GIC_RESCHED_INT(i), &irq_resched); |
| 598 | arch_init_ipiirq(MIPS_GIC_IRQ_BASE + |
| 599 | GIC_CALL_INT(i), &irq_call); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 600 | } |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 601 | #endif |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 602 | } else { |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 603 | #if defined(CONFIG_MIPS_MT_SMP) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 604 | /* set up ipi interrupts */ |
| 605 | if (cpu_has_veic) { |
| 606 | set_vi_handler (MSC01E_INT_SW0, ipi_resched_dispatch); |
| 607 | set_vi_handler (MSC01E_INT_SW1, ipi_call_dispatch); |
| 608 | cpu_ipi_resched_irq = MSC01E_INT_SW0; |
| 609 | cpu_ipi_call_irq = MSC01E_INT_SW1; |
| 610 | } else { |
| 611 | if (cpu_has_vint) { |
| 612 | set_vi_handler (MIPS_CPU_IPI_RESCHED_IRQ, ipi_resched_dispatch); |
| 613 | set_vi_handler (MIPS_CPU_IPI_CALL_IRQ, ipi_call_dispatch); |
| 614 | } |
| 615 | cpu_ipi_resched_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ; |
| 616 | cpu_ipi_call_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ; |
| 617 | } |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 618 | arch_init_ipiirq(cpu_ipi_resched_irq, &irq_resched); |
| 619 | arch_init_ipiirq(cpu_ipi_call_irq, &irq_call); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 620 | #endif |
Chris Dearman | 7098f74 | 2009-07-10 01:54:09 -0700 | [diff] [blame] | 621 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | void malta_be_init(void) |
| 625 | { |
| 626 | if (gcmp_present) { |
| 627 | /* Could change CM error mask register */ |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | |
| 632 | static char *tr[8] = { |
| 633 | "mem", "gcr", "gic", "mmio", |
| 634 | "0x04", "0x05", "0x06", "0x07" |
| 635 | }; |
| 636 | |
| 637 | static char *mcmd[32] = { |
| 638 | [0x00] = "0x00", |
| 639 | [0x01] = "Legacy Write", |
| 640 | [0x02] = "Legacy Read", |
| 641 | [0x03] = "0x03", |
| 642 | [0x04] = "0x04", |
| 643 | [0x05] = "0x05", |
| 644 | [0x06] = "0x06", |
| 645 | [0x07] = "0x07", |
| 646 | [0x08] = "Coherent Read Own", |
| 647 | [0x09] = "Coherent Read Share", |
| 648 | [0x0a] = "Coherent Read Discard", |
| 649 | [0x0b] = "Coherent Ready Share Always", |
| 650 | [0x0c] = "Coherent Upgrade", |
| 651 | [0x0d] = "Coherent Writeback", |
| 652 | [0x0e] = "0x0e", |
| 653 | [0x0f] = "0x0f", |
| 654 | [0x10] = "Coherent Copyback", |
| 655 | [0x11] = "Coherent Copyback Invalidate", |
| 656 | [0x12] = "Coherent Invalidate", |
| 657 | [0x13] = "Coherent Write Invalidate", |
| 658 | [0x14] = "Coherent Completion Sync", |
| 659 | [0x15] = "0x15", |
| 660 | [0x16] = "0x16", |
| 661 | [0x17] = "0x17", |
| 662 | [0x18] = "0x18", |
| 663 | [0x19] = "0x19", |
| 664 | [0x1a] = "0x1a", |
| 665 | [0x1b] = "0x1b", |
| 666 | [0x1c] = "0x1c", |
| 667 | [0x1d] = "0x1d", |
| 668 | [0x1e] = "0x1e", |
| 669 | [0x1f] = "0x1f" |
| 670 | }; |
| 671 | |
| 672 | static char *core[8] = { |
| 673 | "Invalid/OK", "Invalid/Data", |
| 674 | "Shared/OK", "Shared/Data", |
| 675 | "Modified/OK", "Modified/Data", |
| 676 | "Exclusive/OK", "Exclusive/Data" |
| 677 | }; |
| 678 | |
| 679 | static char *causes[32] = { |
| 680 | "None", "GC_WR_ERR", "GC_RD_ERR", "COH_WR_ERR", |
| 681 | "COH_RD_ERR", "MMIO_WR_ERR", "MMIO_RD_ERR", "0x07", |
| 682 | "0x08", "0x09", "0x0a", "0x0b", |
| 683 | "0x0c", "0x0d", "0x0e", "0x0f", |
| 684 | "0x10", "0x11", "0x12", "0x13", |
| 685 | "0x14", "0x15", "0x16", "INTVN_WR_ERR", |
| 686 | "INTVN_RD_ERR", "0x19", "0x1a", "0x1b", |
| 687 | "0x1c", "0x1d", "0x1e", "0x1f" |
| 688 | }; |
| 689 | |
| 690 | int malta_be_handler(struct pt_regs *regs, int is_fixup) |
| 691 | { |
| 692 | /* This duplicates the handling in do_be which seems wrong */ |
| 693 | int retval = is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL; |
| 694 | |
| 695 | if (gcmp_present) { |
| 696 | unsigned long cm_error = GCMPGCB(GCMEC); |
| 697 | unsigned long cm_addr = GCMPGCB(GCMEA); |
| 698 | unsigned long cm_other = GCMPGCB(GCMEO); |
| 699 | unsigned long cause, ocause; |
| 700 | char buf[256]; |
| 701 | |
| 702 | cause = (cm_error & GCMP_GCB_GMEC_ERROR_TYPE_MSK); |
| 703 | if (cause != 0) { |
| 704 | cause >>= GCMP_GCB_GMEC_ERROR_TYPE_SHF; |
| 705 | if (cause < 16) { |
| 706 | unsigned long cca_bits = (cm_error >> 15) & 7; |
| 707 | unsigned long tr_bits = (cm_error >> 12) & 7; |
| 708 | unsigned long mcmd_bits = (cm_error >> 7) & 0x1f; |
| 709 | unsigned long stag_bits = (cm_error >> 3) & 15; |
| 710 | unsigned long sport_bits = (cm_error >> 0) & 7; |
| 711 | |
| 712 | snprintf(buf, sizeof(buf), |
| 713 | "CCA=%lu TR=%s MCmd=%s STag=%lu " |
| 714 | "SPort=%lu\n", |
| 715 | cca_bits, tr[tr_bits], mcmd[mcmd_bits], |
| 716 | stag_bits, sport_bits); |
| 717 | } else { |
| 718 | /* glob state & sresp together */ |
| 719 | unsigned long c3_bits = (cm_error >> 18) & 7; |
| 720 | unsigned long c2_bits = (cm_error >> 15) & 7; |
| 721 | unsigned long c1_bits = (cm_error >> 12) & 7; |
| 722 | unsigned long c0_bits = (cm_error >> 9) & 7; |
| 723 | unsigned long sc_bit = (cm_error >> 8) & 1; |
| 724 | unsigned long mcmd_bits = (cm_error >> 3) & 0x1f; |
| 725 | unsigned long sport_bits = (cm_error >> 0) & 7; |
| 726 | snprintf(buf, sizeof(buf), |
| 727 | "C3=%s C2=%s C1=%s C0=%s SC=%s " |
| 728 | "MCmd=%s SPort=%lu\n", |
| 729 | core[c3_bits], core[c2_bits], |
| 730 | core[c1_bits], core[c0_bits], |
| 731 | sc_bit ? "True" : "False", |
| 732 | mcmd[mcmd_bits], sport_bits); |
| 733 | } |
| 734 | |
| 735 | ocause = (cm_other & GCMP_GCB_GMEO_ERROR_2ND_MSK) >> |
| 736 | GCMP_GCB_GMEO_ERROR_2ND_SHF; |
| 737 | |
| 738 | printk("CM_ERROR=%08lx %s <%s>\n", cm_error, |
| 739 | causes[cause], buf); |
| 740 | printk("CM_ADDR =%08lx\n", cm_addr); |
| 741 | printk("CM_OTHER=%08lx %s\n", cm_other, causes[ocause]); |
| 742 | |
| 743 | /* reprime cause register */ |
| 744 | GCMPGCB(GCMEC) = 0; |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | } |