pci_subr.c revision 181798
1/*-
2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier
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, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 *    derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/sys/dev/pci/pci_pci.c 181798 2008-08-17 17:34:07Z imp $");
33
34/*
35 * PCI:PCI bridge support.
36 */
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/kernel.h>
41#include <sys/module.h>
42#include <sys/bus.h>
43#include <machine/bus.h>
44#include <sys/rman.h>
45#include <sys/sysctl.h>
46
47#include <machine/resource.h>
48
49#include <dev/pci/pcivar.h>
50#include <dev/pci/pcireg.h>
51#include <dev/pci/pcib_private.h>
52
53#include "pcib_if.h"
54
55static int		pcib_probe(device_t dev);
56
57static device_method_t pcib_methods[] = {
58    /* Device interface */
59    DEVMETHOD(device_probe,		pcib_probe),
60    DEVMETHOD(device_attach,		pcib_attach),
61    DEVMETHOD(device_detach,		bus_generic_detach),
62    DEVMETHOD(device_shutdown,		bus_generic_shutdown),
63    DEVMETHOD(device_suspend,		bus_generic_suspend),
64    DEVMETHOD(device_resume,		bus_generic_resume),
65
66    /* Bus interface */
67    DEVMETHOD(bus_print_child,		bus_generic_print_child),
68    DEVMETHOD(bus_read_ivar,		pcib_read_ivar),
69    DEVMETHOD(bus_write_ivar,		pcib_write_ivar),
70    DEVMETHOD(bus_alloc_resource,	pcib_alloc_resource),
71    DEVMETHOD(bus_release_resource,	bus_generic_release_resource),
72    DEVMETHOD(bus_activate_resource,	bus_generic_activate_resource),
73    DEVMETHOD(bus_deactivate_resource,	bus_generic_deactivate_resource),
74    DEVMETHOD(bus_setup_intr,		bus_generic_setup_intr),
75    DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
76
77    /* pcib interface */
78    DEVMETHOD(pcib_maxslots,		pcib_maxslots),
79    DEVMETHOD(pcib_read_config,		pcib_read_config),
80    DEVMETHOD(pcib_write_config,	pcib_write_config),
81    DEVMETHOD(pcib_route_interrupt,	pcib_route_interrupt),
82    DEVMETHOD(pcib_alloc_msi,		pcib_alloc_msi),
83    DEVMETHOD(pcib_release_msi,		pcib_release_msi),
84    DEVMETHOD(pcib_alloc_msix,		pcib_alloc_msix),
85    DEVMETHOD(pcib_release_msix,	pcib_release_msix),
86    DEVMETHOD(pcib_map_msi,		pcib_map_msi),
87
88    { 0, 0 }
89};
90
91static devclass_t pcib_devclass;
92
93DEFINE_CLASS_0(pcib, pcib_driver, pcib_methods, sizeof(struct pcib_softc));
94DRIVER_MODULE(pcib, pci, pcib_driver, pcib_devclass, 0, 0);
95
96/*
97 * Is the prefetch window open (eg, can we allocate memory in it?)
98 */
99static int
100pcib_is_prefetch_open(struct pcib_softc *sc)
101{
102	return (sc->pmembase > 0 && sc->pmembase < sc->pmemlimit);
103}
104
105/*
106 * Is the nonprefetch window open (eg, can we allocate memory in it?)
107 */
108static int
109pcib_is_nonprefetch_open(struct pcib_softc *sc)
110{
111	return (sc->membase > 0 && sc->membase < sc->memlimit);
112}
113
114/*
115 * Is the io window open (eg, can we allocate ports in it?)
116 */
117static int
118pcib_is_io_open(struct pcib_softc *sc)
119{
120	return (sc->iobase > 0 && sc->iobase < sc->iolimit);
121}
122
123/*
124 * Generic device interface
125 */
126static int
127pcib_probe(device_t dev)
128{
129    if ((pci_get_class(dev) == PCIC_BRIDGE) &&
130	(pci_get_subclass(dev) == PCIS_BRIDGE_PCI)) {
131	device_set_desc(dev, "PCI-PCI bridge");
132	return(-10000);
133    }
134    return(ENXIO);
135}
136
137void
138pcib_attach_common(device_t dev)
139{
140    struct pcib_softc	*sc;
141    uint8_t		iolow;
142    struct sysctl_ctx_list *sctx;
143    struct sysctl_oid	*soid;
144
145    sc = device_get_softc(dev);
146    sc->dev = dev;
147
148    /*
149     * Get current bridge configuration.
150     */
151    sc->command   = pci_read_config(dev, PCIR_COMMAND, 1);
152    sc->domain    = pci_get_domain(dev);
153    sc->pribus    = pci_read_config(dev, PCIR_PRIBUS_1, 1);
154    sc->secbus    = pci_read_config(dev, PCIR_SECBUS_1, 1);
155    sc->subbus    = pci_read_config(dev, PCIR_SUBBUS_1, 1);
156    sc->secstat   = pci_read_config(dev, PCIR_SECSTAT_1, 2);
157    sc->bridgectl = pci_read_config(dev, PCIR_BRIDGECTL_1, 2);
158    sc->seclat    = pci_read_config(dev, PCIR_SECLAT_1, 1);
159
160    /*
161     * Setup sysctl reporting nodes
162     */
163    sctx = device_get_sysctl_ctx(dev);
164    soid = device_get_sysctl_tree(dev);
165    SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "domain",
166	CTLFLAG_RD, &sc->domain, 0, "Domain number");
167    SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "pribus",
168	CTLFLAG_RD, &sc->pribus, 0, "Primary bus number");
169    SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "secbus",
170	CTLFLAG_RD, &sc->secbus, 0, "Secondary bus number");
171    SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "subbus",
172	CTLFLAG_RD, &sc->subbus, 0, "Subordinate bus number");
173
174    /*
175     * Determine current I/O decode.
176     */
177    if (sc->command & PCIM_CMD_PORTEN) {
178	iolow = pci_read_config(dev, PCIR_IOBASEL_1, 1);
179	if ((iolow & PCIM_BRIO_MASK) == PCIM_BRIO_32) {
180	    sc->iobase = PCI_PPBIOBASE(pci_read_config(dev, PCIR_IOBASEH_1, 2),
181				       pci_read_config(dev, PCIR_IOBASEL_1, 1));
182	} else {
183	    sc->iobase = PCI_PPBIOBASE(0, pci_read_config(dev, PCIR_IOBASEL_1, 1));
184	}
185
186	iolow = pci_read_config(dev, PCIR_IOLIMITL_1, 1);
187	if ((iolow & PCIM_BRIO_MASK) == PCIM_BRIO_32) {
188	    sc->iolimit = PCI_PPBIOLIMIT(pci_read_config(dev, PCIR_IOLIMITH_1, 2),
189					 pci_read_config(dev, PCIR_IOLIMITL_1, 1));
190	} else {
191	    sc->iolimit = PCI_PPBIOLIMIT(0, pci_read_config(dev, PCIR_IOLIMITL_1, 1));
192	}
193    }
194
195    /*
196     * Determine current memory decode.
197     */
198    if (sc->command & PCIM_CMD_MEMEN) {
199	sc->membase   = PCI_PPBMEMBASE(0, pci_read_config(dev, PCIR_MEMBASE_1, 2));
200	sc->memlimit  = PCI_PPBMEMLIMIT(0, pci_read_config(dev, PCIR_MEMLIMIT_1, 2));
201	sc->pmembase  = PCI_PPBMEMBASE(pci_read_config(dev, PCIR_PMBASEH_1, 4),
202	    pci_read_config(dev, PCIR_PMBASEL_1, 2));
203	sc->pmemlimit = PCI_PPBMEMLIMIT(pci_read_config(dev, PCIR_PMLIMITH_1, 4),
204	    pci_read_config(dev, PCIR_PMLIMITL_1, 2));
205    }
206
207    /*
208     * Quirk handling.
209     */
210    switch (pci_get_devid(dev)) {
211    case 0x12258086:		/* Intel 82454KX/GX (Orion) */
212	{
213	    uint8_t	supbus;
214
215	    supbus = pci_read_config(dev, 0x41, 1);
216	    if (supbus != 0xff) {
217		sc->secbus = supbus + 1;
218		sc->subbus = supbus + 1;
219	    }
220	    break;
221	}
222
223    /*
224     * The i82380FB mobile docking controller is a PCI-PCI bridge,
225     * and it is a subtractive bridge.  However, the ProgIf is wrong
226     * so the normal setting of PCIB_SUBTRACTIVE bit doesn't
227     * happen.  There's also a Toshiba bridge that behaves this
228     * way.
229     */
230    case 0x124b8086:		/* Intel 82380FB Mobile */
231    case 0x060513d7:		/* Toshiba ???? */
232	sc->flags |= PCIB_SUBTRACTIVE;
233	break;
234
235    /* Compaq R3000 BIOS sets wrong subordinate bus number. */
236    case 0x00dd10de:
237	{
238	    char *cp;
239
240	    if ((cp = getenv("smbios.planar.maker")) == NULL)
241		break;
242	    if (strncmp(cp, "Compal", 6) != 0) {
243		freeenv(cp);
244		break;
245	    }
246	    freeenv(cp);
247	    if ((cp = getenv("smbios.planar.product")) == NULL)
248		break;
249	    if (strncmp(cp, "08A0", 4) != 0) {
250		freeenv(cp);
251		break;
252	    }
253	    freeenv(cp);
254	    if (sc->subbus < 0xa) {
255		pci_write_config(dev, PCIR_SUBBUS_1, 0xa, 1);
256		sc->subbus = pci_read_config(dev, PCIR_SUBBUS_1, 1);
257	    }
258	    break;
259	}
260    }
261
262    if (pci_msi_device_blacklisted(dev))
263	sc->flags |= PCIB_DISABLE_MSI;
264
265    /*
266     * Intel 815, 845 and other chipsets say they are PCI-PCI bridges,
267     * but have a ProgIF of 0x80.  The 82801 family (AA, AB, BAM/CAM,
268     * BA/CA/DB and E) PCI bridges are HUB-PCI bridges, in Intelese.
269     * This means they act as if they were subtractively decoding
270     * bridges and pass all transactions.  Mark them and real ProgIf 1
271     * parts as subtractive.
272     */
273    if ((pci_get_devid(dev) & 0xff00ffff) == 0x24008086 ||
274      pci_read_config(dev, PCIR_PROGIF, 1) == PCIP_BRIDGE_PCI_SUBTRACTIVE)
275	sc->flags |= PCIB_SUBTRACTIVE;
276
277    if (bootverbose) {
278	device_printf(dev, "  domain            %d\n", sc->domain);
279	device_printf(dev, "  secondary bus     %d\n", sc->secbus);
280	device_printf(dev, "  subordinate bus   %d\n", sc->subbus);
281	device_printf(dev, "  I/O decode        0x%x-0x%x\n", sc->iobase, sc->iolimit);
282	if (pcib_is_nonprefetch_open(sc))
283	    device_printf(dev, "  memory decode     0x%jx-0x%jx\n",
284	      (uintmax_t)sc->membase, (uintmax_t)sc->memlimit);
285	if (pcib_is_prefetch_open(sc))
286	    device_printf(dev, "  prefetched decode 0x%jx-0x%jx\n",
287	      (uintmax_t)sc->pmembase, (uintmax_t)sc->pmemlimit);
288	else
289	    device_printf(dev, "  no prefetched decode\n");
290	if (sc->flags & PCIB_SUBTRACTIVE)
291	    device_printf(dev, "  Subtractively decoded bridge.\n");
292    }
293
294    /*
295     * XXX If the secondary bus number is zero, we should assign a bus number
296     *     since the BIOS hasn't, then initialise the bridge.  A simple
297     *     bus_alloc_resource with the a couple of busses seems like the right
298     *     approach, but we don't know what busses the BIOS might have already
299     *     assigned to other bridges on this bus that probe later than we do.
300     *
301     *     If the subordinate bus number is less than the secondary bus number,
302     *     we should pick a better value.  One sensible alternative would be to
303     *     pick 255; the only tradeoff here is that configuration transactions
304     *     would be more widely routed than absolutely necessary.  We could
305     *     then do a walk of the tree later and fix it.
306     */
307}
308
309int
310pcib_attach(device_t dev)
311{
312    struct pcib_softc	*sc;
313    device_t		child;
314
315    pcib_attach_common(dev);
316    sc = device_get_softc(dev);
317    if (sc->secbus != 0) {
318	child = device_add_child(dev, "pci", sc->secbus);
319	if (child != NULL)
320	    return(bus_generic_attach(dev));
321    }
322
323    /* no secondary bus; we should have fixed this */
324    return(0);
325}
326
327int
328pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
329{
330    struct pcib_softc	*sc = device_get_softc(dev);
331
332    switch (which) {
333    case PCIB_IVAR_DOMAIN:
334	*result = sc->domain;
335	return(0);
336    case PCIB_IVAR_BUS:
337	*result = sc->secbus;
338	return(0);
339    }
340    return(ENOENT);
341}
342
343int
344pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
345{
346    struct pcib_softc	*sc = device_get_softc(dev);
347
348    switch (which) {
349    case PCIB_IVAR_DOMAIN:
350	return(EINVAL);
351    case PCIB_IVAR_BUS:
352	sc->secbus = value;
353	return(0);
354    }
355    return(ENOENT);
356}
357
358/*
359 * We have to trap resource allocation requests and ensure that the bridge
360 * is set up to, or capable of handling them.
361 */
362struct resource *
363pcib_alloc_resource(device_t dev, device_t child, int type, int *rid,
364    u_long start, u_long end, u_long count, u_int flags)
365{
366	struct pcib_softc	*sc = device_get_softc(dev);
367	const char *name, *suffix;
368	int ok;
369
370	/*
371	 * Fail the allocation for this range if it's not supported.
372	 */
373	name = device_get_nameunit(child);
374	if (name == NULL) {
375		name = "";
376		suffix = "";
377	} else
378		suffix = " ";
379	switch (type) {
380	case SYS_RES_IOPORT:
381		ok = 0;
382		if (!pcib_is_io_open(sc))
383			break;
384		ok = (start >= sc->iobase && end <= sc->iolimit);
385
386		/*
387		 * Make sure we allow access to VGA I/O addresses when the
388		 * bridge has the "VGA Enable" bit set.
389		 */
390		if (!ok && pci_is_vga_ioport_range(start, end))
391			ok = (sc->bridgectl & PCIB_BCR_VGA_ENABLE) ? 1 : 0;
392
393		if ((sc->flags & PCIB_SUBTRACTIVE) == 0) {
394			if (!ok) {
395				if (start < sc->iobase)
396					start = sc->iobase;
397				if (end > sc->iolimit)
398					end = sc->iolimit;
399				if (start < end)
400					ok = 1;
401			}
402		} else {
403			ok = 1;
404#if 1
405			if (start < sc->iobase && end > sc->iolimit) {
406				start = sc->iobase;
407				end = sc->iolimit;
408			}
409#endif
410		}
411		if (end < start) {
412			device_printf(dev, "ioport: end (%lx) < start (%lx)\n",
413			    end, start);
414			start = 0;
415			end = 0;
416			ok = 0;
417		}
418		if (!ok) {
419			device_printf(dev, "%s%srequested unsupported I/O "
420			    "range 0x%lx-0x%lx (decoding 0x%x-0x%x)\n",
421			    name, suffix, start, end, sc->iobase, sc->iolimit);
422			return (NULL);
423		}
424		if (bootverbose)
425			device_printf(dev,
426			    "%s%srequested I/O range 0x%lx-0x%lx: in range\n",
427			    name, suffix, start, end);
428		break;
429
430	case SYS_RES_MEMORY:
431		ok = 0;
432		if (pcib_is_nonprefetch_open(sc))
433			ok = ok || (start >= sc->membase && end <= sc->memlimit);
434		if (pcib_is_prefetch_open(sc))
435			ok = ok || (start >= sc->pmembase && end <= sc->pmemlimit);
436
437		/*
438		 * Make sure we allow access to VGA memory addresses when the
439		 * bridge has the "VGA Enable" bit set.
440		 */
441		if (!ok && pci_is_vga_memory_range(start, end))
442			ok = (sc->bridgectl & PCIB_BCR_VGA_ENABLE) ? 1 : 0;
443
444		if ((sc->flags & PCIB_SUBTRACTIVE) == 0) {
445			if (!ok) {
446				ok = 1;
447				if (flags & RF_PREFETCHABLE) {
448					if (pcib_is_prefetch_open(sc)) {
449						if (start < sc->pmembase)
450							start = sc->pmembase;
451						if (end > sc->pmemlimit)
452							end = sc->pmemlimit;
453					} else {
454						ok = 0;
455					}
456				} else {	/* non-prefetchable */
457					if (pcib_is_nonprefetch_open(sc)) {
458						if (start < sc->membase)
459							start = sc->membase;
460						if (end > sc->memlimit)
461							end = sc->memlimit;
462					} else {
463						ok = 0;
464					}
465				}
466			}
467		} else if (!ok) {
468			ok = 1;	/* subtractive bridge: always ok */
469			if (pcib_is_nonprefetch_open(sc)) {
470				if (start < sc->membase && end > sc->memlimit) {
471					start = sc->membase;
472					end = sc->memlimit;
473				}
474			}
475			if (pcib_is_prefetch_open(sc)) {
476				if (start < sc->pmembase && end > sc->pmemlimit) {
477					start = sc->pmembase;
478					end = sc->pmemlimit;
479				}
480			}
481		}
482		if (end < start) {
483			device_printf(dev, "memory: end (%lx) < start (%lx)\n",
484			    end, start);
485			start = 0;
486			end = 0;
487			ok = 0;
488		}
489		if (!ok && bootverbose)
490			device_printf(dev,
491			    "%s%srequested unsupported memory range %#lx-%#lx "
492			    "(decoding %#jx-%#jx, %#jx-%#jx)\n",
493			    name, suffix, start, end,
494			    (uintmax_t)sc->membase, (uintmax_t)sc->memlimit,
495			    (uintmax_t)sc->pmembase, (uintmax_t)sc->pmemlimit);
496		if (!ok)
497			return (NULL);
498		if (bootverbose)
499			device_printf(dev,"%s%srequested memory range "
500			    "0x%lx-0x%lx: good\n",
501			    name, suffix, start, end);
502		break;
503
504	default:
505		break;
506	}
507	/*
508	 * Bridge is OK decoding this resource, so pass it up.
509	 */
510	return (bus_generic_alloc_resource(dev, child, type, rid, start, end,
511	    count, flags));
512}
513
514/*
515 * PCIB interface.
516 */
517int
518pcib_maxslots(device_t dev)
519{
520    return(PCI_SLOTMAX);
521}
522
523/*
524 * Since we are a child of a PCI bus, its parent must support the pcib interface.
525 */
526uint32_t
527pcib_read_config(device_t dev, int b, int s, int f, int reg, int width)
528{
529    return(PCIB_READ_CONFIG(device_get_parent(device_get_parent(dev)), b, s, f, reg, width));
530}
531
532void
533pcib_write_config(device_t dev, int b, int s, int f, int reg, uint32_t val, int width)
534{
535    PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(dev)), b, s, f, reg, val, width);
536}
537
538/*
539 * Route an interrupt across a PCI bridge.
540 */
541int
542pcib_route_interrupt(device_t pcib, device_t dev, int pin)
543{
544    device_t	bus;
545    int		parent_intpin;
546    int		intnum;
547
548    /*
549     *
550     * The PCI standard defines a swizzle of the child-side device/intpin to
551     * the parent-side intpin as follows.
552     *
553     * device = device on child bus
554     * child_intpin = intpin on child bus slot (0-3)
555     * parent_intpin = intpin on parent bus slot (0-3)
556     *
557     * parent_intpin = (device + child_intpin) % 4
558     */
559    parent_intpin = (pci_get_slot(dev) + (pin - 1)) % 4;
560
561    /*
562     * Our parent is a PCI bus.  Its parent must export the pcib interface
563     * which includes the ability to route interrupts.
564     */
565    bus = device_get_parent(pcib);
566    intnum = PCIB_ROUTE_INTERRUPT(device_get_parent(bus), pcib, parent_intpin + 1);
567    if (PCI_INTERRUPT_VALID(intnum) && bootverbose) {
568	device_printf(pcib, "slot %d INT%c is routed to irq %d\n",
569	    pci_get_slot(dev), 'A' + pin - 1, intnum);
570    }
571    return(intnum);
572}
573
574/* Pass request to alloc MSI/MSI-X messages up to the parent bridge. */
575int
576pcib_alloc_msi(device_t pcib, device_t dev, int count, int maxcount, int *irqs)
577{
578	struct pcib_softc *sc = device_get_softc(pcib);
579	device_t bus;
580
581	if (sc->flags & PCIB_DISABLE_MSI)
582		return (ENXIO);
583	bus = device_get_parent(pcib);
584	return (PCIB_ALLOC_MSI(device_get_parent(bus), dev, count, maxcount,
585	    irqs));
586}
587
588/* Pass request to release MSI/MSI-X messages up to the parent bridge. */
589int
590pcib_release_msi(device_t pcib, device_t dev, int count, int *irqs)
591{
592	device_t bus;
593
594	bus = device_get_parent(pcib);
595	return (PCIB_RELEASE_MSI(device_get_parent(bus), dev, count, irqs));
596}
597
598/* Pass request to alloc an MSI-X message up to the parent bridge. */
599int
600pcib_alloc_msix(device_t pcib, device_t dev, int *irq)
601{
602	struct pcib_softc *sc = device_get_softc(pcib);
603	device_t bus;
604
605	if (sc->flags & PCIB_DISABLE_MSI)
606		return (ENXIO);
607	bus = device_get_parent(pcib);
608	return (PCIB_ALLOC_MSIX(device_get_parent(bus), dev, irq));
609}
610
611/* Pass request to release an MSI-X message up to the parent bridge. */
612int
613pcib_release_msix(device_t pcib, device_t dev, int irq)
614{
615	device_t bus;
616
617	bus = device_get_parent(pcib);
618	return (PCIB_RELEASE_MSIX(device_get_parent(bus), dev, irq));
619}
620
621/* Pass request to map MSI/MSI-X message up to parent bridge. */
622int
623pcib_map_msi(device_t pcib, device_t dev, int irq, uint64_t *addr,
624    uint32_t *data)
625{
626	device_t bus;
627	int error;
628
629	bus = device_get_parent(pcib);
630	error = PCIB_MAP_MSI(device_get_parent(bus), dev, irq, addr, data);
631	if (error)
632		return (error);
633
634	pci_ht_map_msi(pcib, *addr);
635	return (0);
636}
637
638/*
639 * Try to read the bus number of a host-PCI bridge using appropriate config
640 * registers.
641 */
642int
643host_pcib_get_busno(pci_read_config_fn read_config, int bus, int slot, int func,
644    uint8_t *busnum)
645{
646	uint32_t id;
647
648	id = read_config(bus, slot, func, PCIR_DEVVENDOR, 4);
649	if (id == 0xffffffff)
650		return (0);
651
652	switch (id) {
653	case 0x12258086:
654		/* Intel 824?? */
655		/* XXX This is a guess */
656		/* *busnum = read_config(bus, slot, func, 0x41, 1); */
657		*busnum = bus;
658		break;
659	case 0x84c48086:
660		/* Intel 82454KX/GX (Orion) */
661		*busnum = read_config(bus, slot, func, 0x4a, 1);
662		break;
663	case 0x84ca8086:
664		/*
665		 * For the 450nx chipset, there is a whole bundle of
666		 * things pretending to be host bridges. The MIOC will
667		 * be seen first and isn't really a pci bridge (the
668		 * actual busses are attached to the PXB's). We need to
669		 * read the registers of the MIOC to figure out the
670		 * bus numbers for the PXB channels.
671		 *
672		 * Since the MIOC doesn't have a pci bus attached, we
673		 * pretend it wasn't there.
674		 */
675		return (0);
676	case 0x84cb8086:
677		switch (slot) {
678		case 0x12:
679			/* Intel 82454NX PXB#0, Bus#A */
680			*busnum = read_config(bus, 0x10, func, 0xd0, 1);
681			break;
682		case 0x13:
683			/* Intel 82454NX PXB#0, Bus#B */
684			*busnum = read_config(bus, 0x10, func, 0xd1, 1) + 1;
685			break;
686		case 0x14:
687			/* Intel 82454NX PXB#1, Bus#A */
688			*busnum = read_config(bus, 0x10, func, 0xd3, 1);
689			break;
690		case 0x15:
691			/* Intel 82454NX PXB#1, Bus#B */
692			*busnum = read_config(bus, 0x10, func, 0xd4, 1) + 1;
693			break;
694		}
695		break;
696
697		/* ServerWorks -- vendor 0x1166 */
698	case 0x00051166:
699	case 0x00061166:
700	case 0x00081166:
701	case 0x00091166:
702	case 0x00101166:
703	case 0x00111166:
704	case 0x00171166:
705	case 0x01011166:
706	case 0x010f1014:
707	case 0x02011166:
708	case 0x03021014:
709		*busnum = read_config(bus, slot, func, 0x44, 1);
710		break;
711
712		/* Compaq/HP -- vendor 0x0e11 */
713	case 0x60100e11:
714		*busnum = read_config(bus, slot, func, 0xc8, 1);
715		break;
716	default:
717		/* Don't know how to read bus number. */
718		return 0;
719	}
720
721	return 1;
722}
723