1bb0d0a8eSMike Smith /*- 2bb0d0a8eSMike Smith * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier 3bb0d0a8eSMike Smith * Copyright (c) 2000 Michael Smith <msmith@freebsd.org> 4bb0d0a8eSMike Smith * Copyright (c) 2000 BSDi 5bb0d0a8eSMike Smith * All rights reserved. 6bb0d0a8eSMike Smith * 7bb0d0a8eSMike Smith * Redistribution and use in source and binary forms, with or without 8bb0d0a8eSMike Smith * modification, are permitted provided that the following conditions 9bb0d0a8eSMike Smith * are met: 10bb0d0a8eSMike Smith * 1. Redistributions of source code must retain the above copyright 11bb0d0a8eSMike Smith * notice, this list of conditions and the following disclaimer. 12bb0d0a8eSMike Smith * 2. Redistributions in binary form must reproduce the above copyright 13bb0d0a8eSMike Smith * notice, this list of conditions and the following disclaimer in the 14bb0d0a8eSMike Smith * documentation and/or other materials provided with the distribution. 15bb0d0a8eSMike Smith * 3. The name of the author may not be used to endorse or promote products 16bb0d0a8eSMike Smith * derived from this software without specific prior written permission. 17bb0d0a8eSMike Smith * 18bb0d0a8eSMike Smith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19bb0d0a8eSMike Smith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20bb0d0a8eSMike Smith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21bb0d0a8eSMike Smith * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22bb0d0a8eSMike Smith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23bb0d0a8eSMike Smith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24bb0d0a8eSMike Smith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25bb0d0a8eSMike Smith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26bb0d0a8eSMike Smith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27bb0d0a8eSMike Smith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28bb0d0a8eSMike Smith * SUCH DAMAGE. 29bb0d0a8eSMike Smith */ 30bb0d0a8eSMike Smith 31aad970f1SDavid E. O'Brien #include <sys/cdefs.h> 32aad970f1SDavid E. O'Brien __FBSDID("$FreeBSD$"); 33aad970f1SDavid E. O'Brien 34bb0d0a8eSMike Smith /* 35bb0d0a8eSMike Smith * PCI:PCI bridge support. 36bb0d0a8eSMike Smith */ 37bb0d0a8eSMike Smith 38bb0d0a8eSMike Smith #include <sys/param.h> 39bb0d0a8eSMike Smith #include <sys/systm.h> 40bb0d0a8eSMike Smith #include <sys/kernel.h> 4141ee9f1cSPoul-Henning Kamp #include <sys/module.h> 42bb0d0a8eSMike Smith #include <sys/bus.h> 43a8b354a8SWarner Losh #include <machine/bus.h> 44a8b354a8SWarner Losh #include <sys/rman.h> 451c54ff33SMatthew N. Dodd #include <sys/sysctl.h> 46bb0d0a8eSMike Smith 47bb0d0a8eSMike Smith #include <machine/resource.h> 48bb0d0a8eSMike Smith 4938d8c994SWarner Losh #include <dev/pci/pcivar.h> 5038d8c994SWarner Losh #include <dev/pci/pcireg.h> 5138d8c994SWarner Losh #include <dev/pci/pcib_private.h> 52bb0d0a8eSMike Smith 53bb0d0a8eSMike Smith #include "pcib_if.h" 54bb0d0a8eSMike Smith 55bb0d0a8eSMike Smith static int pcib_probe(device_t dev); 56bb0d0a8eSMike Smith 57bb0d0a8eSMike Smith static device_method_t pcib_methods[] = { 58bb0d0a8eSMike Smith /* Device interface */ 59bb0d0a8eSMike Smith DEVMETHOD(device_probe, pcib_probe), 60bb0d0a8eSMike Smith DEVMETHOD(device_attach, pcib_attach), 61bb0d0a8eSMike Smith DEVMETHOD(device_shutdown, bus_generic_shutdown), 62bb0d0a8eSMike Smith DEVMETHOD(device_suspend, bus_generic_suspend), 63bb0d0a8eSMike Smith DEVMETHOD(device_resume, bus_generic_resume), 64bb0d0a8eSMike Smith 65bb0d0a8eSMike Smith /* Bus interface */ 66bb0d0a8eSMike Smith DEVMETHOD(bus_print_child, bus_generic_print_child), 67bb0d0a8eSMike Smith DEVMETHOD(bus_read_ivar, pcib_read_ivar), 68bb0d0a8eSMike Smith DEVMETHOD(bus_write_ivar, pcib_write_ivar), 69bb0d0a8eSMike Smith DEVMETHOD(bus_alloc_resource, pcib_alloc_resource), 70bb0d0a8eSMike Smith DEVMETHOD(bus_release_resource, bus_generic_release_resource), 71bb0d0a8eSMike Smith DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 72bb0d0a8eSMike Smith DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 73bb0d0a8eSMike Smith DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 74bb0d0a8eSMike Smith DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 75bb0d0a8eSMike Smith 76bb0d0a8eSMike Smith /* pcib interface */ 77bb0d0a8eSMike Smith DEVMETHOD(pcib_maxslots, pcib_maxslots), 78bb0d0a8eSMike Smith DEVMETHOD(pcib_read_config, pcib_read_config), 79bb0d0a8eSMike Smith DEVMETHOD(pcib_write_config, pcib_write_config), 80bb0d0a8eSMike Smith DEVMETHOD(pcib_route_interrupt, pcib_route_interrupt), 81bb0d0a8eSMike Smith 82bb0d0a8eSMike Smith { 0, 0 } 83bb0d0a8eSMike Smith }; 84bb0d0a8eSMike Smith 85bb0d0a8eSMike Smith static driver_t pcib_driver = { 86bb0d0a8eSMike Smith "pcib", 87bb0d0a8eSMike Smith pcib_methods, 88bb0d0a8eSMike Smith sizeof(struct pcib_softc), 89bb0d0a8eSMike Smith }; 90bb0d0a8eSMike Smith 916f0d5884SJohn Baldwin devclass_t pcib_devclass; 92bb0d0a8eSMike Smith 93bb0d0a8eSMike Smith DRIVER_MODULE(pcib, pci, pcib_driver, pcib_devclass, 0, 0); 94bb0d0a8eSMike Smith 95bb0d0a8eSMike Smith /* 96bb0d0a8eSMike Smith * Generic device interface 97bb0d0a8eSMike Smith */ 98bb0d0a8eSMike Smith static int 99bb0d0a8eSMike Smith pcib_probe(device_t dev) 100bb0d0a8eSMike Smith { 101bb0d0a8eSMike Smith if ((pci_get_class(dev) == PCIC_BRIDGE) && 102bb0d0a8eSMike Smith (pci_get_subclass(dev) == PCIS_BRIDGE_PCI)) { 103bb0d0a8eSMike Smith device_set_desc(dev, "PCI-PCI bridge"); 104bb0d0a8eSMike Smith return(-10000); 105bb0d0a8eSMike Smith } 106bb0d0a8eSMike Smith return(ENXIO); 107bb0d0a8eSMike Smith } 108bb0d0a8eSMike Smith 1096f0d5884SJohn Baldwin void 1106f0d5884SJohn Baldwin pcib_attach_common(device_t dev) 111bb0d0a8eSMike Smith { 112bb0d0a8eSMike Smith struct pcib_softc *sc; 113b0cb115fSWarner Losh uint8_t iolow; 114bb0d0a8eSMike Smith 115bb0d0a8eSMike Smith sc = device_get_softc(dev); 116bb0d0a8eSMike Smith sc->dev = dev; 117bb0d0a8eSMike Smith 1184fa59183SMike Smith /* 1194fa59183SMike Smith * Get current bridge configuration. 1204fa59183SMike Smith */ 1218983cfbfSMike Smith sc->command = pci_read_config(dev, PCIR_COMMAND, 1); 1224fa59183SMike Smith sc->secbus = pci_read_config(dev, PCIR_SECBUS_1, 1); 1234fa59183SMike Smith sc->subbus = pci_read_config(dev, PCIR_SUBBUS_1, 1); 1244fa59183SMike Smith sc->secstat = pci_read_config(dev, PCIR_SECSTAT_1, 2); 1254fa59183SMike Smith sc->bridgectl = pci_read_config(dev, PCIR_BRIDGECTL_1, 2); 1264fa59183SMike Smith sc->seclat = pci_read_config(dev, PCIR_SECLAT_1, 1); 1274fa59183SMike Smith 1284fa59183SMike Smith /* 1294fa59183SMike Smith * Determine current I/O decode. 1304fa59183SMike Smith */ 1318983cfbfSMike Smith if (sc->command & PCIM_CMD_PORTEN) { 1324fa59183SMike Smith iolow = pci_read_config(dev, PCIR_IOBASEL_1, 1); 1334fa59183SMike Smith if ((iolow & PCIM_BRIO_MASK) == PCIM_BRIO_32) { 1344fa59183SMike Smith sc->iobase = PCI_PPBIOBASE(pci_read_config(dev, PCIR_IOBASEH_1, 2), 1354fa59183SMike Smith pci_read_config(dev, PCIR_IOBASEL_1, 1)); 1364fa59183SMike Smith } else { 1374fa59183SMike Smith sc->iobase = PCI_PPBIOBASE(0, pci_read_config(dev, PCIR_IOBASEL_1, 1)); 1384fa59183SMike Smith } 1394fa59183SMike Smith 1404fa59183SMike Smith iolow = pci_read_config(dev, PCIR_IOLIMITL_1, 1); 1414fa59183SMike Smith if ((iolow & PCIM_BRIO_MASK) == PCIM_BRIO_32) { 1424fa59183SMike Smith sc->iolimit = PCI_PPBIOLIMIT(pci_read_config(dev, PCIR_IOLIMITH_1, 2), 1434fa59183SMike Smith pci_read_config(dev, PCIR_IOLIMITL_1, 1)); 1444fa59183SMike Smith } else { 1454fa59183SMike Smith sc->iolimit = PCI_PPBIOLIMIT(0, pci_read_config(dev, PCIR_IOLIMITL_1, 1)); 1464fa59183SMike Smith } 1478983cfbfSMike Smith } 1484fa59183SMike Smith 1494fa59183SMike Smith /* 1504fa59183SMike Smith * Determine current memory decode. 1514fa59183SMike Smith */ 1528983cfbfSMike Smith if (sc->command & PCIM_CMD_MEMEN) { 1534fa59183SMike Smith sc->membase = PCI_PPBMEMBASE(0, pci_read_config(dev, PCIR_MEMBASE_1, 2)); 1544fa59183SMike Smith sc->memlimit = PCI_PPBMEMLIMIT(0, pci_read_config(dev, PCIR_MEMLIMIT_1, 2)); 1554fa59183SMike Smith sc->pmembase = PCI_PPBMEMBASE((pci_addr_t)pci_read_config(dev, PCIR_PMBASEH_1, 4), 1564fa59183SMike Smith pci_read_config(dev, PCIR_PMBASEL_1, 2)); 1574fa59183SMike Smith sc->pmemlimit = PCI_PPBMEMLIMIT((pci_addr_t)pci_read_config(dev, PCIR_PMLIMITH_1, 4), 1584fa59183SMike Smith pci_read_config(dev, PCIR_PMLIMITL_1, 2)); 1598983cfbfSMike Smith } 1604fa59183SMike Smith 1614fa59183SMike Smith /* 1624fa59183SMike Smith * Quirk handling. 1634fa59183SMike Smith */ 1644fa59183SMike Smith switch (pci_get_devid(dev)) { 1654fa59183SMike Smith case 0x12258086: /* Intel 82454KX/GX (Orion) */ 1664fa59183SMike Smith { 167b0cb115fSWarner Losh uint8_t supbus; 1684fa59183SMike Smith 1694fa59183SMike Smith supbus = pci_read_config(dev, 0x41, 1); 1704fa59183SMike Smith if (supbus != 0xff) { 1714fa59183SMike Smith sc->secbus = supbus + 1; 1724fa59183SMike Smith sc->subbus = supbus + 1; 1734fa59183SMike Smith } 1744fa59183SMike Smith break; 1754fa59183SMike Smith } 1764fa59183SMike Smith 177e4b59fc5SWarner Losh /* 178e4b59fc5SWarner Losh * The i82380FB mobile docking controller is a PCI-PCI bridge, 179e4b59fc5SWarner Losh * and it is a subtractive bridge. However, the ProgIf is wrong 180e4b59fc5SWarner Losh * so the normal setting of PCIB_SUBTRACTIVE bit doesn't 181e4b59fc5SWarner Losh * happen. There's also a Toshiba bridge that behaves this 182e4b59fc5SWarner Losh * way. 183e4b59fc5SWarner Losh */ 184e4b59fc5SWarner Losh case 0x124b8086: /* Intel 82380FB Mobile */ 185e4b59fc5SWarner Losh case 0x060513d7: /* Toshiba ???? */ 186e4b59fc5SWarner Losh sc->flags |= PCIB_SUBTRACTIVE; 187e4b59fc5SWarner Losh break; 188e4b59fc5SWarner Losh } 189e4b59fc5SWarner Losh 190e4b59fc5SWarner Losh /* 191e4b59fc5SWarner Losh * Intel 815, 845 and other chipsets say they are PCI-PCI bridges, 192e4b59fc5SWarner Losh * but have a ProgIF of 0x80. The 82801 family (AA, AB, BAM/CAM, 193e4b59fc5SWarner Losh * BA/CA/DB and E) PCI bridges are HUB-PCI bridges, in Intelese. 194e4b59fc5SWarner Losh * This means they act as if they were subtractively decoding 195e4b59fc5SWarner Losh * bridges and pass all transactions. Mark them and real ProgIf 1 196e4b59fc5SWarner Losh * parts as subtractive. 197e4b59fc5SWarner Losh */ 198e4b59fc5SWarner Losh if ((pci_get_devid(dev) & 0xff00ffff) == 0x24008086 || 199e4b59fc5SWarner Losh pci_read_config(dev, PCIR_PROGIF, 1) == 1) 200e4b59fc5SWarner Losh sc->flags |= PCIB_SUBTRACTIVE; 201e4b59fc5SWarner Losh 202bb0d0a8eSMike Smith if (bootverbose) { 203bb0d0a8eSMike Smith device_printf(dev, " secondary bus %d\n", sc->secbus); 204bb0d0a8eSMike Smith device_printf(dev, " subordinate bus %d\n", sc->subbus); 205bb0d0a8eSMike Smith device_printf(dev, " I/O decode 0x%x-0x%x\n", sc->iobase, sc->iolimit); 206bb0d0a8eSMike Smith device_printf(dev, " memory decode 0x%x-0x%x\n", sc->membase, sc->memlimit); 207bb0d0a8eSMike Smith device_printf(dev, " prefetched decode 0x%x-0x%x\n", sc->pmembase, sc->pmemlimit); 208e4b59fc5SWarner Losh if (sc->flags & PCIB_SUBTRACTIVE) 209e4b59fc5SWarner Losh device_printf(dev, " Subtractively decoded bridge.\n"); 210bb0d0a8eSMike Smith } 211bb0d0a8eSMike Smith 212bb0d0a8eSMike Smith /* 213bb0d0a8eSMike Smith * XXX If the secondary bus number is zero, we should assign a bus number 214bb0d0a8eSMike Smith * since the BIOS hasn't, then initialise the bridge. 215bb0d0a8eSMike Smith */ 216bb0d0a8eSMike Smith 217bb0d0a8eSMike Smith /* 218bb0d0a8eSMike Smith * XXX If the subordinate bus number is less than the secondary bus number, 219bb0d0a8eSMike Smith * we should pick a better value. One sensible alternative would be to 220bb0d0a8eSMike Smith * pick 255; the only tradeoff here is that configuration transactions 221bb0d0a8eSMike Smith * would be more widely routed than absolutely necessary. 222bb0d0a8eSMike Smith */ 2236f0d5884SJohn Baldwin } 224bb0d0a8eSMike Smith 22538906aedSJohn Baldwin int 2266f0d5884SJohn Baldwin pcib_attach(device_t dev) 2276f0d5884SJohn Baldwin { 2286f0d5884SJohn Baldwin struct pcib_softc *sc; 2296f0d5884SJohn Baldwin device_t child; 2306f0d5884SJohn Baldwin 2316f0d5884SJohn Baldwin pcib_attach_common(dev); 2326f0d5884SJohn Baldwin sc = device_get_softc(dev); 233bb0d0a8eSMike Smith if (sc->secbus != 0) { 234cea0a895SJohn Baldwin child = device_add_child(dev, "pci", sc->secbus); 235bb0d0a8eSMike Smith if (child != NULL) 236bb0d0a8eSMike Smith return(bus_generic_attach(dev)); 237bb0d0a8eSMike Smith } 238bb0d0a8eSMike Smith 239bb0d0a8eSMike Smith /* no secondary bus; we should have fixed this */ 240bb0d0a8eSMike Smith return(0); 241bb0d0a8eSMike Smith } 242bb0d0a8eSMike Smith 2436f0d5884SJohn Baldwin int 244bb0d0a8eSMike Smith pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) 245bb0d0a8eSMike Smith { 246bb0d0a8eSMike Smith struct pcib_softc *sc = device_get_softc(dev); 247bb0d0a8eSMike Smith 248bb0d0a8eSMike Smith switch (which) { 249bb0d0a8eSMike Smith case PCIB_IVAR_BUS: 250bb0d0a8eSMike Smith *result = sc->secbus; 251bb0d0a8eSMike Smith return(0); 252bb0d0a8eSMike Smith } 253bb0d0a8eSMike Smith return(ENOENT); 254bb0d0a8eSMike Smith } 255bb0d0a8eSMike Smith 2566f0d5884SJohn Baldwin int 257bb0d0a8eSMike Smith pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value) 258bb0d0a8eSMike Smith { 259bb0d0a8eSMike Smith struct pcib_softc *sc = device_get_softc(dev); 260bb0d0a8eSMike Smith 261bb0d0a8eSMike Smith switch (which) { 262bb0d0a8eSMike Smith case PCIB_IVAR_BUS: 263bb0d0a8eSMike Smith sc->secbus = value; 264bb0d0a8eSMike Smith break; 265bb0d0a8eSMike Smith } 266bb0d0a8eSMike Smith return(ENOENT); 267bb0d0a8eSMike Smith } 268bb0d0a8eSMike Smith 269bb0d0a8eSMike Smith /* 270a8b354a8SWarner Losh * Is the prefetch window open (eg, can we allocate memory in it?) 271a8b354a8SWarner Losh */ 272a8b354a8SWarner Losh static int 273a8b354a8SWarner Losh pcib_is_prefetch_open(struct pcib_softc *sc) 274a8b354a8SWarner Losh { 275a8b354a8SWarner Losh return (sc->pmembase > 0 && sc->pmembase < sc->pmemlimit); 276a8b354a8SWarner Losh } 277a8b354a8SWarner Losh 278a8b354a8SWarner Losh /* 279a8b354a8SWarner Losh * Is the nonprefetch window open (eg, can we allocate memory in it?) 280a8b354a8SWarner Losh */ 281a8b354a8SWarner Losh static int 282a8b354a8SWarner Losh pcib_is_nonprefetch_open(struct pcib_softc *sc) 283a8b354a8SWarner Losh { 284a8b354a8SWarner Losh return (sc->membase > 0 && sc->membase < sc->memlimit); 285a8b354a8SWarner Losh } 286a8b354a8SWarner Losh 287a8b354a8SWarner Losh /* 288a8b354a8SWarner Losh * Is the io window open (eg, can we allocate ports in it?) 289a8b354a8SWarner Losh */ 290a8b354a8SWarner Losh static int 291a8b354a8SWarner Losh pcib_is_io_open(struct pcib_softc *sc) 292a8b354a8SWarner Losh { 293a8b354a8SWarner Losh return (sc->iobase > 0 && sc->iobase < sc->iolimit); 294a8b354a8SWarner Losh } 295a8b354a8SWarner Losh 296a8b354a8SWarner Losh /* 297bb0d0a8eSMike Smith * We have to trap resource allocation requests and ensure that the bridge 298bb0d0a8eSMike Smith * is set up to, or capable of handling them. 299bb0d0a8eSMike Smith */ 3006f0d5884SJohn Baldwin struct resource * 301bb0d0a8eSMike Smith pcib_alloc_resource(device_t dev, device_t child, int type, int *rid, 302bb0d0a8eSMike Smith u_long start, u_long end, u_long count, u_int flags) 303bb0d0a8eSMike Smith { 304bb0d0a8eSMike Smith struct pcib_softc *sc = device_get_softc(dev); 305a8b354a8SWarner Losh int ok; 306bb0d0a8eSMike Smith 307bb0d0a8eSMike Smith /* 308bb0d0a8eSMike Smith * Fail the allocation for this range if it's not supported. 309bb0d0a8eSMike Smith */ 310bb0d0a8eSMike Smith switch (type) { 311bb0d0a8eSMike Smith case SYS_RES_IOPORT: 312a8b354a8SWarner Losh ok = 0; 313e4b59fc5SWarner Losh if (!pcib_is_io_open(sc)) 314e4b59fc5SWarner Losh break; 315a8b354a8SWarner Losh ok = (start >= sc->iobase && end <= sc->iolimit); 316e4b59fc5SWarner Losh if ((sc->flags & PCIB_SUBTRACTIVE) == 0) { 317a8b354a8SWarner Losh if (!ok) { 31812b8c86eSWarner Losh if (start < sc->iobase) 31912b8c86eSWarner Losh start = sc->iobase; 32012b8c86eSWarner Losh if (end > sc->iolimit) 32112b8c86eSWarner Losh end = sc->iolimit; 322a8b354a8SWarner Losh } 3231c54ff33SMatthew N. Dodd } else { 324e4b59fc5SWarner Losh ok = 1; 325cd8b53edSWarner Losh #if 1 326e4b59fc5SWarner Losh if (start < sc->iobase && end > sc->iolimit) { 327e4b59fc5SWarner Losh start = sc->iobase; 328e4b59fc5SWarner Losh end = sc->iolimit; 3291c54ff33SMatthew N. Dodd } 33070be3980SWarner Losh #endif 33112b8c86eSWarner Losh } 332a8b354a8SWarner Losh if (end < start) { 333e4b59fc5SWarner Losh device_printf(dev, "ioport: end (%lx) < start (%lx)\n", end, start); 334a8b354a8SWarner Losh start = 0; 335a8b354a8SWarner Losh end = 0; 336a8b354a8SWarner Losh ok = 0; 337a8b354a8SWarner Losh } 338a8b354a8SWarner Losh if (!ok) { 339e4b59fc5SWarner Losh device_printf(dev, "device %s requested unsupported I/O " 340a8b354a8SWarner Losh "range 0x%lx-0x%lx (decoding 0x%x-0x%x)\n", 341e4b59fc5SWarner Losh device_get_nameunit(child), start, end, 342bb0d0a8eSMike Smith sc->iobase, sc->iolimit); 343bb0d0a8eSMike Smith return (NULL); 344bb0d0a8eSMike Smith } 3454fa59183SMike Smith if (bootverbose) 346e4b59fc5SWarner Losh device_printf(dev, "device %s requested decoded I/O range 0x%lx-0x%lx\n", 347e4b59fc5SWarner Losh device_get_nameunit(child), start, end); 348bb0d0a8eSMike Smith break; 349bb0d0a8eSMike Smith 350bb0d0a8eSMike Smith case SYS_RES_MEMORY: 351a8b354a8SWarner Losh ok = 0; 352a8b354a8SWarner Losh if (pcib_is_nonprefetch_open(sc)) 353a8b354a8SWarner Losh ok = ok || (start >= sc->membase && end <= sc->memlimit); 354a8b354a8SWarner Losh if (pcib_is_prefetch_open(sc)) 355a8b354a8SWarner Losh ok = ok || (start >= sc->pmembase && end <= sc->pmemlimit); 356e4b59fc5SWarner Losh if ((sc->flags & PCIB_SUBTRACTIVE) == 0) { 357a8b354a8SWarner Losh if (!ok) { 358a8b354a8SWarner Losh ok = 1; 359a8b354a8SWarner Losh if (flags & RF_PREFETCHABLE) { 360a8b354a8SWarner Losh if (pcib_is_prefetch_open(sc)) { 361a8b354a8SWarner Losh if (start < sc->pmembase) 362a8b354a8SWarner Losh start = sc->pmembase; 363a8b354a8SWarner Losh if (end > sc->pmemlimit) 364a8b354a8SWarner Losh end = sc->pmemlimit; 365a8b354a8SWarner Losh } else { 366a8b354a8SWarner Losh ok = 0; 367a8b354a8SWarner Losh } 368a8b354a8SWarner Losh } else { /* non-prefetchable */ 369a8b354a8SWarner Losh if (pcib_is_nonprefetch_open(sc)) { 370a8b354a8SWarner Losh if (start < sc->membase) 37112b8c86eSWarner Losh start = sc->membase; 37212b8c86eSWarner Losh if (end > sc->memlimit) 37312b8c86eSWarner Losh end = sc->memlimit; 3741c54ff33SMatthew N. Dodd } else { 375a8b354a8SWarner Losh ok = 0; 376a8b354a8SWarner Losh } 377a8b354a8SWarner Losh } 378a8b354a8SWarner Losh } 379a8b354a8SWarner Losh } else if (!ok) { 380e4b59fc5SWarner Losh ok = 1; /* subtractive bridge: always ok */ 381cd8b53edSWarner Losh #if 1 382a8b354a8SWarner Losh if (pcib_is_nonprefetch_open(sc)) { 383e4b59fc5SWarner Losh if (start < sc->membase && end > sc->memlimit) { 384e4b59fc5SWarner Losh start = sc->membase; 385e4b59fc5SWarner Losh end = sc->memlimit; 386e4b59fc5SWarner Losh } 387a8b354a8SWarner Losh } 388a8b354a8SWarner Losh if (pcib_is_prefetch_open(sc)) { 389e4b59fc5SWarner Losh if (start < sc->pmembase && end > sc->pmemlimit) { 390e4b59fc5SWarner Losh start = sc->pmembase; 391e4b59fc5SWarner Losh end = sc->pmemlimit; 392a8b354a8SWarner Losh } 3931c54ff33SMatthew N. Dodd } 39470be3980SWarner Losh #endif 39512b8c86eSWarner Losh } 396a8b354a8SWarner Losh if (end < start) { 397e4b59fc5SWarner Losh device_printf(dev, "memory: end (%lx) < start (%lx)\n", end, start); 398a8b354a8SWarner Losh start = 0; 399a8b354a8SWarner Losh end = 0; 400a8b354a8SWarner Losh ok = 0; 401a8b354a8SWarner Losh } 402a8b354a8SWarner Losh if (!ok && bootverbose) 40334428485SWarner Losh device_printf(dev, 404e4b59fc5SWarner Losh "device %s requested unsupported memory range " 40534428485SWarner Losh "0x%lx-0x%lx (decoding 0x%x-0x%x, 0x%x-0x%x)\n", 406e4b59fc5SWarner Losh device_get_nameunit(child), start, end, 407e4b59fc5SWarner Losh sc->membase, sc->memlimit, sc->pmembase, 40834428485SWarner Losh sc->pmemlimit); 409a8b354a8SWarner Losh if (!ok) 410bb0d0a8eSMike Smith return (NULL); 4114fa59183SMike Smith if (bootverbose) 412e4b59fc5SWarner Losh device_printf(dev,"device %s requested decoded memory range 0x%lx-0x%lx\n", 413e4b59fc5SWarner Losh device_get_nameunit(child), start, end); 4144fa59183SMike Smith break; 4154fa59183SMike Smith 416bb0d0a8eSMike Smith default: 4174fa59183SMike Smith break; 418bb0d0a8eSMike Smith } 419bb0d0a8eSMike Smith /* 420bb0d0a8eSMike Smith * Bridge is OK decoding this resource, so pass it up. 421bb0d0a8eSMike Smith */ 422bb0d0a8eSMike Smith return (bus_generic_alloc_resource(dev, child, type, rid, start, end, count, flags)); 423bb0d0a8eSMike Smith } 424bb0d0a8eSMike Smith 425bb0d0a8eSMike Smith /* 426bb0d0a8eSMike Smith * PCIB interface. 427bb0d0a8eSMike Smith */ 4286f0d5884SJohn Baldwin int 429bb0d0a8eSMike Smith pcib_maxslots(device_t dev) 430bb0d0a8eSMike Smith { 4314fa59183SMike Smith return(PCI_SLOTMAX); 432bb0d0a8eSMike Smith } 433bb0d0a8eSMike Smith 434bb0d0a8eSMike Smith /* 435bb0d0a8eSMike Smith * Since we are a child of a PCI bus, its parent must support the pcib interface. 436bb0d0a8eSMike Smith */ 437b0cb115fSWarner Losh uint32_t 438bb0d0a8eSMike Smith pcib_read_config(device_t dev, int b, int s, int f, int reg, int width) 439bb0d0a8eSMike Smith { 440bb0d0a8eSMike Smith return(PCIB_READ_CONFIG(device_get_parent(device_get_parent(dev)), b, s, f, reg, width)); 441bb0d0a8eSMike Smith } 442bb0d0a8eSMike Smith 4436f0d5884SJohn Baldwin void 444b0cb115fSWarner Losh pcib_write_config(device_t dev, int b, int s, int f, int reg, uint32_t val, int width) 445bb0d0a8eSMike Smith { 446bb0d0a8eSMike Smith PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(dev)), b, s, f, reg, val, width); 447bb0d0a8eSMike Smith } 448bb0d0a8eSMike Smith 449bb0d0a8eSMike Smith /* 450bb0d0a8eSMike Smith * Route an interrupt across a PCI bridge. 451bb0d0a8eSMike Smith */ 4522c2d1d07SBenno Rice int 453bb0d0a8eSMike Smith pcib_route_interrupt(device_t pcib, device_t dev, int pin) 454bb0d0a8eSMike Smith { 455bb0d0a8eSMike Smith device_t bus; 456bb0d0a8eSMike Smith int parent_intpin; 457bb0d0a8eSMike Smith int intnum; 458bb0d0a8eSMike Smith 459bb0d0a8eSMike Smith /* 460bb0d0a8eSMike Smith * 461bb0d0a8eSMike Smith * The PCI standard defines a swizzle of the child-side device/intpin to 462bb0d0a8eSMike Smith * the parent-side intpin as follows. 463bb0d0a8eSMike Smith * 464bb0d0a8eSMike Smith * device = device on child bus 465bb0d0a8eSMike Smith * child_intpin = intpin on child bus slot (0-3) 466bb0d0a8eSMike Smith * parent_intpin = intpin on parent bus slot (0-3) 467bb0d0a8eSMike Smith * 468bb0d0a8eSMike Smith * parent_intpin = (device + child_intpin) % 4 469bb0d0a8eSMike Smith */ 470cdc95e1bSBernd Walter parent_intpin = (pci_get_slot(dev) + (pin - 1)) % 4; 471bb0d0a8eSMike Smith 472bb0d0a8eSMike Smith /* 473bb0d0a8eSMike Smith * Our parent is a PCI bus. Its parent must export the pcib interface 474bb0d0a8eSMike Smith * which includes the ability to route interrupts. 475bb0d0a8eSMike Smith */ 476bb0d0a8eSMike Smith bus = device_get_parent(pcib); 477bb0d0a8eSMike Smith intnum = PCIB_ROUTE_INTERRUPT(device_get_parent(bus), pcib, parent_intpin + 1); 47839981fedSJohn Baldwin if (PCI_INTERRUPT_VALID(intnum) && bootverbose) { 479c6a121abSJohn Baldwin device_printf(pcib, "slot %d INT%c is routed to irq %d\n", 480c6a121abSJohn Baldwin pci_get_slot(dev), 'A' + pin - 1, intnum); 4818046c4b9SMike Smith } 482bb0d0a8eSMike Smith return(intnum); 483bb0d0a8eSMike Smith } 484b173edafSJohn Baldwin 485b173edafSJohn Baldwin /* 486b173edafSJohn Baldwin * Try to read the bus number of a host-PCI bridge using appropriate config 487b173edafSJohn Baldwin * registers. 488b173edafSJohn Baldwin */ 489b173edafSJohn Baldwin int 490b173edafSJohn Baldwin host_pcib_get_busno(pci_read_config_fn read_config, int bus, int slot, int func, 491b0cb115fSWarner Losh uint8_t *busnum) 492b173edafSJohn Baldwin { 493b0cb115fSWarner Losh uint32_t id; 494b173edafSJohn Baldwin 495b173edafSJohn Baldwin id = read_config(bus, slot, func, PCIR_DEVVENDOR, 4); 4961bbf2464SJohn Baldwin if (id == 0xffffffff) 497b173edafSJohn Baldwin return (0); 498b173edafSJohn Baldwin 499b173edafSJohn Baldwin switch (id) { 500b173edafSJohn Baldwin case 0x12258086: 501b173edafSJohn Baldwin /* Intel 824?? */ 502b173edafSJohn Baldwin /* XXX This is a guess */ 503b173edafSJohn Baldwin /* *busnum = read_config(bus, slot, func, 0x41, 1); */ 504b173edafSJohn Baldwin *busnum = bus; 505b173edafSJohn Baldwin break; 506b173edafSJohn Baldwin case 0x84c48086: 507b173edafSJohn Baldwin /* Intel 82454KX/GX (Orion) */ 508b173edafSJohn Baldwin *busnum = read_config(bus, slot, func, 0x4a, 1); 509b173edafSJohn Baldwin break; 510b173edafSJohn Baldwin case 0x84ca8086: 511b173edafSJohn Baldwin /* 512b173edafSJohn Baldwin * For the 450nx chipset, there is a whole bundle of 513b173edafSJohn Baldwin * things pretending to be host bridges. The MIOC will 514b173edafSJohn Baldwin * be seen first and isn't really a pci bridge (the 515b173edafSJohn Baldwin * actual busses are attached to the PXB's). We need to 516b173edafSJohn Baldwin * read the registers of the MIOC to figure out the 517b173edafSJohn Baldwin * bus numbers for the PXB channels. 518b173edafSJohn Baldwin * 519b173edafSJohn Baldwin * Since the MIOC doesn't have a pci bus attached, we 520b173edafSJohn Baldwin * pretend it wasn't there. 521b173edafSJohn Baldwin */ 522b173edafSJohn Baldwin return (0); 523b173edafSJohn Baldwin case 0x84cb8086: 524b173edafSJohn Baldwin switch (slot) { 525b173edafSJohn Baldwin case 0x12: 526b173edafSJohn Baldwin /* Intel 82454NX PXB#0, Bus#A */ 5271bbf2464SJohn Baldwin *busnum = read_config(bus, 0x10, func, 0xd0, 1); 528b173edafSJohn Baldwin break; 529b173edafSJohn Baldwin case 0x13: 530b173edafSJohn Baldwin /* Intel 82454NX PXB#0, Bus#B */ 5311bbf2464SJohn Baldwin *busnum = read_config(bus, 0x10, func, 0xd1, 1) + 1; 532b173edafSJohn Baldwin break; 533b173edafSJohn Baldwin case 0x14: 534b173edafSJohn Baldwin /* Intel 82454NX PXB#1, Bus#A */ 5351bbf2464SJohn Baldwin *busnum = read_config(bus, 0x10, func, 0xd3, 1); 536b173edafSJohn Baldwin break; 537b173edafSJohn Baldwin case 0x15: 538b173edafSJohn Baldwin /* Intel 82454NX PXB#1, Bus#B */ 5391bbf2464SJohn Baldwin *busnum = read_config(bus, 0x10, func, 0xd4, 1) + 1; 540b173edafSJohn Baldwin break; 541b173edafSJohn Baldwin } 542b173edafSJohn Baldwin break; 543b173edafSJohn Baldwin 544b173edafSJohn Baldwin /* ServerWorks -- vendor 0x1166 */ 545b173edafSJohn Baldwin case 0x00051166: 546b173edafSJohn Baldwin case 0x00061166: 547b173edafSJohn Baldwin case 0x00081166: 548b173edafSJohn Baldwin case 0x00091166: 549b173edafSJohn Baldwin case 0x00101166: 550b173edafSJohn Baldwin case 0x00111166: 551b173edafSJohn Baldwin case 0x00171166: 552b173edafSJohn Baldwin case 0x01011166: 553b173edafSJohn Baldwin case 0x010f1014: 554b173edafSJohn Baldwin case 0x02011166: 555b173edafSJohn Baldwin case 0x03021014: 556b173edafSJohn Baldwin *busnum = read_config(bus, slot, func, 0x44, 1); 557b173edafSJohn Baldwin break; 558b173edafSJohn Baldwin default: 559b173edafSJohn Baldwin /* Don't know how to read bus number. */ 560b173edafSJohn Baldwin return 0; 561b173edafSJohn Baldwin } 562b173edafSJohn Baldwin 563b173edafSJohn Baldwin return 1; 564b173edafSJohn Baldwin } 565