1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
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
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD$");
31
32#include "opt_cpu.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37#include <sys/kernel.h>
38#include <sys/malloc.h>
39#include <sys/module.h>
40#include <sys/rman.h>
41#include <sys/sysctl.h>
42
43#include <dev/pci/pcivar.h>
44#include <dev/pci/pcireg.h>
45#include <dev/pci/pcib_private.h>
46#include <isa/isavar.h>
47#ifdef CPU_ELAN
48#include <machine/md_var.h>
49#endif
50#include <x86/legacyvar.h>
51#include <machine/pci_cfgreg.h>
52#include <machine/resource.h>
53
54#include "pcib_if.h"
55
56int
57legacy_pcib_maxslots(device_t dev)
58{
59	return 31;
60}
61
62/* read configuration space register */
63
64uint32_t
65legacy_pcib_read_config(device_t dev, u_int bus, u_int slot, u_int func,
66			u_int reg, int bytes)
67{
68	return(pci_cfgregread(bus, slot, func, reg, bytes));
69}
70
71/* write configuration space register */
72
73void
74legacy_pcib_write_config(device_t dev, u_int bus, u_int slot, u_int func,
75			 u_int reg, uint32_t data, int bytes)
76{
77	pci_cfgregwrite(bus, slot, func, reg, data, bytes);
78}
79
80/* route interrupt */
81
82static int
83legacy_pcib_route_interrupt(device_t pcib, device_t dev, int pin)
84{
85
86#ifdef __HAVE_PIR
87	return (pci_pir_route_interrupt(pci_get_bus(dev), pci_get_slot(dev),
88	    pci_get_function(dev), pin));
89#else
90	/* No routing possible */
91	return (PCI_INVALID_IRQ);
92#endif
93}
94
95/* Pass MSI requests up to the nexus. */
96
97int
98legacy_pcib_alloc_msi(device_t pcib, device_t dev, int count, int maxcount,
99    int *irqs)
100{
101	device_t bus;
102
103	bus = device_get_parent(pcib);
104	return (PCIB_ALLOC_MSI(device_get_parent(bus), dev, count, maxcount,
105	    irqs));
106}
107
108int
109legacy_pcib_alloc_msix(device_t pcib, device_t dev, int *irq)
110{
111	device_t bus;
112
113	bus = device_get_parent(pcib);
114	return (PCIB_ALLOC_MSIX(device_get_parent(bus), dev, irq));
115}
116
117int
118legacy_pcib_map_msi(device_t pcib, device_t dev, int irq, uint64_t *addr,
119    uint32_t *data)
120{
121	device_t bus, hostb;
122	int error, func, slot;
123
124	bus = device_get_parent(pcib);
125	error = PCIB_MAP_MSI(device_get_parent(bus), dev, irq, addr, data);
126	if (error)
127		return (error);
128
129	slot = legacy_get_pcislot(pcib);
130	func = legacy_get_pcifunc(pcib);
131	if (slot == -1 || func == -1)
132		return (0);
133	hostb = pci_find_bsf(0, slot, func);
134	KASSERT(hostb != NULL, ("%s: missing hostb for 0:%d:%d", __func__,
135	    slot, func));
136	pci_ht_map_msi(hostb, *addr);
137	return (0);
138}
139
140static const char *
141legacy_pcib_is_host_bridge(int bus, int slot, int func,
142			  uint32_t id, uint8_t class, uint8_t subclass,
143			  uint8_t *busnum)
144{
145#ifdef __i386__
146	const char *s = NULL;
147	static uint8_t pxb[4];	/* hack for 450nx */
148
149	*busnum = 0;
150
151	switch (id) {
152	case 0x12258086:
153		s = "Intel 824?? host to PCI bridge";
154		/* XXX This is a guess */
155		/* *busnum = legacy_pcib_read_config(0, bus, slot, func, 0x41, 1); */
156		*busnum = bus;
157		break;
158	case 0x71208086:
159		s = "Intel 82810 (i810 GMCH) Host To Hub bridge";
160		break;
161	case 0x71228086:
162		s = "Intel 82810-DC100 (i810-DC100 GMCH) Host To Hub bridge";
163		break;
164	case 0x71248086:
165		s = "Intel 82810E (i810E GMCH) Host To Hub bridge";
166		break;
167	case 0x11308086:
168		s = "Intel 82815 (i815 GMCH) Host To Hub bridge";
169		break;
170	case 0x71808086:
171		s = "Intel 82443LX (440 LX) host to PCI bridge";
172		break;
173	case 0x71908086:
174		s = "Intel 82443BX (440 BX) host to PCI bridge";
175		break;
176	case 0x71928086:
177		s = "Intel 82443BX host to PCI bridge (AGP disabled)";
178		break;
179	case 0x71948086:
180		s = "Intel 82443MX host to PCI bridge";
181		break;
182	case 0x71a08086:
183		s = "Intel 82443GX host to PCI bridge";
184		break;
185	case 0x71a18086:
186		s = "Intel 82443GX host to AGP bridge";
187		break;
188	case 0x71a28086:
189		s = "Intel 82443GX host to PCI bridge (AGP disabled)";
190		break;
191	case 0x84c48086:
192		s = "Intel 82454KX/GX (Orion) host to PCI bridge";
193		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x4a, 1);
194		break;
195	case 0x84ca8086:
196		/*
197		 * For the 450nx chipset, there is a whole bundle of
198		 * things pretending to be host bridges. The MIOC will
199		 * be seen first and isn't really a pci bridge (the
200		 * actual buses are attached to the PXB's). We need to
201		 * read the registers of the MIOC to figure out the
202		 * bus numbers for the PXB channels.
203		 *
204		 * Since the MIOC doesn't have a pci bus attached, we
205		 * pretend it wasn't there.
206		 */
207		pxb[0] = legacy_pcib_read_config(0, bus, slot, func,
208						0xd0, 1); /* BUSNO[0] */
209		pxb[1] = legacy_pcib_read_config(0, bus, slot, func,
210						0xd1, 1) + 1;	/* SUBA[0]+1 */
211		pxb[2] = legacy_pcib_read_config(0, bus, slot, func,
212						0xd3, 1); /* BUSNO[1] */
213		pxb[3] = legacy_pcib_read_config(0, bus, slot, func,
214						0xd4, 1) + 1;	/* SUBA[1]+1 */
215		return NULL;
216	case 0x84cb8086:
217		switch (slot) {
218		case 0x12:
219			s = "Intel 82454NX PXB#0, Bus#A";
220			*busnum = pxb[0];
221			break;
222		case 0x13:
223			s = "Intel 82454NX PXB#0, Bus#B";
224			*busnum = pxb[1];
225			break;
226		case 0x14:
227			s = "Intel 82454NX PXB#1, Bus#A";
228			*busnum = pxb[2];
229			break;
230		case 0x15:
231			s = "Intel 82454NX PXB#1, Bus#B";
232			*busnum = pxb[3];
233			break;
234		}
235		break;
236	case 0x1A308086:
237		s = "Intel 82845 Host to PCI bridge";
238		break;
239
240		/* AMD -- vendor 0x1022 */
241	case 0x30001022:
242		s = "AMD Elan SC520 host to PCI bridge";
243#ifdef CPU_ELAN
244		init_AMD_Elan_sc520();
245#else
246		printf(
247"*** WARNING: missing CPU_ELAN -- timekeeping may be wrong\n");
248#endif
249		break;
250	case 0x70061022:
251		s = "AMD-751 host to PCI bridge";
252		break;
253	case 0x700e1022:
254		s = "AMD-761 host to PCI bridge";
255		break;
256
257		/* SiS -- vendor 0x1039 */
258	case 0x04961039:
259		s = "SiS 85c496";
260		break;
261	case 0x04061039:
262		s = "SiS 85c501";
263		break;
264	case 0x06011039:
265		s = "SiS 85c601";
266		break;
267	case 0x55911039:
268		s = "SiS 5591 host to PCI bridge";
269		break;
270	case 0x00011039:
271		s = "SiS 5591 host to AGP bridge";
272		break;
273
274		/* VLSI -- vendor 0x1004 */
275	case 0x00051004:
276		s = "VLSI 82C592 Host to PCI bridge";
277		break;
278
279		/* XXX Here is MVP3, I got the datasheet but NO M/B to test it  */
280		/* totally. Please let me know if anything wrong.            -F */
281		/* XXX need info on the MVP3 -- any takers? */
282	case 0x05981106:
283		s = "VIA 82C598MVP (Apollo MVP3) host bridge";
284		break;
285
286		/* AcerLabs -- vendor 0x10b9 */
287		/* Funny : The datasheet told me vendor id is "10b8",sub-vendor */
288		/* id is '10b9" but the register always shows "10b9". -Foxfair  */
289	case 0x154110b9:
290		s = "AcerLabs M1541 (Aladdin-V) PCI host bridge";
291		break;
292
293		/* OPTi -- vendor 0x1045 */
294	case 0xc7011045:
295		s = "OPTi 82C700 host to PCI bridge";
296		break;
297	case 0xc8221045:
298		s = "OPTi 82C822 host to PCI Bridge";
299		break;
300
301		/* ServerWorks -- vendor 0x1166 */
302	case 0x00051166:
303		s = "ServerWorks NB6536 2.0HE host to PCI bridge";
304		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
305		break;
306
307	case 0x00061166:
308		/* FALLTHROUGH */
309	case 0x00081166:
310		/* FALLTHROUGH */
311	case 0x02011166:
312		/* FALLTHROUGH */
313	case 0x010f1014: /* IBM re-badged ServerWorks chipset */
314		s = "ServerWorks host to PCI bridge";
315		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
316		break;
317
318	case 0x00091166:
319		s = "ServerWorks NB6635 3.0LE host to PCI bridge";
320		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
321		break;
322
323	case 0x00101166:
324		s = "ServerWorks CIOB30 host to PCI bridge";
325		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
326		break;
327
328	case 0x00111166:
329		/* FALLTHROUGH */
330	case 0x03021014: /* IBM re-badged ServerWorks chipset */
331		s = "ServerWorks CMIC-HE host to PCI-X bridge";
332		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
333		break;
334
335		/* XXX unknown chipset, but working */
336	case 0x00171166:
337		/* FALLTHROUGH */
338	case 0x01011166:
339	case 0x01101166:
340	case 0x02251166:
341		s = "ServerWorks host to PCI bridge(unknown chipset)";
342		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
343		break;
344
345		/* Compaq/HP -- vendor 0x0e11 */
346	case 0x60100e11:
347		s = "Compaq/HP Model 6010 HotPlug PCI Bridge";
348		*busnum = legacy_pcib_read_config(0, bus, slot, func, 0xc8, 1);
349		break;
350
351		/* Integrated Micro Solutions -- vendor 0x10e0 */
352	case 0x884910e0:
353		s = "Integrated Micro Solutions VL Bridge";
354		break;
355
356	default:
357		if (class == PCIC_BRIDGE && subclass == PCIS_BRIDGE_HOST)
358			s = "Host to PCI bridge";
359		break;
360	}
361
362	return s;
363#else
364	const char *s = NULL;
365
366	*busnum = 0;
367	if (class == PCIC_BRIDGE && subclass == PCIS_BRIDGE_HOST)
368		s = "Host to PCI bridge";
369	return s;
370#endif
371}
372
373/*
374 * Scan the first pci bus for host-pci bridges and add pcib instances
375 * to the nexus for each bridge.
376 */
377static void
378legacy_pcib_identify(driver_t *driver, device_t parent)
379{
380	int bus, slot, func;
381	uint8_t  hdrtype;
382	int found = 0;
383	int pcifunchigh;
384	int found824xx = 0;
385	int found_orion = 0;
386	device_t child;
387	devclass_t pci_devclass;
388
389	if (pci_cfgregopen() == 0)
390		return;
391	/*
392	 * Check to see if we haven't already had a PCI bus added
393	 * via some other means.  If we have, bail since otherwise
394	 * we're going to end up duplicating it.
395	 */
396	if ((pci_devclass = devclass_find("pci")) &&
397		devclass_get_device(pci_devclass, 0))
398		return;
399
400	bus = 0;
401 retry:
402	for (slot = 0; slot <= PCI_SLOTMAX; slot++) {
403		func = 0;
404		hdrtype = legacy_pcib_read_config(0, bus, slot, func,
405						 PCIR_HDRTYPE, 1);
406		/*
407		 * When enumerating bus devices, the standard says that
408		 * one should check the header type and ignore the slots whose
409		 * header types that the software doesn't know about.  We use
410		 * this to filter out devices.
411		 */
412		if ((hdrtype & PCIM_HDRTYPE) > PCI_MAXHDRTYPE)
413			continue;
414		if ((hdrtype & PCIM_MFDEV) &&
415		    (!found_orion || hdrtype != 0xff))
416			pcifunchigh = PCI_FUNCMAX;
417		else
418			pcifunchigh = 0;
419		for (func = 0; func <= pcifunchigh; func++) {
420			/*
421			 * Read the IDs and class from the device.
422			 */
423			uint32_t id;
424			uint8_t class, subclass, busnum;
425			const char *s;
426			device_t *devs;
427			int ndevs, i;
428
429			id = legacy_pcib_read_config(0, bus, slot, func,
430						    PCIR_DEVVENDOR, 4);
431			if (id == -1)
432				continue;
433			class = legacy_pcib_read_config(0, bus, slot, func,
434						       PCIR_CLASS, 1);
435			subclass = legacy_pcib_read_config(0, bus, slot, func,
436							  PCIR_SUBCLASS, 1);
437
438			s = legacy_pcib_is_host_bridge(bus, slot, func,
439						      id, class, subclass,
440						      &busnum);
441			if (s == NULL)
442				continue;
443
444			/*
445			 * Check to see if the physical bus has already
446			 * been seen.  Eg: hybrid 32 and 64 bit host
447			 * bridges to the same logical bus.
448			 */
449			if (device_get_children(parent, &devs, &ndevs) == 0) {
450				for (i = 0; s != NULL && i < ndevs; i++) {
451					if (strcmp(device_get_name(devs[i]),
452					    "pcib") != 0)
453						continue;
454					if (legacy_get_pcibus(devs[i]) == busnum)
455						s = NULL;
456				}
457				free(devs, M_TEMP);
458			}
459
460			if (s == NULL)
461				continue;
462			/*
463			 * Add at priority 100 to make sure we
464			 * go after any motherboard resources
465			 */
466			child = BUS_ADD_CHILD(parent, 100,
467					      "pcib", busnum);
468			device_set_desc(child, s);
469			legacy_set_pcibus(child, busnum);
470			legacy_set_pcislot(child, slot);
471			legacy_set_pcifunc(child, func);
472
473			found = 1;
474			if (id == 0x12258086)
475				found824xx = 1;
476			if (id == 0x84c48086)
477				found_orion = 1;
478		}
479	}
480	if (found824xx && bus == 0) {
481		bus++;
482		goto retry;
483	}
484
485	/*
486	 * Make sure we add at least one bridge since some old
487	 * hardware doesn't actually have a host-pci bridge device.
488	 * Note that pci_cfgregopen() thinks we have PCI devices..
489	 */
490	if (!found) {
491		if (bootverbose)
492			printf(
493	"legacy_pcib_identify: no bridge found, adding pcib0 anyway\n");
494		child = BUS_ADD_CHILD(parent, 100, "pcib", 0);
495		legacy_set_pcibus(child, 0);
496	}
497}
498
499static int
500legacy_pcib_probe(device_t dev)
501{
502
503	if (pci_cfgregopen() == 0)
504		return ENXIO;
505	return -100;
506}
507
508static int
509legacy_pcib_attach(device_t dev)
510{
511#ifdef __HAVE_PIR
512	device_t pir;
513#endif
514	int bus;
515
516	bus = pcib_get_bus(dev);
517#ifdef __HAVE_PIR
518	/*
519	 * Look for a PCI BIOS interrupt routing table as that will be
520	 * our method of routing interrupts if we have one.
521	 */
522	if (pci_pir_probe(bus, 0)) {
523		pir = BUS_ADD_CHILD(device_get_parent(dev), 0, "pir", 0);
524		if (pir != NULL)
525			device_probe_and_attach(pir);
526	}
527#endif
528	device_add_child(dev, "pci", -1);
529	return bus_generic_attach(dev);
530}
531
532int
533legacy_pcib_read_ivar(device_t dev, device_t child, int which,
534    uintptr_t *result)
535{
536
537	switch (which) {
538	case  PCIB_IVAR_DOMAIN:
539		*result = 0;
540		return 0;
541	case  PCIB_IVAR_BUS:
542		*result = legacy_get_pcibus(dev);
543		return 0;
544	}
545	return ENOENT;
546}
547
548int
549legacy_pcib_write_ivar(device_t dev, device_t child, int which,
550    uintptr_t value)
551{
552
553	switch (which) {
554	case  PCIB_IVAR_DOMAIN:
555		return EINVAL;
556	case  PCIB_IVAR_BUS:
557		legacy_set_pcibus(dev, value);
558		return 0;
559	}
560	return ENOENT;
561}
562
563/*
564 * Helper routine for x86 Host-PCI bridge driver resource allocation.
565 * This is used to adjust the start address of wildcard allocation
566 * requests to avoid low addresses that are known to be problematic.
567 *
568 * If no memory preference is given, use upper 32MB slot most BIOSes
569 * use for their memory window.  This is typically only used on older
570 * laptops that don't have PCI buses behind a PCI bridge, so assuming
571 * > 32MB is likely OK.
572 *
573 * However, this can cause problems for other chipsets, so we make
574 * this tunable by hw.pci.host_mem_start.
575 */
576SYSCTL_DECL(_hw_pci);
577
578static unsigned long host_mem_start = 0x80000000;
579SYSCTL_ULONG(_hw_pci, OID_AUTO, host_mem_start, CTLFLAG_RDTUN, &host_mem_start,
580    0, "Limit the host bridge memory to being above this address.");
581
582rman_res_t
583hostb_alloc_start(int type, rman_res_t start, rman_res_t end, rman_res_t count)
584{
585
586	if (start + count - 1 != end) {
587		if (type == SYS_RES_MEMORY && start < host_mem_start)
588			start = host_mem_start;
589		if (type == SYS_RES_IOPORT && start < 0x1000)
590			start = 0x1000;
591	}
592	return (start);
593}
594
595struct resource *
596legacy_pcib_alloc_resource(device_t dev, device_t child, int type, int *rid,
597    rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
598{
599
600#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
601	if (type == PCI_RES_BUS)
602		return (pci_domain_alloc_bus(0, child, rid, start, end, count,
603		    flags));
604#endif
605	start = hostb_alloc_start(type, start, end, count);
606	return (bus_generic_alloc_resource(dev, child, type, rid, start, end,
607	    count, flags));
608}
609
610#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
611int
612legacy_pcib_adjust_resource(device_t dev, device_t child, int type,
613    struct resource *r, rman_res_t start, rman_res_t end)
614{
615
616	if (type == PCI_RES_BUS)
617		return (pci_domain_adjust_bus(0, child, r, start, end));
618	return (bus_generic_adjust_resource(dev, child, type, r, start, end));
619}
620
621int
622legacy_pcib_release_resource(device_t dev, device_t child, int type, int rid,
623    struct resource *r)
624{
625
626	if (type == PCI_RES_BUS)
627		return (pci_domain_release_bus(0, child, rid, r));
628	return (bus_generic_release_resource(dev, child, type, rid, r));
629}
630#endif
631
632static device_method_t legacy_pcib_methods[] = {
633	/* Device interface */
634	DEVMETHOD(device_identify,	legacy_pcib_identify),
635	DEVMETHOD(device_probe,		legacy_pcib_probe),
636	DEVMETHOD(device_attach,	legacy_pcib_attach),
637	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
638	DEVMETHOD(device_suspend,	bus_generic_suspend),
639	DEVMETHOD(device_resume,	bus_generic_resume),
640
641	/* Bus interface */
642	DEVMETHOD(bus_read_ivar,	legacy_pcib_read_ivar),
643	DEVMETHOD(bus_write_ivar,	legacy_pcib_write_ivar),
644	DEVMETHOD(bus_alloc_resource,	legacy_pcib_alloc_resource),
645#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
646	DEVMETHOD(bus_adjust_resource,	legacy_pcib_adjust_resource),
647	DEVMETHOD(bus_release_resource,	legacy_pcib_release_resource),
648#else
649	DEVMETHOD(bus_adjust_resource,	bus_generic_adjust_resource),
650	DEVMETHOD(bus_release_resource,	bus_generic_release_resource),
651#endif
652	DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
653	DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
654	DEVMETHOD(bus_setup_intr,	bus_generic_setup_intr),
655	DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
656
657	/* pcib interface */
658	DEVMETHOD(pcib_maxslots,	legacy_pcib_maxslots),
659	DEVMETHOD(pcib_read_config,	legacy_pcib_read_config),
660	DEVMETHOD(pcib_write_config,	legacy_pcib_write_config),
661	DEVMETHOD(pcib_route_interrupt,	legacy_pcib_route_interrupt),
662	DEVMETHOD(pcib_alloc_msi,	legacy_pcib_alloc_msi),
663	DEVMETHOD(pcib_release_msi,	pcib_release_msi),
664	DEVMETHOD(pcib_alloc_msix,	legacy_pcib_alloc_msix),
665	DEVMETHOD(pcib_release_msix,	pcib_release_msix),
666	DEVMETHOD(pcib_map_msi,		legacy_pcib_map_msi),
667	DEVMETHOD(pcib_request_feature,	pcib_request_feature_allow),
668
669	DEVMETHOD_END
670};
671
672static devclass_t hostb_devclass;
673
674DEFINE_CLASS_0(pcib, legacy_pcib_driver, legacy_pcib_methods, 1);
675DRIVER_MODULE(pcib, legacy, legacy_pcib_driver, hostb_devclass, 0, 0);
676
677/*
678 * Install placeholder to claim the resources owned by the
679 * PCI bus interface.  This could be used to extract the
680 * config space registers in the extreme case where the PnP
681 * ID is available and the PCI BIOS isn't, but for now we just
682 * eat the PnP ID and do nothing else.
683 *
684 * we silence this probe, as it will generally confuse people.
685 */
686static struct isa_pnp_id pcibus_pnp_ids[] = {
687	{ 0x030ad041 /* PNP0A03 */, "PCI Bus" },
688	{ 0x080ad041 /* PNP0A08 */, "PCIe Bus" },
689	{ 0 }
690};
691
692static int
693pcibus_pnp_probe(device_t dev)
694{
695	int result;
696
697	if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, pcibus_pnp_ids)) <= 0)
698		device_quiet(dev);
699	return(result);
700}
701
702static int
703pcibus_pnp_attach(device_t dev)
704{
705	return(0);
706}
707
708static device_method_t pcibus_pnp_methods[] = {
709	/* Device interface */
710	DEVMETHOD(device_probe,		pcibus_pnp_probe),
711	DEVMETHOD(device_attach,	pcibus_pnp_attach),
712	DEVMETHOD(device_detach,	bus_generic_detach),
713	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
714	DEVMETHOD(device_suspend,	bus_generic_suspend),
715	DEVMETHOD(device_resume,	bus_generic_resume),
716	{ 0, 0 }
717};
718
719static devclass_t pcibus_pnp_devclass;
720
721DEFINE_CLASS_0(pcibus_pnp, pcibus_pnp_driver, pcibus_pnp_methods, 1);
722DRIVER_MODULE(pcibus_pnp, isa, pcibus_pnp_driver, pcibus_pnp_devclass, 0, 0);
723
724#ifdef __HAVE_PIR
725/*
726 * Provide a PCI-PCI bridge driver for PCI buses behind PCI-PCI bridges
727 * that appear in the PCIBIOS Interrupt Routing Table to use the routing
728 * table for interrupt routing when possible.
729 */
730static int	pcibios_pcib_probe(device_t bus);
731
732static device_method_t pcibios_pcib_pci_methods[] = {
733	/* Device interface */
734	DEVMETHOD(device_probe,		pcibios_pcib_probe),
735
736	/* pcib interface */
737	DEVMETHOD(pcib_route_interrupt,	legacy_pcib_route_interrupt),
738	{0, 0}
739};
740
741static devclass_t pcib_devclass;
742
743DEFINE_CLASS_1(pcib, pcibios_pcib_driver, pcibios_pcib_pci_methods,
744    sizeof(struct pcib_softc), pcib_driver);
745DRIVER_MODULE(pcibios_pcib, pci, pcibios_pcib_driver, pcib_devclass, 0, 0);
746ISA_PNP_INFO(pcibus_pnp_ids);
747
748static int
749pcibios_pcib_probe(device_t dev)
750{
751	int bus;
752
753	if ((pci_get_class(dev) != PCIC_BRIDGE) ||
754	    (pci_get_subclass(dev) != PCIS_BRIDGE_PCI))
755		return (ENXIO);
756	bus = pci_read_config(dev, PCIR_SECBUS_1, 1);
757	if (bus == 0)
758		return (ENXIO);
759	if (!pci_pir_probe(bus, 1))
760		return (ENXIO);
761	device_set_desc(dev, "PCIBIOS PCI-PCI bridge");
762	return (-2000);
763}
764#endif
765