Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | /* * Platform dependent support for SGI SN * * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License * as published by the Free Software Foundation. * * This program is distributed in the hope that it would be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * Further, this software is distributed without any warranty that it is * free of the rightful claim of any third person regarding infringement * or the like. Any license provided herein, whether implied or * otherwise, applies only to this software file. Patent licenses, if * any, provided herein do not apply to combinations of this program with * other software, or any other product whatsoever. * * You should have received a copy of the GNU General Public * License along with this program; if not, write the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. * * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, * Mountain View, CA 94043, or: * * http://www.sgi.com * * For further information regarding this notice, see: * * http://oss.sgi.com/projects/GenInfo/NoticeExplan */ #include <linux/init.h> #include <linux/sched.h> #include <linux/vmalloc.h> #include <asm/current.h> #include <linux/irq.h> #include <linux/interrupt.h> #include <linux/slab.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/sn/sgi.h> #include <asm/sn/iograph.h> #include <asm/sn/invent.h> #include <linux/devfs_fs_kernel.h> #include <asm/sn/hcl.h> #include <asm/sn/types.h> #include <asm/sn/pci/bridge.h> #include <asm/sn/pci/pciio.h> #include <asm/sn/pci/pciio_private.h> #include <asm/sn/pci/pcibr.h> #include <asm/sn/pci/pcibr_private.h> #include <asm/sn/sn_cpuid.h> #include <asm/sn/io.h> #include <asm/sn/intr.h> #include <asm/sn/addrs.h> #include <asm/sn/driver.h> #include <asm/sn/arch.h> #include <asm/sn/pda.h> #include <asm/processor.h> #include <asm/system.h> #include <asm/bitops.h> int irq_to_bit_pos(int irq); static void force_interrupt(int irq); extern void pcibr_force_interrupt(pcibr_intr_t intr); extern int sn_force_interrupt_flag; static unsigned int sn_startup_irq(unsigned int irq) { return(0); } static void sn_shutdown_irq(unsigned int irq) { } static void sn_disable_irq(unsigned int irq) { } static void sn_enable_irq(unsigned int irq) { } static void sn_ack_irq(unsigned int irq) { unsigned long event_occurred, mask = 0; int nasid; irq = irq & 0xff; nasid = smp_physical_node_id(); event_occurred = HUB_L( (unsigned long *)GLOBAL_MMR_ADDR(nasid,SH_EVENT_OCCURRED) ); if (event_occurred & SH_EVENT_OCCURRED_UART_INT_MASK) { mask |= (1 << SH_EVENT_OCCURRED_UART_INT_SHFT); } if (event_occurred & SH_EVENT_OCCURRED_IPI_INT_MASK) { mask |= (1 << SH_EVENT_OCCURRED_IPI_INT_SHFT); } if (event_occurred & SH_EVENT_OCCURRED_II_INT0_MASK) { mask |= (1 << SH_EVENT_OCCURRED_II_INT0_SHFT); } if (event_occurred & SH_EVENT_OCCURRED_II_INT1_MASK) { mask |= (1 << SH_EVENT_OCCURRED_II_INT1_SHFT); } HUB_S((unsigned long *)GLOBAL_MMR_ADDR(nasid, SH_EVENT_OCCURRED_ALIAS), mask ); __set_bit(irq, (volatile void *)pda->sn_in_service_ivecs); } static void sn_end_irq(unsigned int irq) { int nasid; int ivec; unsigned long event_occurred; ivec = irq & 0xff; if (ivec == SGI_UART_VECTOR) { nasid = smp_physical_node_id(); event_occurred = HUB_L( (unsigned long *)GLOBAL_MMR_ADDR(nasid,SH_EVENT_OCCURRED) ); // If the UART bit is set here, we may have received an interrupt from the // UART that the driver missed. To make sure, we IPI ourselves to force us // to look again. if (event_occurred & SH_EVENT_OCCURRED_UART_INT_MASK) { platform_send_ipi(smp_processor_id(), SGI_UART_VECTOR, IA64_IPI_DM_INT, 0); } } __clear_bit(ivec, (volatile void *)pda->sn_in_service_ivecs); if (sn_force_interrupt_flag) force_interrupt(irq); } static void sn_set_affinity_irq(unsigned int irq, unsigned long mask) { } struct hw_interrupt_type irq_type_sn = { "SN hub", sn_startup_irq, sn_shutdown_irq, sn_enable_irq, sn_disable_irq, sn_ack_irq, sn_end_irq, sn_set_affinity_irq }; struct irq_desc * sn_irq_desc(unsigned int irq) { irq = SN_IVEC_FROM_IRQ(irq); return(_irq_desc + irq); } u8 sn_irq_to_vector(u8 irq) { return(irq); } unsigned int sn_local_vector_to_irq(u8 vector) { return (CPU_VECTOR_TO_IRQ(smp_processor_id(), vector)); } void sn_irq_init (void) { int i; irq_desc_t *base_desc = _irq_desc; for (i=IA64_FIRST_DEVICE_VECTOR; i<NR_IRQS; i++) { if (base_desc[i].handler == &no_irq_type) { base_desc[i].handler = &irq_type_sn; } } } int bit_pos_to_irq(int bit) { #define BIT_TO_IRQ 64 if (bit > 118) bit = 118; return bit + BIT_TO_IRQ; } int irq_to_bit_pos(int irq) { #define IRQ_TO_BIT 64 int bit = irq - IRQ_TO_BIT; return bit; } struct pcibr_intr_list_t { struct pcibr_intr_list_t *next; pcibr_intr_t intr; }; static struct pcibr_intr_list_t **pcibr_intr_list; void register_pcibr_intr(int irq, pcibr_intr_t intr) { struct pcibr_intr_list_t *p = kmalloc(sizeof(struct pcibr_intr_list_t), GFP_KERNEL); struct pcibr_intr_list_t *list; int cpu = SN_CPU_FROM_IRQ(irq); if (pcibr_intr_list == NULL) { pcibr_intr_list = kmalloc(sizeof(struct pcibr_intr_list_t *) * NR_IRQS, GFP_KERNEL); if (pcibr_intr_list == NULL) pcibr_intr_list = vmalloc(sizeof(struct pcibr_intr_list_t *) * NR_IRQS); if (pcibr_intr_list == NULL) panic("Could not allocate memory for pcibr_intr_list\n"); memset( (void *)pcibr_intr_list, 0, sizeof(struct pcibr_intr_list_t *) * NR_IRQS); } if (pdacpu(cpu)->sn_last_irq < irq) { pdacpu(cpu)->sn_last_irq = irq; } if (pdacpu(cpu)->sn_first_irq > irq) pdacpu(cpu)->sn_first_irq = irq; if (!p) panic("Could not allocate memory for pcibr_intr_list_t\n"); if ((list = pcibr_intr_list[irq])) { while (list->next) list = list->next; list->next = p; p->next = NULL; p->intr = intr; } else { pcibr_intr_list[irq] = p; p->next = NULL; p->intr = intr; } } void force_polled_int(void) { int i; struct pcibr_intr_list_t *p; for (i=0; i<NR_IRQS;i++) { p = pcibr_intr_list[i]; while (p) { if (p->intr){ pcibr_force_interrupt(p->intr); } p = p->next; } } } static void force_interrupt(int irq) { struct pcibr_intr_list_t *p = pcibr_intr_list[irq]; while (p) { if (p->intr) { pcibr_force_interrupt(p->intr); } p = p->next; } } /* Check for lost interrupts. If the PIC int_status reg. says that an interrupt has been sent, but not handled, and the interrupt is not pending in either the cpu irr regs or in the soft irr regs, and the interrupt is not in service, then the interrupt may have been lost. Force an interrupt on that pin. It is possible that the interrupt is in flight, so we may generate a spurious interrupt, but we should never miss a real lost interrupt. */ static void sn_check_intr(int irq, pcibr_intr_t intr) { unsigned long regval; int irr_reg_num; int irr_bit; unsigned long irr_reg; regval = intr->bi_soft->bs_base->p_int_status_64; irr_reg_num = irq_to_vector(irq) / 64; irr_bit = irq_to_vector(irq) % 64; switch (irr_reg_num) { case 0: irr_reg = ia64_get_irr0(); break; case 1: irr_reg = ia64_get_irr1(); break; case 2: irr_reg = ia64_get_irr2(); break; case 3: irr_reg = ia64_get_irr3(); break; } if (!test_bit(irr_bit, &irr_reg) ) { if (!test_bit(irq, pda->sn_soft_irr) ) { if (!test_bit(irq, pda->sn_in_service_ivecs) ) { regval &= 0xff; if (intr->bi_ibits & regval & intr->bi_last_intr) { regval &= ~(intr->bi_ibits & regval); pcibr_force_interrupt(intr); } } } } intr->bi_last_intr = regval; } void sn_lb_int_war_check(void) { int i; if (pda->sn_first_irq == 0) return; for (i=pda->sn_first_irq; i <= pda->sn_last_irq; i++) { struct pcibr_intr_list_t *p = pcibr_intr_list[i]; if (p == NULL) { continue; } while (p) { sn_check_intr(i, p->intr); p = p->next; } } } static inline int sn_get_next_bit(void) { int i; int bit; for (i = 3; i >= 0; i--) { if (pda->sn_soft_irr[i] != 0) { bit = (i * 64) + __ffs(pda->sn_soft_irr[i]); __change_bit(bit, (volatile void *)pda->sn_soft_irr); return(bit); } } return IA64_SPURIOUS_INT_VECTOR; } void sn_set_tpr(int vector) { if (vector > IA64_LAST_DEVICE_VECTOR || vector < IA64_FIRST_DEVICE_VECTOR) { ia64_set_tpr(vector); } else { ia64_set_tpr(IA64_LAST_DEVICE_VECTOR); } } static inline void sn_get_all_ivr(void) { int vector; vector = ia64_get_ivr(); while (vector != IA64_SPURIOUS_INT_VECTOR) { __set_bit(vector, (volatile void *)pda->sn_soft_irr); ia64_eoi(); if (vector > IA64_LAST_DEVICE_VECTOR) return; vector = ia64_get_ivr(); } } int sn_get_ivr(void) { int vector; vector = sn_get_next_bit(); if (vector == IA64_SPURIOUS_INT_VECTOR) { sn_get_all_ivr(); vector = sn_get_next_bit(); } return vector; } |