xref: /freebsd/sys/i386/pci/pci_pir.c (revision ee2ea5ceafed78a5bd9810beb9e3ca927180c226)
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 $PIR is the
140      * standard way to do this.  Sadly, some machines are not
141      * standards conforming and have _PIR instead.  We shrug and cope
142      * by looking for both.
143      */
144     if (pcibios_get_version() >= 0x0210 && pt == NULL) {
145 	sigaddr = bios_sigsearch(0, "$PIR", 4, 16, 0);
146 	if (sigaddr == 0)
147 	    sigaddr = bios_sigsearch(0, "_PIR", 4, 16, 0);
148 	if (sigaddr != 0) {
149 	    pt = (struct PIR_table *)(uintptr_t)BIOS_PADDRTOVADDR(sigaddr);
150 	    for (cv = (u_int8_t *)pt, ck = 0, i = 0;
151 	      i < (pt->pt_header.ph_length); i++) {
152 		ck += cv[i];
153 	    }
154 	    if (ck == 0) {
155 		pci_route_table = pt;
156 		pci_route_count = (pt->pt_header.ph_length -
157 		  sizeof(struct PIR_header)) / sizeof(struct PIR_entry);
158 		printf("Using $PIR table, %d entries at %p\n",
159 		  pci_route_count, pci_route_table);
160 	    }
161 	}
162     }
163     opened = 1;
164     return(1);
165 }
166 
167 /*
168  * Read configuration space register
169  */
170 static u_int32_t
171 pci_do_cfgregread(int bus, int slot, int func, int reg, int bytes)
172 {
173     return(usebios ?
174 	   pcibios_cfgread(bus, slot, func, reg, bytes) :
175 	   pcireg_cfgread(bus, slot, func, reg, bytes));
176 }
177 
178 u_int32_t
179 pci_cfgregread(int bus, int slot, int func, int reg, int bytes)
180 {
181     uint32_t line, pin;
182 #ifdef APIC_IO
183     /*
184      * If we are using the APIC, the contents of the intline register will probably
185      * be wrong (since they are set up for use with the PIC.
186      * Rather than rewrite these registers (maybe that would be smarter) we trap
187      * attempts to read them and translate to our private vector numbers.
188      */
189     if ((reg == PCIR_INTLINE) && (bytes == 1)) {
190 
191 	pin = pci_do_cfgregread(bus, slot, func, PCIR_INTPIN, 1);
192 	line = pci_do_cfgregread(bus, slot, func, PCIR_INTLINE, 1);
193 
194 	if (pin != 0) {
195 	    int airq;
196 
197 	    airq = pci_apic_irq(bus, slot, pin);
198 	    if (airq >= 0) {
199 		/* PCI specific entry found in MP table */
200 		if (airq != line)
201 		    undirect_pci_irq(line);
202 		return(airq);
203 	    } else {
204 		/*
205 		 * PCI interrupts might be redirected to the
206 		 * ISA bus according to some MP tables. Use the
207 		 * same methods as used by the ISA devices
208 		 * devices to find the proper IOAPIC int pin.
209 		 */
210 		airq = isa_apic_irq(line);
211 		if ((airq >= 0) && (airq != line)) {
212 		    /* XXX: undirect_pci_irq() ? */
213 		    undirect_isa_irq(line);
214 		    return(airq);
215 		}
216 	    }
217 	}
218 	return(line);
219     }
220 #else
221     /*
222      * Some BIOS writers seem to want to ignore the spec and put
223      * 0 in the intline rather than 255 to indicate none.  The rest of
224      * the code uses 255 as an invalid IRQ.
225      */
226     if (reg == PCIR_INTLINE && bytes == 1) {
227 	line = pci_do_cfgregread(bus, slot, func, PCIR_INTLINE, 1);
228 	pin = pci_do_cfgregread(bus, slot, func, PCIR_INTPIN, 1);
229 	if (pin != 0 && (line == 0 || line >= 128))
230 	    return (255);
231     }
232 #endif /* APIC_IO */
233     return(pci_do_cfgregread(bus, slot, func, reg, bytes));
234 }
235 
236 /*
237  * Write configuration space register
238  */
239 void
240 pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes)
241 {
242     return(usebios ?
243 	   pcibios_cfgwrite(bus, slot, func, reg, data, bytes) :
244 	   pcireg_cfgwrite(bus, slot, func, reg, data, bytes));
245 }
246 
247 /*
248  * Route a PCI interrupt
249  *
250  * XXX we don't do anything "right" with the function number in the PIR table
251  *     (because the consumer isn't currently passing it in).  We don't care
252  *     anyway, due to the way PCI interrupts are assigned.
253  */
254 int
255 pci_cfgintr(int bus, int device, int pin)
256 {
257     struct PIR_entry	*pe;
258     int			i, irq;
259     struct bios_regs	args;
260     u_int16_t		v;
261     int already = 0;
262 
263     v = pcibios_get_version();
264     if (v < 0x0210) {
265 	PRVERB((
266 	  "pci_cfgintr: BIOS %x.%02x doesn't support interrupt routing\n",
267 	  (v & 0xff00) >> 8, v & 0xff));
268 	return (255);
269     }
270     if ((bus < 0) || (bus > 255) || (device < 0) || (device > 255) ||
271       (pin < 1) || (pin > 4))
272 	return(255);
273 
274     /*
275      * Scan the entry table for a contender
276      */
277     for (i = 0, pe = &pci_route_table->pt_entry[0]; i < pci_route_count; i++, pe++) {
278 	if ((bus != pe->pe_bus) || (device != pe->pe_device))
279 	    continue;
280 
281 	irq = pci_cfgintr_linked(pe, pin);
282 	if (irq == 255)
283 	    irq = pci_cfgintr_unique(pe, pin);
284 	if (irq != 255)
285 	     already = 1;
286 	if (irq == 255)
287 	    irq = pci_cfgintr_virgin(pe, pin);
288 	if (irq == 255)
289 	    break;
290 
291 	/*
292 	 * Ask the BIOS to route the interrupt
293 	 */
294 	args.eax = PCIBIOS_ROUTE_INTERRUPT;
295 	args.ebx = (bus << 8) | (device << 3);
296 	args.ecx = (irq << 8) | (0xa + pin - 1);	/* pin value is 0xa - 0xd */
297 	if (!already && bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL))) {
298 	    /*
299 	     * XXX if it fails, we should try to smack the router
300 	     * hardware directly.
301 	     * XXX Also, there may be other choices that we can try that
302 	     * will work.
303 	     */
304 	    PRVERB(("pci_cfgintr: ROUTE_INTERRUPT failed.\n"));
305 	    return(255);
306 	}
307 	printf("pci_cfgintr: %d:%d INT%c routed to irq %d\n", bus, device, 'A' + pin - 1, irq);
308 	return(irq);
309     }
310 
311     PRVERB(("pci_cfgintr: can't route an interrupt to %d:%d INT%c\n", bus, device, 'A' + pin - 1));
312     return(255);
313 }
314 
315 /*
316  * Look to see if the routing table claims this pin is uniquely routed.
317  */
318 static int
319 pci_cfgintr_unique(struct PIR_entry *pe, int pin)
320 {
321     int		irq;
322     uint32_t	irqmask;
323 
324     irqmask = pe->pe_intpin[pin - 1].irqs;
325     if (irqmask != 0 && powerof2(irqmask)) {
326 	irq = ffs(irqmask) - 1;
327 	PRVERB(("pci_cfgintr_unique: hard-routed to irq %d\n", irq));
328 	return(irq);
329     }
330     return(255);
331 }
332 
333 /*
334  * Look for another device which shares the same link byte and
335  * already has a unique IRQ, or which has had one routed already.
336  */
337 static int
338 pci_cfgintr_linked(struct PIR_entry *pe, int pin)
339 {
340     struct PIR_entry	*oe;
341     struct PIR_intpin	*pi;
342     int			i, j, irq;
343 
344     /*
345      * Scan table slots.
346      */
347     for (i = 0, oe = &pci_route_table->pt_entry[0]; i < pci_route_count; i++, oe++) {
348 
349 	/* scan interrupt pins */
350 	for (j = 0, pi = &oe->pe_intpin[0]; j < 4; j++, pi++) {
351 
352 	    /* don't look at the entry we're trying to match with */
353 	    if ((pe == oe) && (i == (pin - 1)))
354 		continue;
355 
356 	    /* compare link bytes */
357 	    if (pi->link != pe->pe_intpin[pin - 1].link)
358 		continue;
359 
360 	    /* link destination mapped to a unique interrupt? */
361 	    if (pi->irqs != 0 && powerof2(pi->irqs)) {
362 		irq = ffs(pi->irqs) - 1;
363 		PRVERB(("pci_cfgintr_linked: linked (%x) to hard-routed irq %d\n",
364 		       pi->link, irq));
365 		return(irq);
366 	    }
367 
368 	    /* look for the real PCI device that matches this table entry */
369 	    if ((irq = pci_cfgintr_search(pe, oe->pe_bus, oe->pe_device, j, pin)) != 255)
370 		return(irq);
371 	}
372     }
373     return(255);
374 }
375 
376 /*
377  * Scan for the real PCI device at (bus)/(device) using intpin (matchpin) and
378  * see if it has already been assigned an interrupt.
379  */
380 static int
381 pci_cfgintr_search(struct PIR_entry *pe, int bus, int device, int matchpin, int pin)
382 {
383     devclass_t		pci_devclass;
384     device_t		*pci_devices;
385     int			pci_count;
386     device_t		*pci_children;
387     int			pci_childcount;
388     device_t		*busp, *childp;
389     int			i, j, irq;
390 
391     /*
392      * Find all the PCI busses.
393      */
394     pci_count = 0;
395     if ((pci_devclass = devclass_find("pci")) != NULL)
396 	devclass_get_devices(pci_devclass, &pci_devices, &pci_count);
397 
398     /*
399      * Scan all the PCI busses/devices looking for this one.
400      */
401     irq = 255;
402     for (i = 0, busp = pci_devices; (i < pci_count) && (irq == 255); i++, busp++) {
403 	pci_childcount = 0;
404 	device_get_children(*busp, &pci_children, &pci_childcount);
405 
406 	for (j = 0, childp = pci_children; j < pci_childcount; j++, childp++) {
407 	    if ((pci_get_bus(*childp) == bus) &&
408 		(pci_get_slot(*childp) == device) &&
409 		(pci_get_intpin(*childp) == matchpin)) {
410 		irq = pci_get_irq(*childp);
411 		if (irq != 255)
412 		    PRVERB(("pci_cfgintr_search: linked (%x) to configured irq %d at %d:%d:%d\n",
413 		      pe->pe_intpin[pin - 1].link, irq,
414 		      pci_get_bus(*childp), pci_get_slot(*childp), pci_get_function(*childp)));
415 		break;
416 	    }
417 	}
418 	if (pci_children != NULL)
419 	    free(pci_children, M_TEMP);
420     }
421     if (pci_devices != NULL)
422 	free(pci_devices, M_TEMP);
423     return(irq);
424 }
425 
426 /*
427  * Pick a suitable IRQ from those listed as routable to this device.
428  */
429 static int
430 pci_cfgintr_virgin(struct PIR_entry *pe, int pin)
431 {
432     int		irq, ibit;
433 
434     /* first scan the set of PCI-only interrupts and see if any of these are routable */
435     for (irq = 0; irq < 16; irq++) {
436 	ibit = (1 << irq);
437 
438 	/* can we use this interrupt? */
439 	if ((pci_route_table->pt_header.ph_pci_irqs & ibit) &&
440 	    (pe->pe_intpin[pin - 1].irqs & ibit)) {
441 	    PRVERB(("pci_cfgintr_virgin: using routable PCI-only interrupt %d\n", irq));
442 	    return(irq);
443 	}
444     }
445 
446     /* life is tough, so just pick an interrupt */
447     for (irq = 0; irq < 16; irq++) {
448 	ibit = (1 << irq);
449 
450 	if (pe->pe_intpin[pin - 1].irqs & ibit) {
451 	    PRVERB(("pci_cfgintr_virgin: using routable interrupt %d\n", irq));
452 	    return(irq);
453 	}
454     }
455     return(255);
456 }
457 
458 
459 /*
460  * Config space access using BIOS functions
461  */
462 static int
463 pcibios_cfgread(int bus, int slot, int func, int reg, int bytes)
464 {
465     struct bios_regs args;
466     u_int mask;
467 
468     switch(bytes) {
469     case 1:
470 	args.eax = PCIBIOS_READ_CONFIG_BYTE;
471 	mask = 0xff;
472 	break;
473     case 2:
474 	args.eax = PCIBIOS_READ_CONFIG_WORD;
475 	mask = 0xffff;
476 	break;
477     case 4:
478 	args.eax = PCIBIOS_READ_CONFIG_DWORD;
479 	mask = 0xffffffff;
480 	break;
481     default:
482 	return(-1);
483     }
484     args.ebx = (bus << 8) | (slot << 3) | func;
485     args.edi = reg;
486     bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL));
487     /* check call results? */
488     return(args.ecx & mask);
489 }
490 
491 static void
492 pcibios_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes)
493 {
494     struct bios_regs args;
495 
496     switch(bytes) {
497     case 1:
498 	args.eax = PCIBIOS_WRITE_CONFIG_BYTE;
499 	break;
500     case 2:
501 	args.eax = PCIBIOS_WRITE_CONFIG_WORD;
502 	break;
503     case 4:
504 	args.eax = PCIBIOS_WRITE_CONFIG_DWORD;
505 	break;
506     default:
507 	return;
508     }
509     args.ebx = (bus << 8) | (slot << 3) | func;
510     args.ecx = data;
511     args.edi = reg;
512     bios32(&args, PCIbios.ventry, GSEL(GCODE_SEL, SEL_KPL));
513 }
514 
515 /*
516  * Determine whether there is a PCI BIOS present
517  */
518 static int
519 pcibios_cfgopen(void)
520 {
521     u_int16_t		v = 0;
522 
523     if (PCIbios.entry != 0 && enable_pcibios) {
524 	v = pcibios_get_version();
525 	if (v > 0)
526 	    printf("pcibios: BIOS version %x.%02x\n", (v & 0xff00) >> 8,
527 	      v & 0xff);
528     }
529     return (v > 0);
530 }
531 
532 /*
533  * Configuration space access using direct register operations
534  */
535 
536 /* enable configuration space accesses and return data port address */
537 static int
538 pci_cfgenable(unsigned bus, unsigned slot, unsigned func, int reg, int bytes)
539 {
540     int dataport = 0;
541 
542     if (bus <= PCI_BUSMAX
543 	&& slot < devmax
544 	&& func <= PCI_FUNCMAX
545 	&& reg <= PCI_REGMAX
546 	&& bytes != 3
547 	&& (unsigned) bytes <= 4
548 	&& (reg & (bytes -1)) == 0) {
549 	switch (cfgmech) {
550 	case 1:
551 	    outl(CONF1_ADDR_PORT, (1 << 31)
552 		 | (bus << 16) | (slot << 11)
553 		 | (func << 8) | (reg & ~0x03));
554 	    dataport = CONF1_DATA_PORT + (reg & 0x03);
555 	    break;
556 	case 2:
557 	    outb(CONF2_ENABLE_PORT, 0xf0 | (func << 1));
558 	    outb(CONF2_FORWARD_PORT, bus);
559 	    dataport = 0xc000 | (slot << 8) | reg;
560 	    break;
561 	}
562     }
563     return (dataport);
564 }
565 
566 /* disable configuration space accesses */
567 static void
568 pci_cfgdisable(void)
569 {
570     switch (cfgmech) {
571     case 1:
572 	outl(CONF1_ADDR_PORT, 0);
573 	break;
574     case 2:
575 	outb(CONF2_ENABLE_PORT, 0);
576 	outb(CONF2_FORWARD_PORT, 0);
577 	break;
578     }
579 }
580 
581 static int
582 pcireg_cfgread(int bus, int slot, int func, int reg, int bytes)
583 {
584     int data = -1;
585     int port;
586 
587     port = pci_cfgenable(bus, slot, func, reg, bytes);
588 
589     if (port != 0) {
590 	switch (bytes) {
591 	case 1:
592 	    data = inb(port);
593 	    break;
594 	case 2:
595 	    data = inw(port);
596 	    break;
597 	case 4:
598 	    data = inl(port);
599 	    break;
600 	}
601 	pci_cfgdisable();
602     }
603     return (data);
604 }
605 
606 static void
607 pcireg_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes)
608 {
609     int port;
610 
611     port = pci_cfgenable(bus, slot, func, reg, bytes);
612     if (port != 0) {
613 	switch (bytes) {
614 	case 1:
615 	    outb(port, data);
616 	    break;
617 	case 2:
618 	    outw(port, data);
619 	    break;
620 	case 4:
621 	    outl(port, data);
622 	    break;
623 	}
624 	pci_cfgdisable();
625     }
626 }
627 
628 /* check whether the configuration mechanism has been correctly identified */
629 static int
630 pci_cfgcheck(int maxdev)
631 {
632     u_char device;
633 
634     if (bootverbose)
635 	printf("pci_cfgcheck:\tdevice ");
636 
637     for (device = 0; device < maxdev; device++) {
638 	unsigned id, class, header;
639 	if (bootverbose)
640 	    printf("%d ", device);
641 
642 	id = inl(pci_cfgenable(0, device, 0, 0, 4));
643 	if (id == 0 || id == -1)
644 	    continue;
645 
646 	class = inl(pci_cfgenable(0, device, 0, 8, 4)) >> 8;
647 	if (bootverbose)
648 	    printf("[class=%06x] ", class);
649 	if (class == 0 || (class & 0xf870ff) != 0)
650 	    continue;
651 
652 	header = inb(pci_cfgenable(0, device, 0, 14, 1));
653 	if (bootverbose)
654 	    printf("[hdr=%02x] ", header);
655 	if ((header & 0x7e) != 0)
656 	    continue;
657 
658 	if (bootverbose)
659 	    printf("is there (id=%08x)\n", id);
660 
661 	pci_cfgdisable();
662 	return (1);
663     }
664     if (bootverbose)
665 	printf("-- nothing found\n");
666 
667     pci_cfgdisable();
668     return (0);
669 }
670 
671 static int
672 pcireg_cfgopen(void)
673 {
674     unsigned long mode1res,oldval1;
675     unsigned char mode2res,oldval2;
676 
677     oldval1 = inl(CONF1_ADDR_PORT);
678 
679     if (bootverbose) {
680 	printf("pci_open(1):\tmode 1 addr port (0x0cf8) is 0x%08lx\n",
681 	       oldval1);
682     }
683 
684     if ((oldval1 & CONF1_ENABLE_MSK) == 0) {
685 
686 	cfgmech = 1;
687 	devmax = 32;
688 
689 	outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK);
690 	outb(CONF1_ADDR_PORT +3, 0);
691 	mode1res = inl(CONF1_ADDR_PORT);
692 	outl(CONF1_ADDR_PORT, oldval1);
693 
694 	if (bootverbose)
695 	    printf("pci_open(1a):\tmode1res=0x%08lx (0x%08lx)\n",
696 		   mode1res, CONF1_ENABLE_CHK);
697 
698 	if (mode1res) {
699 	    if (pci_cfgcheck(32))
700 		return (cfgmech);
701 	}
702 
703 	outl(CONF1_ADDR_PORT, CONF1_ENABLE_CHK1);
704 	mode1res = inl(CONF1_ADDR_PORT);
705 	outl(CONF1_ADDR_PORT, oldval1);
706 
707 	if (bootverbose)
708 	    printf("pci_open(1b):\tmode1res=0x%08lx (0x%08lx)\n",
709 		   mode1res, CONF1_ENABLE_CHK1);
710 
711 	if ((mode1res & CONF1_ENABLE_MSK1) == CONF1_ENABLE_RES1) {
712 	    if (pci_cfgcheck(32))
713 		return (cfgmech);
714 	}
715     }
716 
717     oldval2 = inb(CONF2_ENABLE_PORT);
718 
719     if (bootverbose) {
720 	printf("pci_open(2):\tmode 2 enable port (0x0cf8) is 0x%02x\n",
721 	       oldval2);
722     }
723 
724     if ((oldval2 & 0xf0) == 0) {
725 
726 	cfgmech = 2;
727 	devmax = 16;
728 
729 	outb(CONF2_ENABLE_PORT, CONF2_ENABLE_CHK);
730 	mode2res = inb(CONF2_ENABLE_PORT);
731 	outb(CONF2_ENABLE_PORT, oldval2);
732 
733 	if (bootverbose)
734 	    printf("pci_open(2a):\tmode2res=0x%02x (0x%02x)\n",
735 		   mode2res, CONF2_ENABLE_CHK);
736 
737 	if (mode2res == CONF2_ENABLE_RES) {
738 	    if (bootverbose)
739 		printf("pci_open(2a):\tnow trying mechanism 2\n");
740 
741 	    if (pci_cfgcheck(16))
742 		return (cfgmech);
743 	}
744     }
745 
746     cfgmech = 0;
747     devmax = 0;
748     return (cfgmech);
749 }
750 
751