1 /*- 2 * Copyright (c) 2000 Michael Smith 3 * Copyright (c) 2000 BSDi 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <sys/cdefs.h> 29 __FBSDID("$FreeBSD$"); 30 31 #include "opt_acpi.h" 32 #include "opt_pci.h" 33 34 #include <sys/param.h> 35 #include <sys/bus.h> 36 #include <sys/kernel.h> 37 #include <sys/limits.h> 38 #include <sys/malloc.h> 39 #include <sys/module.h> 40 #include <sys/rman.h> 41 #include <sys/sysctl.h> 42 43 #include <contrib/dev/acpica/include/acpi.h> 44 #include <contrib/dev/acpica/include/accommon.h> 45 46 #include <dev/acpica/acpivar.h> 47 48 #include <machine/pci_cfgreg.h> 49 #include <dev/pci/pcireg.h> 50 #include <dev/pci/pcivar.h> 51 #include <dev/pci/pcib_private.h> 52 #include "pcib_if.h" 53 54 #include <dev/acpica/acpi_pcibvar.h> 55 56 /* Hooks for the ACPI CA debugging infrastructure. */ 57 #define _COMPONENT ACPI_BUS 58 ACPI_MODULE_NAME("PCI_ACPI") 59 60 struct acpi_hpcib_softc { 61 device_t ap_dev; 62 ACPI_HANDLE ap_handle; 63 bus_dma_tag_t ap_dma_tag; 64 int ap_flags; 65 uint32_t ap_osc_ctl; 66 67 int ap_segment; /* PCI domain */ 68 int ap_bus; /* bios-assigned bus number */ 69 int ap_addr; /* device/func of PCI-Host bridge */ 70 71 ACPI_BUFFER ap_prt; /* interrupt routing table */ 72 #ifdef NEW_PCIB 73 struct pcib_host_resources ap_host_res; 74 #endif 75 }; 76 77 static int acpi_pcib_acpi_probe(device_t bus); 78 static int acpi_pcib_acpi_attach(device_t bus); 79 static int acpi_pcib_read_ivar(device_t dev, device_t child, 80 int which, uintptr_t *result); 81 static int acpi_pcib_write_ivar(device_t dev, device_t child, 82 int which, uintptr_t value); 83 static uint32_t acpi_pcib_read_config(device_t dev, u_int bus, 84 u_int slot, u_int func, u_int reg, int bytes); 85 static void acpi_pcib_write_config(device_t dev, u_int bus, 86 u_int slot, u_int func, u_int reg, uint32_t data, 87 int bytes); 88 static int acpi_pcib_acpi_route_interrupt(device_t pcib, 89 device_t dev, int pin); 90 static int acpi_pcib_alloc_msi(device_t pcib, device_t dev, 91 int count, int maxcount, int *irqs); 92 static int acpi_pcib_map_msi(device_t pcib, device_t dev, 93 int irq, uint64_t *addr, uint32_t *data); 94 static int acpi_pcib_alloc_msix(device_t pcib, device_t dev, 95 int *irq); 96 static struct resource *acpi_pcib_acpi_alloc_resource(device_t dev, 97 device_t child, int type, int *rid, 98 rman_res_t start, rman_res_t end, rman_res_t count, 99 u_int flags); 100 #ifdef NEW_PCIB 101 static int acpi_pcib_acpi_adjust_resource(device_t dev, 102 device_t child, int type, struct resource *r, 103 rman_res_t start, rman_res_t end); 104 #ifdef PCI_RES_BUS 105 static int acpi_pcib_acpi_release_resource(device_t dev, 106 device_t child, int type, int rid, 107 struct resource *r); 108 #endif 109 #endif 110 static int acpi_pcib_request_feature(device_t pcib, device_t dev, 111 enum pci_feature feature); 112 static bus_dma_tag_t acpi_pcib_get_dma_tag(device_t bus, device_t child); 113 114 static device_method_t acpi_pcib_acpi_methods[] = { 115 /* Device interface */ 116 DEVMETHOD(device_probe, acpi_pcib_acpi_probe), 117 DEVMETHOD(device_attach, acpi_pcib_acpi_attach), 118 DEVMETHOD(device_shutdown, bus_generic_shutdown), 119 DEVMETHOD(device_suspend, bus_generic_suspend), 120 DEVMETHOD(device_resume, bus_generic_resume), 121 122 /* Bus interface */ 123 DEVMETHOD(bus_read_ivar, acpi_pcib_read_ivar), 124 DEVMETHOD(bus_write_ivar, acpi_pcib_write_ivar), 125 DEVMETHOD(bus_alloc_resource, acpi_pcib_acpi_alloc_resource), 126 #ifdef NEW_PCIB 127 DEVMETHOD(bus_adjust_resource, acpi_pcib_acpi_adjust_resource), 128 #else 129 DEVMETHOD(bus_adjust_resource, bus_generic_adjust_resource), 130 #endif 131 #if defined(NEW_PCIB) && defined(PCI_RES_BUS) 132 DEVMETHOD(bus_release_resource, acpi_pcib_acpi_release_resource), 133 #else 134 DEVMETHOD(bus_release_resource, bus_generic_release_resource), 135 #endif 136 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 137 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 138 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 139 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 140 DEVMETHOD(bus_get_cpus, acpi_pcib_get_cpus), 141 DEVMETHOD(bus_get_dma_tag, acpi_pcib_get_dma_tag), 142 143 /* pcib interface */ 144 DEVMETHOD(pcib_maxslots, pcib_maxslots), 145 DEVMETHOD(pcib_read_config, acpi_pcib_read_config), 146 DEVMETHOD(pcib_write_config, acpi_pcib_write_config), 147 DEVMETHOD(pcib_route_interrupt, acpi_pcib_acpi_route_interrupt), 148 DEVMETHOD(pcib_alloc_msi, acpi_pcib_alloc_msi), 149 DEVMETHOD(pcib_release_msi, pcib_release_msi), 150 DEVMETHOD(pcib_alloc_msix, acpi_pcib_alloc_msix), 151 DEVMETHOD(pcib_release_msix, pcib_release_msix), 152 DEVMETHOD(pcib_map_msi, acpi_pcib_map_msi), 153 DEVMETHOD(pcib_power_for_sleep, acpi_pcib_power_for_sleep), 154 DEVMETHOD(pcib_request_feature, acpi_pcib_request_feature), 155 156 DEVMETHOD_END 157 }; 158 159 DEFINE_CLASS_0(pcib, acpi_pcib_acpi_driver, acpi_pcib_acpi_methods, 160 sizeof(struct acpi_hpcib_softc)); 161 DRIVER_MODULE(acpi_pcib, acpi, acpi_pcib_acpi_driver, 0, 0); 162 MODULE_DEPEND(acpi_pcib, acpi, 1, 1, 1); 163 164 static int 165 acpi_pcib_acpi_probe(device_t dev) 166 { 167 ACPI_DEVICE_INFO *devinfo; 168 ACPI_HANDLE h; 169 int root; 170 171 if (acpi_disabled("pcib") || (h = acpi_get_handle(dev)) == NULL || 172 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 173 return (ENXIO); 174 root = (devinfo->Flags & ACPI_PCI_ROOT_BRIDGE) != 0; 175 AcpiOsFree(devinfo); 176 if (!root || pci_cfgregopen() == 0) 177 return (ENXIO); 178 179 device_set_desc(dev, "ACPI Host-PCI bridge"); 180 return (0); 181 } 182 183 #ifdef NEW_PCIB 184 static ACPI_STATUS 185 acpi_pcib_producer_handler(ACPI_RESOURCE *res, void *context) 186 { 187 struct acpi_hpcib_softc *sc; 188 UINT64 length, min, max; 189 u_int flags; 190 int error, type; 191 192 sc = context; 193 switch (res->Type) { 194 case ACPI_RESOURCE_TYPE_START_DEPENDENT: 195 case ACPI_RESOURCE_TYPE_END_DEPENDENT: 196 panic("host bridge has depenedent resources"); 197 case ACPI_RESOURCE_TYPE_ADDRESS16: 198 case ACPI_RESOURCE_TYPE_ADDRESS32: 199 case ACPI_RESOURCE_TYPE_ADDRESS64: 200 case ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64: 201 if (res->Data.Address.ProducerConsumer != ACPI_PRODUCER) 202 break; 203 switch (res->Type) { 204 case ACPI_RESOURCE_TYPE_ADDRESS16: 205 min = res->Data.Address16.Address.Minimum; 206 max = res->Data.Address16.Address.Maximum; 207 length = res->Data.Address16.Address.AddressLength; 208 break; 209 case ACPI_RESOURCE_TYPE_ADDRESS32: 210 min = res->Data.Address32.Address.Minimum; 211 max = res->Data.Address32.Address.Maximum; 212 length = res->Data.Address32.Address.AddressLength; 213 break; 214 case ACPI_RESOURCE_TYPE_ADDRESS64: 215 min = res->Data.Address64.Address.Minimum; 216 max = res->Data.Address64.Address.Maximum; 217 length = res->Data.Address64.Address.AddressLength; 218 break; 219 default: 220 KASSERT(res->Type == 221 ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64, 222 ("should never happen")); 223 min = res->Data.ExtAddress64.Address.Minimum; 224 max = res->Data.ExtAddress64.Address.Maximum; 225 length = res->Data.ExtAddress64.Address.AddressLength; 226 break; 227 } 228 if (length == 0) 229 break; 230 if (min + length - 1 != max && 231 (res->Data.Address.MinAddressFixed != ACPI_ADDRESS_FIXED || 232 res->Data.Address.MaxAddressFixed != ACPI_ADDRESS_FIXED)) 233 break; 234 flags = 0; 235 switch (res->Data.Address.ResourceType) { 236 case ACPI_MEMORY_RANGE: 237 type = SYS_RES_MEMORY; 238 if (res->Type != ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64) { 239 if (res->Data.Address.Info.Mem.Caching == 240 ACPI_PREFETCHABLE_MEMORY) 241 flags |= RF_PREFETCHABLE; 242 } else { 243 /* 244 * XXX: Parse prefetch flag out of 245 * TypeSpecific. 246 */ 247 } 248 break; 249 case ACPI_IO_RANGE: 250 type = SYS_RES_IOPORT; 251 break; 252 #ifdef PCI_RES_BUS 253 case ACPI_BUS_NUMBER_RANGE: 254 type = PCI_RES_BUS; 255 break; 256 #endif 257 default: 258 return (AE_OK); 259 } 260 261 if (min + length - 1 != max) 262 device_printf(sc->ap_dev, 263 "Length mismatch for %d range: %jx vs %jx\n", type, 264 (uintmax_t)(max - min + 1), (uintmax_t)length); 265 #ifdef __i386__ 266 if (min > ULONG_MAX) { 267 device_printf(sc->ap_dev, 268 "Ignoring %d range above 4GB (%#jx-%#jx)\n", 269 type, (uintmax_t)min, (uintmax_t)max); 270 break; 271 } 272 if (max > ULONG_MAX) { 273 device_printf(sc->ap_dev, 274 "Truncating end of %d range above 4GB (%#jx-%#jx)\n", 275 type, (uintmax_t)min, (uintmax_t)max); 276 max = ULONG_MAX; 277 } 278 #endif 279 error = pcib_host_res_decodes(&sc->ap_host_res, type, min, max, 280 flags); 281 if (error) 282 panic("Failed to manage %d range (%#jx-%#jx): %d", 283 type, (uintmax_t)min, (uintmax_t)max, error); 284 break; 285 default: 286 break; 287 } 288 return (AE_OK); 289 } 290 #endif 291 292 #if defined(NEW_PCIB) && defined(PCI_RES_BUS) 293 static int 294 first_decoded_bus(struct acpi_hpcib_softc *sc, rman_res_t *startp) 295 { 296 struct resource_list_entry *rle; 297 298 rle = resource_list_find(&sc->ap_host_res.hr_rl, PCI_RES_BUS, 0); 299 if (rle == NULL) 300 return (ENXIO); 301 *startp = rle->start; 302 return (0); 303 } 304 #endif 305 306 static int 307 acpi_pcib_osc(struct acpi_hpcib_softc *sc, uint32_t osc_ctl) 308 { 309 ACPI_STATUS status; 310 uint32_t cap_set[3]; 311 312 static uint8_t pci_host_bridge_uuid[ACPI_UUID_LENGTH] = { 313 0x5b, 0x4d, 0xdb, 0x33, 0xf7, 0x1f, 0x1c, 0x40, 314 0x96, 0x57, 0x74, 0x41, 0xc0, 0x3d, 0xd7, 0x66 315 }; 316 317 /* 318 * Don't invoke _OSC if a control is already granted. 319 * However, always invoke _OSC during attach when 0 is passed. 320 */ 321 if (osc_ctl != 0 && (sc->ap_osc_ctl & osc_ctl) == osc_ctl) 322 return (0); 323 324 /* Support Field: Extended PCI Config Space, PCI Segment Groups, MSI */ 325 cap_set[PCI_OSC_SUPPORT] = PCIM_OSC_SUPPORT_EXT_PCI_CONF | 326 PCIM_OSC_SUPPORT_SEG_GROUP | PCIM_OSC_SUPPORT_MSI; 327 /* Active State Power Management, Clock Power Management Capability */ 328 if (pci_enable_aspm) 329 cap_set[PCI_OSC_SUPPORT] |= PCIM_OSC_SUPPORT_ASPM | 330 PCIM_OSC_SUPPORT_CPMC; 331 332 /* Control Field */ 333 cap_set[PCI_OSC_CTL] = sc->ap_osc_ctl | osc_ctl; 334 335 status = acpi_EvaluateOSC(sc->ap_handle, pci_host_bridge_uuid, 1, 336 nitems(cap_set), cap_set, cap_set, false); 337 if (ACPI_FAILURE(status)) { 338 if (status == AE_NOT_FOUND) { 339 sc->ap_osc_ctl |= osc_ctl; 340 return (0); 341 } 342 device_printf(sc->ap_dev, "_OSC failed: %s\n", 343 AcpiFormatException(status)); 344 return (EIO); 345 } 346 347 /* 348 * _OSC may return an error in the status word, but will 349 * update the control mask always. _OSC should not revoke 350 * previously-granted controls. 351 */ 352 if ((cap_set[PCI_OSC_CTL] & sc->ap_osc_ctl) != sc->ap_osc_ctl) 353 device_printf(sc->ap_dev, "_OSC revoked %#x\n", 354 (cap_set[PCI_OSC_CTL] & sc->ap_osc_ctl) ^ sc->ap_osc_ctl); 355 sc->ap_osc_ctl = cap_set[PCI_OSC_CTL]; 356 if ((sc->ap_osc_ctl & osc_ctl) != osc_ctl) 357 return (EIO); 358 359 return (0); 360 } 361 362 static int 363 acpi_pcib_acpi_attach(device_t dev) 364 { 365 struct acpi_hpcib_softc *sc; 366 ACPI_STATUS status; 367 static int bus0_seen = 0; 368 u_int slot, func, busok; 369 #if defined(NEW_PCIB) && defined(PCI_RES_BUS) 370 struct resource *bus_res; 371 rman_res_t start; 372 int rid; 373 #endif 374 int error, domain; 375 uint8_t busno; 376 377 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 378 379 sc = device_get_softc(dev); 380 sc->ap_dev = dev; 381 sc->ap_handle = acpi_get_handle(dev); 382 383 /* 384 * Don't attach if we're not really there. 385 */ 386 if (!acpi_DeviceIsPresent(dev)) 387 return (ENXIO); 388 389 acpi_pcib_osc(sc, 0); 390 391 /* 392 * Get our segment number by evaluating _SEG. 393 * It's OK for this to not exist. 394 */ 395 status = acpi_GetInteger(sc->ap_handle, "_SEG", &sc->ap_segment); 396 if (ACPI_FAILURE(status)) { 397 if (status != AE_NOT_FOUND) { 398 device_printf(dev, "could not evaluate _SEG - %s\n", 399 AcpiFormatException(status)); 400 return_VALUE (ENXIO); 401 } 402 /* If it's not found, assume 0. */ 403 sc->ap_segment = 0; 404 } 405 406 /* 407 * Get the address (device and function) of the associated 408 * PCI-Host bridge device from _ADR. Assume we don't have one if 409 * it doesn't exist. 410 */ 411 status = acpi_GetInteger(sc->ap_handle, "_ADR", &sc->ap_addr); 412 if (ACPI_FAILURE(status)) { 413 if (status != AE_NOT_FOUND) 414 device_printf(dev, "could not evaluate _ADR - %s\n", 415 AcpiFormatException(status)); 416 sc->ap_addr = -1; 417 } 418 419 #ifdef NEW_PCIB 420 /* 421 * Determine which address ranges this bridge decodes and setup 422 * resource managers for those ranges. 423 */ 424 if (pcib_host_res_init(sc->ap_dev, &sc->ap_host_res) != 0) 425 panic("failed to init hostb resources"); 426 if (!acpi_disabled("hostres")) { 427 status = AcpiWalkResources(sc->ap_handle, "_CRS", 428 acpi_pcib_producer_handler, sc); 429 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) 430 device_printf(sc->ap_dev, "failed to parse resources: %s\n", 431 AcpiFormatException(status)); 432 } 433 #endif 434 435 /* 436 * Get our base bus number by evaluating _BBN. 437 * If this doesn't work, we assume we're bus number 0. 438 * 439 * XXX note that it may also not exist in the case where we are 440 * meant to use a private configuration space mechanism for this bus, 441 * so we should dig out our resources and check to see if we have 442 * anything like that. How do we do this? 443 * XXX If we have the requisite information, and if we don't think the 444 * default PCI configuration space handlers can deal with this bus, 445 * we should attach our own handler. 446 * XXX invoke _REG on this for the PCI config space address space? 447 * XXX It seems many BIOS's with multiple Host-PCI bridges do not set 448 * _BBN correctly. They set _BBN to zero for all bridges. Thus, 449 * if _BBN is zero and PCI bus 0 already exists, we try to read our 450 * bus number from the configuration registers at address _ADR. 451 * We only do this for domain/segment 0 in the hopes that this is 452 * only needed for old single-domain machines. 453 */ 454 status = acpi_GetInteger(sc->ap_handle, "_BBN", &sc->ap_bus); 455 if (ACPI_FAILURE(status)) { 456 if (status != AE_NOT_FOUND) { 457 device_printf(dev, "could not evaluate _BBN - %s\n", 458 AcpiFormatException(status)); 459 return (ENXIO); 460 } else { 461 /* If it's not found, assume 0. */ 462 sc->ap_bus = 0; 463 } 464 } 465 466 /* 467 * If this is segment 0, the bus is zero, and PCI bus 0 already 468 * exists, read the bus number via PCI config space. 469 */ 470 busok = 1; 471 if (sc->ap_segment == 0 && sc->ap_bus == 0 && bus0_seen) { 472 busok = 0; 473 if (sc->ap_addr != -1) { 474 /* XXX: We assume bus 0. */ 475 slot = ACPI_ADR_PCI_SLOT(sc->ap_addr); 476 func = ACPI_ADR_PCI_FUNC(sc->ap_addr); 477 if (bootverbose) 478 device_printf(dev, "reading config registers from 0:%d:%d\n", 479 slot, func); 480 if (host_pcib_get_busno(pci_cfgregread, 0, slot, func, &busno) == 0) 481 device_printf(dev, "couldn't read bus number from cfg space\n"); 482 else { 483 sc->ap_bus = busno; 484 busok = 1; 485 } 486 } 487 } 488 489 #if defined(NEW_PCIB) && defined(PCI_RES_BUS) 490 /* 491 * If nothing else worked, hope that ACPI at least lays out the 492 * Host-PCI bridges in order and that as a result the next free 493 * bus number is our bus number. 494 */ 495 if (busok == 0) { 496 /* 497 * If we have a region of bus numbers, use the first 498 * number for our bus. 499 */ 500 if (first_decoded_bus(sc, &start) == 0) 501 sc->ap_bus = start; 502 else { 503 rid = 0; 504 bus_res = pci_domain_alloc_bus(sc->ap_segment, dev, &rid, 0, 505 PCI_BUSMAX, 1, 0); 506 if (bus_res == NULL) { 507 device_printf(dev, 508 "could not allocate bus number\n"); 509 pcib_host_res_free(dev, &sc->ap_host_res); 510 return (ENXIO); 511 } 512 sc->ap_bus = rman_get_start(bus_res); 513 pci_domain_release_bus(sc->ap_segment, dev, rid, bus_res); 514 } 515 } else { 516 /* 517 * Require the bus number from _BBN to match the start of any 518 * decoded range. 519 */ 520 if (first_decoded_bus(sc, &start) == 0 && sc->ap_bus != start) { 521 device_printf(dev, 522 "bus number %d does not match start of decoded range %ju\n", 523 sc->ap_bus, (uintmax_t)start); 524 pcib_host_res_free(dev, &sc->ap_host_res); 525 return (ENXIO); 526 } 527 } 528 #else 529 /* 530 * If nothing else worked, hope that ACPI at least lays out the 531 * host-PCI bridges in order and that as a result our unit number 532 * is actually our bus number. There are several reasons this 533 * might not be true. 534 */ 535 if (busok == 0) { 536 sc->ap_bus = device_get_unit(dev); 537 device_printf(dev, "trying bus number %d\n", sc->ap_bus); 538 } 539 #endif 540 541 /* If this is bus 0 on segment 0, note that it has been seen already. */ 542 if (sc->ap_segment == 0 && sc->ap_bus == 0) 543 bus0_seen = 1; 544 545 acpi_pcib_fetch_prt(dev, &sc->ap_prt); 546 547 error = bus_dma_tag_create(bus_get_dma_tag(dev), 1, 548 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, 549 NULL, NULL, BUS_SPACE_MAXSIZE, BUS_SPACE_UNRESTRICTED, 550 BUS_SPACE_MAXSIZE, 0, NULL, NULL, &sc->ap_dma_tag); 551 if (error != 0) 552 goto errout; 553 error = bus_get_domain(dev, &domain); 554 if (error == 0) 555 error = bus_dma_tag_set_domain(sc->ap_dma_tag, domain); 556 /* Don't fail to attach if the domain can't be queried or set. */ 557 error = 0; 558 559 bus_generic_probe(dev); 560 if (device_add_child(dev, "pci", -1) == NULL) { 561 bus_dma_tag_destroy(sc->ap_dma_tag); 562 sc->ap_dma_tag = NULL; 563 error = ENXIO; 564 goto errout; 565 } 566 return (bus_generic_attach(dev)); 567 568 errout: 569 device_printf(device_get_parent(dev), "couldn't attach pci bus\n"); 570 #if defined(NEW_PCIB) && defined(PCI_RES_BUS) 571 pcib_host_res_free(dev, &sc->ap_host_res); 572 #endif 573 return (error); 574 } 575 576 /* 577 * Support for standard PCI bridge ivars. 578 */ 579 static int 580 acpi_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) 581 { 582 struct acpi_hpcib_softc *sc = device_get_softc(dev); 583 584 switch (which) { 585 case PCIB_IVAR_DOMAIN: 586 *result = sc->ap_segment; 587 return (0); 588 case PCIB_IVAR_BUS: 589 *result = sc->ap_bus; 590 return (0); 591 case ACPI_IVAR_HANDLE: 592 *result = (uintptr_t)sc->ap_handle; 593 return (0); 594 case ACPI_IVAR_FLAGS: 595 *result = (uintptr_t)sc->ap_flags; 596 return (0); 597 } 598 return (ENOENT); 599 } 600 601 static int 602 acpi_pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value) 603 { 604 struct acpi_hpcib_softc *sc = device_get_softc(dev); 605 606 switch (which) { 607 case PCIB_IVAR_DOMAIN: 608 return (EINVAL); 609 case PCIB_IVAR_BUS: 610 sc->ap_bus = value; 611 return (0); 612 case ACPI_IVAR_HANDLE: 613 sc->ap_handle = (ACPI_HANDLE)value; 614 return (0); 615 case ACPI_IVAR_FLAGS: 616 sc->ap_flags = (int)value; 617 return (0); 618 } 619 return (ENOENT); 620 } 621 622 static uint32_t 623 acpi_pcib_read_config(device_t dev, u_int bus, u_int slot, u_int func, 624 u_int reg, int bytes) 625 { 626 return (pci_cfgregread(bus, slot, func, reg, bytes)); 627 } 628 629 static void 630 acpi_pcib_write_config(device_t dev, u_int bus, u_int slot, u_int func, 631 u_int reg, uint32_t data, int bytes) 632 { 633 pci_cfgregwrite(bus, slot, func, reg, data, bytes); 634 } 635 636 static int 637 acpi_pcib_acpi_route_interrupt(device_t pcib, device_t dev, int pin) 638 { 639 struct acpi_hpcib_softc *sc = device_get_softc(pcib); 640 641 return (acpi_pcib_route_interrupt(pcib, dev, pin, &sc->ap_prt)); 642 } 643 644 static int 645 acpi_pcib_alloc_msi(device_t pcib, device_t dev, int count, int maxcount, 646 int *irqs) 647 { 648 device_t bus; 649 650 bus = device_get_parent(pcib); 651 return (PCIB_ALLOC_MSI(device_get_parent(bus), dev, count, maxcount, 652 irqs)); 653 } 654 655 static int 656 acpi_pcib_alloc_msix(device_t pcib, device_t dev, int *irq) 657 { 658 device_t bus; 659 660 bus = device_get_parent(pcib); 661 return (PCIB_ALLOC_MSIX(device_get_parent(bus), dev, irq)); 662 } 663 664 static int 665 acpi_pcib_map_msi(device_t pcib, device_t dev, int irq, uint64_t *addr, 666 uint32_t *data) 667 { 668 struct acpi_hpcib_softc *sc; 669 device_t bus, hostb; 670 int error; 671 672 bus = device_get_parent(pcib); 673 error = PCIB_MAP_MSI(device_get_parent(bus), dev, irq, addr, data); 674 if (error) 675 return (error); 676 677 sc = device_get_softc(pcib); 678 if (sc->ap_addr == -1) 679 return (0); 680 /* XXX: Assumes all bridges are on bus 0. */ 681 hostb = pci_find_dbsf(sc->ap_segment, 0, ACPI_ADR_PCI_SLOT(sc->ap_addr), 682 ACPI_ADR_PCI_FUNC(sc->ap_addr)); 683 if (hostb != NULL) 684 pci_ht_map_msi(hostb, *addr); 685 return (0); 686 } 687 688 struct resource * 689 acpi_pcib_acpi_alloc_resource(device_t dev, device_t child, int type, int *rid, 690 rman_res_t start, rman_res_t end, rman_res_t count, u_int flags) 691 { 692 #ifdef NEW_PCIB 693 struct acpi_hpcib_softc *sc; 694 struct resource *res; 695 #endif 696 697 #if defined(__i386__) || defined(__amd64__) 698 start = hostb_alloc_start(type, start, end, count); 699 #endif 700 701 #ifdef NEW_PCIB 702 sc = device_get_softc(dev); 703 #ifdef PCI_RES_BUS 704 if (type == PCI_RES_BUS) 705 return (pci_domain_alloc_bus(sc->ap_segment, child, rid, start, end, 706 count, flags)); 707 #endif 708 res = pcib_host_res_alloc(&sc->ap_host_res, child, type, rid, start, end, 709 count, flags); 710 711 /* 712 * XXX: If this is a request for a specific range, assume it is 713 * correct and pass it up to the parent. What we probably want to 714 * do long-term is explicitly trust any firmware-configured 715 * resources during the initial bus scan on boot and then disable 716 * this after that. 717 */ 718 if (res == NULL && start + count - 1 == end) 719 res = bus_generic_alloc_resource(dev, child, type, rid, start, end, 720 count, flags); 721 return (res); 722 #else 723 return (bus_generic_alloc_resource(dev, child, type, rid, start, end, 724 count, flags)); 725 #endif 726 } 727 728 #ifdef NEW_PCIB 729 int 730 acpi_pcib_acpi_adjust_resource(device_t dev, device_t child, int type, 731 struct resource *r, rman_res_t start, rman_res_t end) 732 { 733 struct acpi_hpcib_softc *sc; 734 735 sc = device_get_softc(dev); 736 #ifdef PCI_RES_BUS 737 if (type == PCI_RES_BUS) 738 return (pci_domain_adjust_bus(sc->ap_segment, child, r, start, 739 end)); 740 #endif 741 return (pcib_host_res_adjust(&sc->ap_host_res, child, type, r, start, 742 end)); 743 } 744 745 #ifdef PCI_RES_BUS 746 int 747 acpi_pcib_acpi_release_resource(device_t dev, device_t child, int type, int rid, 748 struct resource *r) 749 { 750 struct acpi_hpcib_softc *sc; 751 752 sc = device_get_softc(dev); 753 if (type == PCI_RES_BUS) 754 return (pci_domain_release_bus(sc->ap_segment, child, rid, r)); 755 return (bus_generic_release_resource(dev, child, type, rid, r)); 756 } 757 #endif 758 #endif 759 760 static int 761 acpi_pcib_request_feature(device_t pcib, device_t dev, enum pci_feature feature) 762 { 763 uint32_t osc_ctl; 764 struct acpi_hpcib_softc *sc; 765 766 sc = device_get_softc(pcib); 767 768 switch (feature) { 769 case PCI_FEATURE_HP: 770 osc_ctl = PCIM_OSC_CTL_PCIE_HP; 771 break; 772 case PCI_FEATURE_AER: 773 osc_ctl = PCIM_OSC_CTL_PCIE_AER; 774 break; 775 default: 776 return (EINVAL); 777 } 778 779 return (acpi_pcib_osc(sc, osc_ctl)); 780 } 781 782 static bus_dma_tag_t 783 acpi_pcib_get_dma_tag(device_t bus, device_t child) 784 { 785 struct acpi_hpcib_softc *sc; 786 787 sc = device_get_softc(bus); 788 789 return (sc->ap_dma_tag); 790 } 791