1 /* 2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org> 3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org> 4 * Copyright (c) 2000, BSDi 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice unmodified, this list of conditions, and the following 12 * disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 * 30 */ 31 32 #include <sys/param.h> /* XXX trim includes */ 33 #include <sys/systm.h> 34 #include <sys/bus.h> 35 #include <sys/kernel.h> 36 #include <sys/module.h> 37 #include <sys/malloc.h> 38 #include <vm/vm.h> 39 #include <vm/pmap.h> 40 #include <machine/md_var.h> 41 #include <pci/pcivar.h> 42 #include <pci/pcireg.h> 43 #include <isa/isavar.h> 44 #include <machine/nexusvar.h> 45 #include <machine/pci_cfgreg.h> 46 #include <machine/segments.h> 47 #include <machine/pc/bios.h> 48 49 #ifdef APIC_IO 50 #include <machine/smp.h> 51 #endif /* APIC_IO */ 52 53 #include "pcib_if.h" 54 55 #define PRVERB(a) printf a 56 57 static int cfgmech; 58 static int devmax; 59 static int usebios; 60 static int enable_pcibios = 0; 61 62 TUNABLE_INT("hw.pci.enable_pcibios", &enable_pcibios); 63 64 static int pci_cfgintr_unique(struct PIR_entry *pe, int pin); 65 static int pci_cfgintr_linked(struct PIR_entry *pe, int pin); 66 static int pci_cfgintr_search(struct PIR_entry *pe, int bus, int device, int matchpin, int pin); 67 static int pci_cfgintr_virgin(struct PIR_entry *pe, int pin); 68 69 static int pcibios_cfgread(int bus, int slot, int func, int reg, int bytes); 70 static void pcibios_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes); 71 static int pcibios_cfgopen(void); 72 static int pcireg_cfgread(int bus, int slot, int func, int reg, int bytes); 73 static void pcireg_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes); 74 static int pcireg_cfgopen(void); 75 76 static struct PIR_table *pci_route_table; 77 static int pci_route_count; 78 79 int 80 pci_pcibios_active(void) 81 { 82 return usebios; 83 } 84 85 int 86 pci_kill_pcibios(void) 87 { 88 usebios = 0; 89 return pcireg_cfgopen() != 0; 90 } 91 92 static u_int16_t 93 pcibios_get_version(void) 94 { 95 struct bios_regs args; 96 97 if (PCIbios.entry == 0) { 98 PRVERB(("pcibios: No call entry point\n")); 99 return (0); 100 } 101 args.eax = PCIBIOS_BIOS_PRESENT; 102 if (bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL))) { 103 PRVERB(("pcibios: BIOS_PRESENT call failed\n")); 104 return (0); 105 } 106 if (args.edx != 0x20494350) { 107 PRVERB(("pcibios: BIOS_PRESENT didn't return 'PCI ' in edx\n")); 108 return (0); 109 } 110 return (args.ebx & 0xffff); 111 } 112 113 /* 114 * Initialise access to PCI configuration space 115 */ 116 int 117 pci_cfgregopen(void) 118 { 119 static int opened = 0; 120 u_long sigaddr; 121 static struct PIR_table *pt; 122 u_int8_t ck, *cv; 123 int i; 124 125 if (opened) 126 return(1); 127 128 if (pcibios_cfgopen() != 0) { 129 usebios = 1; 130 } else if (pcireg_cfgopen() != 0) { 131 usebios = 0; 132 } else { 133 return(0); 134 } 135 136 /* 137 * Look for the interrupt routing table. 138 */ 139 /* We use PCI BIOS's PIR table if it's available */ 140 if (pcibios_get_version() >= 0x0210 && pt == NULL && 141 (sigaddr = bios_sigsearch(0, "$PIR", 4, 16, 0)) != 0) { 142 pt = (struct PIR_table *)(uintptr_t)BIOS_PADDRTOVADDR(sigaddr); 143 for (cv = (u_int8_t *)pt, ck = 0, i = 0; i < (pt->pt_header.ph_length); i++) { 144 ck += cv[i]; 145 } 146 if (ck == 0) { 147 pci_route_table = pt; 148 pci_route_count = (pt->pt_header.ph_length - sizeof(struct PIR_header)) / sizeof(struct PIR_entry); 149 printf("Using $PIR table, %d entries at %p\n", pci_route_count, pci_route_table); 150 } 151 } 152 153 opened = 1; 154 return(1); 155 } 156 157 /* 158 * Read configuration space register 159 */ 160 static u_int32_t 161 pci_do_cfgregread(int bus, int slot, int func, int reg, int bytes) 162 { 163 return(usebios ? 164 pcibios_cfgread(bus, slot, func, reg, bytes) : 165 pcireg_cfgread(bus, slot, func, reg, bytes)); 166 } 167 168 u_int32_t 169 pci_cfgregread(int bus, int slot, int func, int reg, int bytes) 170 { 171 #ifdef APIC_IO 172 /* 173 * If we are using the APIC, the contents of the intline register will probably 174 * be wrong (since they are set up for use with the PIC. 175 * Rather than rewrite these registers (maybe that would be smarter) we trap 176 * attempts to read them and translate to our private vector numbers. 177 */ 178 if ((reg == PCIR_INTLINE) && (bytes == 1)) { 179 int pin, line; 180 181 pin = pci_do_cfgregread(bus, slot, func, PCIR_INTPIN, 1); 182 line = pci_do_cfgregread(bus, slot, func, PCIR_INTLINE, 1); 183 184 if (pin != 0) { 185 int airq; 186 187 airq = pci_apic_irq(bus, slot, pin); 188 if (airq >= 0) { 189 /* PCI specific entry found in MP table */ 190 if (airq != line) 191 undirect_pci_irq(line); 192 return(airq); 193 } else { 194 /* 195 * PCI interrupts might be redirected to the 196 * ISA bus according to some MP tables. Use the 197 * same methods as used by the ISA devices 198 * devices to find the proper IOAPIC int pin. 199 */ 200 airq = isa_apic_irq(line); 201 if ((airq >= 0) && (airq != line)) { 202 /* XXX: undirect_pci_irq() ? */ 203 undirect_isa_irq(line); 204 return(airq); 205 } 206 } 207 } 208 return(line); 209 } 210 #endif /* APIC_IO */ 211 return(pci_do_cfgregread(bus, slot, func, reg, bytes)); 212 } 213 214 /* 215 * Write configuration space register 216 */ 217 void 218 pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes) 219 { 220 return(usebios ? 221 pcibios_cfgwrite(bus, slot, func, reg, data, bytes) : 222 pcireg_cfgwrite(bus, slot, func, reg, data, bytes)); 223 } 224 225 /* 226 * Route a PCI interrupt 227 * 228 * XXX we don't do anything "right" with the function number in the PIR table 229 * (because the consumer isn't currently passing it in). We don't care 230 * anyway, due to the way PCI interrupts are assigned. 231 */ 232 int 233 pci_cfgintr(int bus, int device, int pin) 234 { 235 struct PIR_entry *pe; 236 int i, irq; 237 struct bios_regs args; 238 u_int16_t v; 239 int already = 0; 240 241 v = pcibios_get_version(); 242 if (v < 0x0210) { 243 PRVERB(( 244 "pci_cfgintr: BIOS %x.%02x doesn't support interrupt routing\n", 245 (v & 0xff00) >> 8, v & 0xff)); 246 return (255); 247 } 248 if ((bus < 0) || (bus > 255) || (device < 0) || (device > 255) || 249 (pin < 1) || (pin > 4)) 250 return(255); 251 252 /* 253 * Scan the entry table for a contender 254 */ 255 for (i = 0, pe = &pci_route_table->pt_entry[0]; i < pci_route_count; i++, pe++) { 256 if ((bus != pe->pe_bus) || (device != pe->pe_device)) 257 continue; 258 259 irq = pci_cfgintr_linked(pe, pin); 260 if (irq != 255) 261 already = 1; 262 if (irq == 255) 263 irq = pci_cfgintr_unique(pe, pin); 264 if (irq == 255) 265 irq = pci_cfgintr_virgin(pe, pin); 266 267 if (irq == 255) 268 break; 269 270 /* 271 * Ask the BIOS to route the interrupt 272 */ 273 args.eax = PCIBIOS_ROUTE_INTERRUPT; 274 args.ebx = (bus << 8) | (device << 3); 275 args.ecx = (irq << 8) | (0xa + pin - 1); /* pin value is 0xa - 0xd */ 276 if (bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL)) && !already) { 277 /* 278 * XXX if it fails, we should try to smack the router 279 * hardware directly. 280 * XXX Also, there may be other choices that we can try that 281 * will work. 282 */ 283 PRVERB(("pci_cfgintr: ROUTE_INTERRUPT failed.\n")); 284 return(255); 285 } 286 printf("pci_cfgintr: %d:%d INT%c routed to irq %d\n", bus, device, 'A' + pin - 1, irq); 287 return(irq); 288 } 289 290 PRVERB(("pci_cfgintr: can't route an interrupt to %d:%d INT%c\n", bus, device, 'A' + pin - 1)); 291 return(255); 292 } 293 294 /* 295 * Look to see if the routing table claims this pin is uniquely routed. 296 */ 297 static int 298 pci_cfgintr_unique(struct PIR_entry *pe, int pin) 299 { 300 int irq; 301 302 if (powerof2(pe->pe_intpin[pin - 1].irqs)) { 303 irq = ffs(pe->pe_intpin[pin - 1].irqs) - 1; 304 PRVERB(("pci_cfgintr_unique: hard-routed to irq %d\n", irq)); 305 return(irq); 306 } 307 return(255); 308 } 309 310 /* 311 * Look for another device which shares the same link byte and 312 * already has a unique IRQ, or which has had one routed already. 313 */ 314 static int 315 pci_cfgintr_linked(struct PIR_entry *pe, int pin) 316 { 317 struct PIR_entry *oe; 318 struct PIR_intpin *pi; 319 int i, j, irq; 320 321 /* 322 * Scan table slots. 323 */ 324 for (i = 0, oe = &pci_route_table->pt_entry[0]; i < pci_route_count; i++, oe++) { 325 326 /* scan interrupt pins */ 327 for (j = 0, pi = &oe->pe_intpin[0]; j < 4; j++, pi++) { 328 329 /* don't look at the entry we're trying to match with */ 330 if ((pe == oe) && (i == (pin - 1))) 331 continue; 332 333 /* compare link bytes */ 334 if (pi->link != pe->pe_intpin[pin - 1].link) 335 continue; 336 337 /* link destination mapped to a unique interrupt? */ 338 if (powerof2(pi->irqs)) { 339 irq = ffs(pi->irqs) - 1; 340 PRVERB(("pci_cfgintr_linked: linked (%x) to hard-routed irq %d\n", 341 pi->link, irq)); 342 return(irq); 343 } 344 345 /* look for the real PCI device that matches this table entry */ 346 if ((irq = pci_cfgintr_search(pe, oe->pe_bus, oe->pe_device, j, pin)) != 255) 347 return(irq); 348 } 349 } 350 return(255); 351 } 352 353 /* 354 * Scan for the real PCI device at (bus)/(device) using intpin (matchpin) and 355 * see if it has already been assigned an interrupt. 356 */ 357 static int 358 pci_cfgintr_search(struct PIR_entry *pe, int bus, int device, int matchpin, int pin) 359 { 360 devclass_t pci_devclass; 361 device_t *pci_devices; 362 int pci_count; 363 device_t *pci_children; 364 int pci_childcount; 365 device_t *busp, *childp; 366 int i, j, irq; 367 368 /* 369 * Find all the PCI busses. 370 */ 371 pci_count = 0; 372 if ((pci_devclass = devclass_find("pci")) != NULL) 373 devclass_get_devices(pci_devclass, &pci_devices, &pci_count); 374 375 /* 376 * Scan all the PCI busses/devices looking for this one. 377 */ 378 irq = 255; 379 for (i = 0, busp = pci_devices; (i < pci_count) && (irq == 255); i++, busp++) { 380 pci_childcount = 0; 381 device_get_children(*busp, &pci_children, &pci_childcount); 382 383 for (j = 0, childp = pci_children; j < pci_childcount; j++, childp++) { 384 if ((pci_get_bus(*childp) == bus) && 385 (pci_get_slot(*childp) == device) && 386 (pci_get_intpin(*childp) == matchpin)) { 387 irq = pci_get_irq(*childp); 388 /* 389 * Some BIOS writers seem to want to ignore the spec and put 390 * 0 in the intline rather than 255 to indicate none. Once 391 * we've found one that matches, we break because there can 392 * be no others (which is why test looks a little odd). 393 */ 394 if (irq == 0) 395 irq = 255; 396 if (irq != 255) 397 PRVERB(("pci_cfgintr_search: linked (%x) to configured irq %d at %d:%d:%d\n", 398 pe->pe_intpin[pin - 1].link, irq, 399 pci_get_bus(*childp), pci_get_slot(*childp), pci_get_function(*childp))); 400 break; 401 } 402 } 403 if (pci_children != NULL) 404 free(pci_children, M_TEMP); 405 } 406 if (pci_devices != NULL) 407 free(pci_devices, M_TEMP); 408 return(irq); 409 } 410 411 /* 412 * Pick a suitable IRQ from those listed as routable to this device. 413 */ 414 static int 415 pci_cfgintr_virgin(struct PIR_entry *pe, int pin) 416 { 417 int irq, ibit; 418 419 /* first scan the set of PCI-only interrupts and see if any of these are routable */ 420 for (irq = 0; irq < 16; irq++) { 421 ibit = (1 << irq); 422 423 /* can we use this interrupt? */ 424 if ((pci_route_table->pt_header.ph_pci_irqs & ibit) && 425 (pe->pe_intpin[pin - 1].irqs & ibit)) { 426 PRVERB(("pci_cfgintr_virgin: using routable PCI-only interrupt %d\n", irq)); 427 return(irq); 428 } 429 } 430 431 /* life is tough, so just pick an interrupt */ 432 for (irq = 0; irq < 16; irq++) { 433 ibit = (1 << irq); 434 435 if (pe->pe_intpin[pin - 1].irqs & ibit) { 436 PRVERB(("pci_cfgintr_virgin: using routable interrupt %d\n", irq)); 437 return(irq); 438 } 439 } 440 return(255); 441 } 442 443 444 /* 445 * Config space access using BIOS functions 446 */ 447 static int 448 pcibios_cfgread(int bus, int slot, int func, int reg, int bytes) 449 { 450 struct bios_regs args; 451 u_int mask; 452 453 switch(bytes) { 454 case 1: 455 args.eax = PCIBIOS_READ_CONFIG_BYTE; 456 mask = 0xff; 457 break; 458 case 2: 459 args.eax = PCIBIOS_READ_CONFIG_WORD; 460 mask = 0xffff; 461 break; 462 case 4: 463 args.eax = PCIBIOS_READ_CONFIG_DWORD; 464 mask = 0xffffffff; 465 break; 466 default: 467 return(-1); 468 } 469 args.ebx = (bus << 8) | (slot << 3) | func; 470 args.edi = reg; 471 bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL)); 472 /* check call results? */ 473 return(args.ecx & mask); 474 } 475 476 static void 477 pcibios_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes) 478 { 479 struct bios_regs args; 480 481 switch(bytes) { 482 case 1: 483 args.eax = PCIBIOS_WRITE_CONFIG_BYTE; 484 break; 485 case 2: 486 args.eax = PCIBIOS_WRITE_CONFIG_WORD; 487 break; 488 case 4: 489 args.eax = PCIBIOS_WRITE_CONFIG_DWORD; 490 break; 491 default: 492 return; 493 } 494 args.ebx = (bus << 8) | (slot << 3) | func; 495 args.ecx = data; 496 args.edi = reg; 497 bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL)); 498 } 499 500 /* 501 * Determine whether there is a PCI BIOS present 502 */ 503 static int 504 pcibios_cfgopen(void) 505 { 506 u_int16_t v = 0; 507 508 if (PCIbios.entry != 0 && enable_pcibios) { 509 v = pcibios_get_version(); 510 if (v > 0) 511 printf("pcibios: BIOS version %x.%02x\n", (v & 0xff00) >> 8, 512 v & 0xff); 513 } 514 return (v > 0); 515 } 516 517 /* 518 * Configuration space access using direct register operations 519 */ 520 521 /* enable configuration space accesses and return data port address */ 522 static int 523 pci_cfgenable(unsigned bus, unsigned slot, unsigned func, int reg, int bytes) 524 { 525 int dataport = 0; 526 527 if (bus <= PCI_BUSMAX 528 && slot < devmax 529 && func <= PCI_FUNCMAX 530 && reg <= PCI_REGMAX 531 && bytes != 3 532 && (unsigned) bytes <= 4 533 && (reg & (bytes -1)) == 0) { 534 switch (cfgmech) { 535 case 1: 536 outl(CONF1_ADDR_PORT, (1 << 31) 537 | (bus << 16) | (slot << 11) 538 | (func << 8) | (reg & ~0x03)); 539 dataport = CONF1_DATA_PORT + (reg & 0x03); 540 break; 541 case 2: 542 outb(CONF2_ENABLE_PORT, 0xf0 | (func << 1)); 543 outb(CONF2_FORWARD_PORT, bus); 544 dataport = 0xc000 | (slot << 8) | reg; 545 break; 546 } 547 } 548 return (dataport); 549 } 550 551 /* disable configuration space accesses */ 552 static void 553 pci_cfgdisable(void) 554 { 555 switch (cfgmech) { 556 case 1: 557 outl(CONF1_ADDR_PORT, 0); 558 break; 559 case 2: 560 outb(CONF2_ENABLE_PORT, 0); 561 outb(CONF2_FORWARD_PORT, 0); 562 break; 563 } 564 } 565 566 static int 567 pcireg_cfgread(int bus, int slot, int func, int reg, int bytes) 568 { 569 int data = -1; 570 int port; 571 572 port = pci_cfgenable(bus, slot, func, reg, bytes); 573 574 if (port != 0) { 575 switch (bytes) { 576 case 1: 577 data = inb(port); 578 break; 579 case 2: 580 data = inw(port); 581 break; 582 case 4: 583 data = inl(port); 584 break; 585 } 586 pci_cfgdisable(); 587 } 588 return (data); 589 } 590 591 static void 592 pcireg_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes) 593 { 594 int port; 595 596 port = pci_cfgenable(bus, slot, func, reg, bytes); 597 if (port != 0) { 598 switch (bytes) { 599 case 1: 600 outb(port, data); 601 break; 602 case 2: 603 outw(port, data); 604 break; 605 case 4: 606 outl(port, data); 607 break; 608 } 609 pci_cfgdisable(); 610 } 611 } 612 613 /* check whether the configuration mechanism has been correctly identified */ 614 static int 615 pci_cfgcheck(int maxdev) 616 { 617 u_char device; 618 619 if (bootverbose) 620 printf("pci_cfgcheck:\tdevice "); 621 622 for (device = 0; device < maxdev; device++) { 623 unsigned id, class, header; 624 if (bootverbose) 625 printf("%d ", device); 626 627 id = inl(pci_cfgenable(0, device, 0, 0, 4)); 628 if (id == 0 || id == -1) 629 continue; 630 631 class = inl(pci_cfgenable(0, device, 0, 8, 4)) >> 8; 632 if (bootverbose) 633 printf("[class=%06x] ", class); 634 if (class == 0 || (class & 0xf870ff) != 0) 635 continue; 636 637 header = inb(pci_cfgenable(0, device, 0, 14, 1)); 638 if (bootverbose) 639 printf("[hdr=%02x] ", header); 640 if ((header & 0x7e) != 0) 641 continue; 642 643 if (bootverbose) 644 printf("is there (id=%08x)\n", id); 645 646 pci_cfgdisable(); 647 return (1); 648 } 649 if (bootverbose) 650 printf("-- nothing found\n"); 651 652 pci_cfgdisable(); 653 return (0); 654 } 655 656 static int 657 pcireg_cfgopen(void) 658 { 659 unsigned long mode1res,oldval1; 660 unsigned char mode2res,oldval2; 661 662 oldval1 = inl(CONF1_ADDR_PORT); 663 664 if (bootverbose) { 665 printf("pci_open(1):\tmode 1 addr port (0x0cf8) is 0x%08lx\n", 666 oldval1); 667 } 668 669 if ((oldval1 & CONF1_ENABLE_MSK) == 0) { 670 671 cfgmech = 1; 672 devmax = 32; 673 674 outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK); 675 outb(CONF1_ADDR_PORT +3, 0); 676 mode1res = inl(CONF1_ADDR_PORT); 677 outl(CONF1_ADDR_PORT, oldval1); 678 679 if (bootverbose) 680 printf("pci_open(1a):\tmode1res=0x%08lx (0x%08lx)\n", 681 mode1res, CONF1_ENABLE_CHK); 682 683 if (mode1res) { 684 if (pci_cfgcheck(32)) 685 return (cfgmech); 686 } 687 688 outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK1); 689 mode1res = inl(CONF1_ADDR_PORT); 690 outl(CONF1_ADDR_PORT, oldval1); 691 692 if (bootverbose) 693 printf("pci_open(1b):\tmode1res=0x%08lx (0x%08lx)\n", 694 mode1res, CONF1_ENABLE_CHK1); 695 696 if ((mode1res & CONF1_ENABLE_MSK1) == CONF1_ENABLE_RES1) { 697 if (pci_cfgcheck(32)) 698 return (cfgmech); 699 } 700 } 701 702 oldval2 = inb(CONF2_ENABLE_PORT); 703 704 if (bootverbose) { 705 printf("pci_open(2):\tmode 2 enable port (0x0cf8) is 0x%02x\n", 706 oldval2); 707 } 708 709 if ((oldval2 & 0xf0) == 0) { 710 711 cfgmech = 2; 712 devmax = 16; 713 714 outb(CONF2_ENABLE_PORT, CONF2_ENABLE_CHK); 715 mode2res = inb(CONF2_ENABLE_PORT); 716 outb(CONF2_ENABLE_PORT, oldval2); 717 718 if (bootverbose) 719 printf("pci_open(2a):\tmode2res=0x%02x (0x%02x)\n", 720 mode2res, CONF2_ENABLE_CHK); 721 722 if (mode2res == CONF2_ENABLE_RES) { 723 if (bootverbose) 724 printf("pci_open(2a):\tnow trying mechanism 2\n"); 725 726 if (pci_cfgcheck(16)) 727 return (cfgmech); 728 } 729 } 730 731 cfgmech = 0; 732 devmax = 0; 733 return (cfgmech); 734 } 735 736