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 | /* * linux/arch/alpha/kernel/sys_wildfire.c * * Wildfire support. * * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE */ #include <linux/kernel.h> #include <linux/types.h> #include <linux/mm.h> #include <linux/sched.h> #include <linux/pci.h> #include <linux/init.h> #include <asm/ptrace.h> #include <asm/system.h> #include <asm/dma.h> #include <asm/irq.h> #include <asm/bitops.h> #include <asm/mmu_context.h> #include <asm/io.h> #include <asm/pgtable.h> #include <asm/core_wildfire.h> #include <asm/hwrpb.h> #include "proto.h" #include "irq_impl.h" #include "pci_impl.h" #include "machvec_impl.h" static unsigned long cached_irq_mask[WILDFIRE_NR_IRQS/(sizeof(long)*8)]; spinlock_t wildfire_irq_lock = SPIN_LOCK_UNLOCKED; static int doing_init_irq_hw = 0; static void wildfire_update_irq_hw(unsigned int irq) { int qbbno = (irq >> 8) & (WILDFIRE_MAX_QBB - 1); int pcano = (irq >> 6) & (WILDFIRE_PCA_PER_QBB - 1); wildfire_pca *pca; volatile unsigned long * enable0; if (!WILDFIRE_PCA_EXISTS(qbbno, pcano)) { if (!doing_init_irq_hw) { printk(KERN_ERR "wildfire_update_irq_hw:" " got irq %d for non-existent PCA %d" " on QBB %d.\n", irq, pcano, qbbno); } return; } pca = WILDFIRE_pca(qbbno, pcano); enable0 = (unsigned long *) &pca->pca_int[0].enable; /* ??? */ *enable0 = cached_irq_mask[qbbno * WILDFIRE_PCA_PER_QBB + pcano]; mb(); *enable0; } static void __init wildfire_init_irq_hw(void) { #if 0 register wildfire_pca * pca = WILDFIRE_pca(0, 0); volatile unsigned long * enable0, * enable1, * enable2, *enable3; volatile unsigned long * target0, * target1, * target2, *target3; enable0 = (unsigned long *) &pca->pca_int[0].enable; enable1 = (unsigned long *) &pca->pca_int[1].enable; enable2 = (unsigned long *) &pca->pca_int[2].enable; enable3 = (unsigned long *) &pca->pca_int[3].enable; target0 = (unsigned long *) &pca->pca_int[0].target; target1 = (unsigned long *) &pca->pca_int[1].target; target2 = (unsigned long *) &pca->pca_int[2].target; target3 = (unsigned long *) &pca->pca_int[3].target; *enable0 = *enable1 = *enable2 = *enable3 = 0; *target0 = (1UL<<8) | WILDFIRE_QBB(0); *target1 = *target2 = *target3 = 0; mb(); *enable0; *enable1; *enable2; *enable3; *target0; *target1; *target2; *target3; #else int i; doing_init_irq_hw = 1; /* Need to update only once for every possible PCA. */ for (i = 0; i < WILDFIRE_NR_IRQS; i+=WILDFIRE_IRQ_PER_PCA) wildfire_update_irq_hw(i); doing_init_irq_hw = 0; #endif } static void wildfire_enable_irq(unsigned int irq) { if (irq < 16) i8259a_enable_irq(irq); spin_lock(&wildfire_irq_lock); set_bit(irq, &cached_irq_mask); wildfire_update_irq_hw(irq); spin_unlock(&wildfire_irq_lock); } static void wildfire_disable_irq(unsigned int irq) { if (irq < 16) i8259a_disable_irq(irq); spin_lock(&wildfire_irq_lock); clear_bit(irq, &cached_irq_mask); wildfire_update_irq_hw(irq); spin_unlock(&wildfire_irq_lock); } static void wildfire_mask_and_ack_irq(unsigned int irq) { if (irq < 16) i8259a_mask_and_ack_irq(irq); spin_lock(&wildfire_irq_lock); clear_bit(irq, &cached_irq_mask); wildfire_update_irq_hw(irq); spin_unlock(&wildfire_irq_lock); } static unsigned int wildfire_startup_irq(unsigned int irq) { wildfire_enable_irq(irq); return 0; /* never anything pending */ } static void wildfire_end_irq(unsigned int irq) { #if 0 if (!irq_desc[irq].action) printk("got irq %d\n", irq); #endif if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) wildfire_enable_irq(irq); } static struct hw_interrupt_type wildfire_irq_type = { typename: "WILDFIRE", startup: wildfire_startup_irq, shutdown: wildfire_disable_irq, enable: wildfire_enable_irq, disable: wildfire_disable_irq, ack: wildfire_mask_and_ack_irq, end: wildfire_end_irq, }; static void __init wildfire_init_irq_per_pca(int qbbno, int pcano) { int i, irq_bias; unsigned long io_bias; static struct irqaction isa_enable = { handler: no_action, name: "isa_enable", }; irq_bias = qbbno * (WILDFIRE_PCA_PER_QBB * WILDFIRE_IRQ_PER_PCA) + pcano * WILDFIRE_IRQ_PER_PCA; /* Only need the following for first PCI bus per PCA. */ io_bias = WILDFIRE_IO(qbbno, pcano<<1) - WILDFIRE_IO_BIAS; #if 0 outb(0, DMA1_RESET_REG + io_bias); outb(0, DMA2_RESET_REG + io_bias); outb(DMA_MODE_CASCADE, DMA2_MODE_REG + io_bias); outb(0, DMA2_MASK_REG + io_bias); #endif #if 0 /* ??? Not sure how to do this, yet... */ init_i8259a_irqs(); /* ??? */ #endif for (i = 0; i < 16; ++i) { if (i == 2) continue; irq_desc[i+irq_bias].status = IRQ_DISABLED | IRQ_LEVEL; irq_desc[i+irq_bias].handler = &wildfire_irq_type; } irq_desc[36+irq_bias].status = IRQ_DISABLED | IRQ_LEVEL; irq_desc[36+irq_bias].handler = &wildfire_irq_type; for (i = 40; i < 64; ++i) { irq_desc[i+irq_bias].status = IRQ_DISABLED | IRQ_LEVEL; irq_desc[i+irq_bias].handler = &wildfire_irq_type; } setup_irq(32+irq_bias, &isa_enable); } static void __init wildfire_init_irq(void) { int qbbno, pcano; #if 1 wildfire_init_irq_hw(); init_i8259a_irqs(); #endif for (qbbno = 0; qbbno < WILDFIRE_MAX_QBB; qbbno++) { if (WILDFIRE_QBB_EXISTS(qbbno)) { for (pcano = 0; pcano < WILDFIRE_PCA_PER_QBB; pcano++) { if (WILDFIRE_PCA_EXISTS(qbbno, pcano)) { wildfire_init_irq_per_pca(qbbno, pcano); } } } } } static void wildfire_device_interrupt(unsigned long vector, struct pt_regs * regs) { int irq; irq = (vector - 0x800) >> 4; /* * bits 10-8: source QBB ID * bits 7-6: PCA * bits 5-0: irq in PCA */ handle_irq(irq, regs); return; } /* * PCI Fixup configuration. * * Summary per PCA (2 PCI or HIPPI buses): * * Bit Meaning * 0-15 ISA * *32 ISA summary *33 SMI *34 NMI *36 builtin QLogic SCSI (or slot 0 if no IO module) *40 Interrupt Line A from slot 2 PCI0 *41 Interrupt Line B from slot 2 PCI0 *42 Interrupt Line C from slot 2 PCI0 *43 Interrupt Line D from slot 2 PCI0 *44 Interrupt Line A from slot 3 PCI0 *45 Interrupt Line B from slot 3 PCI0 *46 Interrupt Line C from slot 3 PCI0 *47 Interrupt Line D from slot 3 PCI0 * *48 Interrupt Line A from slot 4 PCI1 *49 Interrupt Line B from slot 4 PCI1 *50 Interrupt Line C from slot 4 PCI1 *51 Interrupt Line D from slot 4 PCI1 *52 Interrupt Line A from slot 5 PCI1 *53 Interrupt Line B from slot 5 PCI1 *54 Interrupt Line C from slot 5 PCI1 *55 Interrupt Line D from slot 5 PCI1 *56 Interrupt Line A from slot 6 PCI1 *57 Interrupt Line B from slot 6 PCI1 *58 Interrupt Line C from slot 6 PCI1 *50 Interrupt Line D from slot 6 PCI1 *60 Interrupt Line A from slot 7 PCI1 *61 Interrupt Line B from slot 7 PCI1 *62 Interrupt Line C from slot 7 PCI1 *63 Interrupt Line D from slot 7 PCI1 * * * IdSel * 0 Cypress Bridge I/O (ISA summary interrupt) * 1 64 bit PCI 0 option slot 1 (SCSI QLogic builtin) * 2 64 bit PCI 0 option slot 2 * 3 64 bit PCI 0 option slot 3 * 4 64 bit PCI 1 option slot 4 * 5 64 bit PCI 1 option slot 5 * 6 64 bit PCI 1 option slot 6 * 7 64 bit PCI 1 option slot 7 */ static int __init wildfire_map_irq(struct pci_dev *dev, u8 slot, u8 pin) { static char irq_tab[8][5] __initdata = { /*INT INTA INTB INTC INTD */ { -1, -1, -1, -1, -1}, /* IdSel 0 ISA Bridge */ { 36, 36, 36+1, 36+2, 36+3}, /* IdSel 1 SCSI builtin */ { 40, 40, 40+1, 40+2, 40+3}, /* IdSel 2 PCI 0 slot 2 */ { 44, 44, 44+1, 44+2, 44+3}, /* IdSel 3 PCI 0 slot 3 */ { 48, 48, 48+1, 48+2, 48+3}, /* IdSel 4 PCI 1 slot 4 */ { 52, 52, 52+1, 52+2, 52+3}, /* IdSel 5 PCI 1 slot 5 */ { 56, 56, 56+1, 56+2, 56+3}, /* IdSel 6 PCI 1 slot 6 */ { 60, 60, 60+1, 60+2, 60+3}, /* IdSel 7 PCI 1 slot 7 */ }; const long min_idsel = 0, max_idsel = 7, irqs_per_slot = 5; struct pci_controler *hose = dev->sysdata; int irq = COMMON_TABLE_LOOKUP; if (irq > 0) { int qbbno = hose->index >> 3; int pcano = (hose->index >> 1) & 3; irq += (qbbno << 8) + (pcano << 6); } return irq; } /* * The System Vectors */ struct alpha_machine_vector wildfire_mv __initmv = { vector_name: "WILDFIRE", DO_EV6_MMU, DO_DEFAULT_RTC, DO_WILDFIRE_IO, DO_WILDFIRE_BUS, machine_check: wildfire_machine_check, max_dma_address: ALPHA_MAX_DMA_ADDRESS, min_io_address: DEFAULT_IO_BASE, min_mem_address: DEFAULT_MEM_BASE, nr_irqs: WILDFIRE_NR_IRQS, device_interrupt: wildfire_device_interrupt, init_arch: wildfire_init_arch, init_irq: wildfire_init_irq, init_rtc: common_init_rtc, init_pci: common_init_pci, kill_arch: wildfire_kill_arch, pci_map_irq: wildfire_map_irq, pci_swizzle: common_swizzle, }; ALIAS_MV(wildfire) |