1 /* 2 * QEMU PCI bus manager 3 * 4 * Copyright (c) 2004 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 * copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 * THE SOFTWARE. 23 */ 24 25 #include "qemu/osdep.h" 26 #include "qemu-common.h" 27 #include "hw/irq.h" 28 #include "hw/pci/pci.h" 29 #include "hw/pci/pci_bridge.h" 30 #include "hw/pci/pci_bus.h" 31 #include "hw/pci/pci_host.h" 32 #include "hw/qdev-properties.h" 33 #include "migration/qemu-file-types.h" 34 #include "migration/vmstate.h" 35 #include "monitor/monitor.h" 36 #include "net/net.h" 37 #include "sysemu/numa.h" 38 #include "sysemu/sysemu.h" 39 #include "hw/loader.h" 40 #include "qemu/error-report.h" 41 #include "qemu/range.h" 42 #include "trace.h" 43 #include "hw/pci/msi.h" 44 #include "hw/pci/msix.h" 45 #include "exec/address-spaces.h" 46 #include "hw/hotplug.h" 47 #include "hw/boards.h" 48 #include "qapi/error.h" 49 #include "qapi/qapi-commands-misc.h" 50 #include "qemu/cutils.h" 51 52 //#define DEBUG_PCI 53 #ifdef DEBUG_PCI 54 # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) 55 #else 56 # define PCI_DPRINTF(format, ...) do { } while (0) 57 #endif 58 59 bool pci_available = true; 60 61 static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent); 62 static char *pcibus_get_dev_path(DeviceState *dev); 63 static char *pcibus_get_fw_dev_path(DeviceState *dev); 64 static void pcibus_reset(BusState *qbus); 65 66 static Property pci_props[] = { 67 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1), 68 DEFINE_PROP_STRING("romfile", PCIDevice, romfile), 69 DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1), 70 DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present, 71 QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false), 72 DEFINE_PROP_BIT("x-pcie-lnksta-dllla", PCIDevice, cap_present, 73 QEMU_PCIE_LNKSTA_DLLLA_BITNR, true), 74 DEFINE_PROP_BIT("x-pcie-extcap-init", PCIDevice, cap_present, 75 QEMU_PCIE_EXTCAP_INIT_BITNR, true), 76 DEFINE_PROP_STRING("failover_pair_id", PCIDevice, 77 failover_pair_id), 78 DEFINE_PROP_END_OF_LIST() 79 }; 80 81 static const VMStateDescription vmstate_pcibus = { 82 .name = "PCIBUS", 83 .version_id = 1, 84 .minimum_version_id = 1, 85 .fields = (VMStateField[]) { 86 VMSTATE_INT32_EQUAL(nirq, PCIBus, NULL), 87 VMSTATE_VARRAY_INT32(irq_count, PCIBus, 88 nirq, 0, vmstate_info_int32, 89 int32_t), 90 VMSTATE_END_OF_LIST() 91 } 92 }; 93 94 static void pci_init_bus_master(PCIDevice *pci_dev) 95 { 96 AddressSpace *dma_as = pci_device_iommu_address_space(pci_dev); 97 98 memory_region_init_alias(&pci_dev->bus_master_enable_region, 99 OBJECT(pci_dev), "bus master", 100 dma_as->root, 0, memory_region_size(dma_as->root)); 101 memory_region_set_enabled(&pci_dev->bus_master_enable_region, false); 102 memory_region_add_subregion(&pci_dev->bus_master_container_region, 0, 103 &pci_dev->bus_master_enable_region); 104 } 105 106 static void pcibus_machine_done(Notifier *notifier, void *data) 107 { 108 PCIBus *bus = container_of(notifier, PCIBus, machine_done); 109 int i; 110 111 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { 112 if (bus->devices[i]) { 113 pci_init_bus_master(bus->devices[i]); 114 } 115 } 116 } 117 118 static void pci_bus_realize(BusState *qbus, Error **errp) 119 { 120 PCIBus *bus = PCI_BUS(qbus); 121 122 bus->machine_done.notify = pcibus_machine_done; 123 qemu_add_machine_init_done_notifier(&bus->machine_done); 124 125 vmstate_register(NULL, VMSTATE_INSTANCE_ID_ANY, &vmstate_pcibus, bus); 126 } 127 128 static void pcie_bus_realize(BusState *qbus, Error **errp) 129 { 130 PCIBus *bus = PCI_BUS(qbus); 131 132 pci_bus_realize(qbus, errp); 133 134 /* 135 * A PCI-E bus can support extended config space if it's the root 136 * bus, or if the bus/bridge above it does as well 137 */ 138 if (pci_bus_is_root(bus)) { 139 bus->flags |= PCI_BUS_EXTENDED_CONFIG_SPACE; 140 } else { 141 PCIBus *parent_bus = pci_get_bus(bus->parent_dev); 142 143 if (pci_bus_allows_extended_config_space(parent_bus)) { 144 bus->flags |= PCI_BUS_EXTENDED_CONFIG_SPACE; 145 } 146 } 147 } 148 149 static void pci_bus_unrealize(BusState *qbus) 150 { 151 PCIBus *bus = PCI_BUS(qbus); 152 153 qemu_remove_machine_init_done_notifier(&bus->machine_done); 154 155 vmstate_unregister(NULL, &vmstate_pcibus, bus); 156 } 157 158 static int pcibus_num(PCIBus *bus) 159 { 160 if (pci_bus_is_root(bus)) { 161 return 0; /* pci host bridge */ 162 } 163 return bus->parent_dev->config[PCI_SECONDARY_BUS]; 164 } 165 166 static uint16_t pcibus_numa_node(PCIBus *bus) 167 { 168 return NUMA_NODE_UNASSIGNED; 169 } 170 171 static void pci_bus_class_init(ObjectClass *klass, void *data) 172 { 173 BusClass *k = BUS_CLASS(klass); 174 PCIBusClass *pbc = PCI_BUS_CLASS(klass); 175 176 k->print_dev = pcibus_dev_print; 177 k->get_dev_path = pcibus_get_dev_path; 178 k->get_fw_dev_path = pcibus_get_fw_dev_path; 179 k->realize = pci_bus_realize; 180 k->unrealize = pci_bus_unrealize; 181 k->reset = pcibus_reset; 182 183 pbc->bus_num = pcibus_num; 184 pbc->numa_node = pcibus_numa_node; 185 } 186 187 static const TypeInfo pci_bus_info = { 188 .name = TYPE_PCI_BUS, 189 .parent = TYPE_BUS, 190 .instance_size = sizeof(PCIBus), 191 .class_size = sizeof(PCIBusClass), 192 .class_init = pci_bus_class_init, 193 }; 194 195 static const TypeInfo pcie_interface_info = { 196 .name = INTERFACE_PCIE_DEVICE, 197 .parent = TYPE_INTERFACE, 198 }; 199 200 static const TypeInfo conventional_pci_interface_info = { 201 .name = INTERFACE_CONVENTIONAL_PCI_DEVICE, 202 .parent = TYPE_INTERFACE, 203 }; 204 205 static void pcie_bus_class_init(ObjectClass *klass, void *data) 206 { 207 BusClass *k = BUS_CLASS(klass); 208 209 k->realize = pcie_bus_realize; 210 } 211 212 static const TypeInfo pcie_bus_info = { 213 .name = TYPE_PCIE_BUS, 214 .parent = TYPE_PCI_BUS, 215 .class_init = pcie_bus_class_init, 216 }; 217 218 static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num); 219 static void pci_update_mappings(PCIDevice *d); 220 static void pci_irq_handler(void *opaque, int irq_num, int level); 221 static void pci_add_option_rom(PCIDevice *pdev, bool is_default_rom, Error **); 222 static void pci_del_option_rom(PCIDevice *pdev); 223 224 static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET; 225 static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU; 226 227 static QLIST_HEAD(, PCIHostState) pci_host_bridges; 228 229 int pci_bar(PCIDevice *d, int reg) 230 { 231 uint8_t type; 232 233 if (reg != PCI_ROM_SLOT) 234 return PCI_BASE_ADDRESS_0 + reg * 4; 235 236 type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; 237 return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS; 238 } 239 240 static inline int pci_irq_state(PCIDevice *d, int irq_num) 241 { 242 return (d->irq_state >> irq_num) & 0x1; 243 } 244 245 static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level) 246 { 247 d->irq_state &= ~(0x1 << irq_num); 248 d->irq_state |= level << irq_num; 249 } 250 251 static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change) 252 { 253 PCIBus *bus; 254 for (;;) { 255 bus = pci_get_bus(pci_dev); 256 irq_num = bus->map_irq(pci_dev, irq_num); 257 if (bus->set_irq) 258 break; 259 pci_dev = bus->parent_dev; 260 } 261 bus->irq_count[irq_num] += change; 262 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0); 263 } 264 265 int pci_bus_get_irq_level(PCIBus *bus, int irq_num) 266 { 267 assert(irq_num >= 0); 268 assert(irq_num < bus->nirq); 269 return !!bus->irq_count[irq_num]; 270 } 271 272 /* Update interrupt status bit in config space on interrupt 273 * state change. */ 274 static void pci_update_irq_status(PCIDevice *dev) 275 { 276 if (dev->irq_state) { 277 dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT; 278 } else { 279 dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; 280 } 281 } 282 283 void pci_device_deassert_intx(PCIDevice *dev) 284 { 285 int i; 286 for (i = 0; i < PCI_NUM_PINS; ++i) { 287 pci_irq_handler(dev, i, 0); 288 } 289 } 290 291 static void pci_do_device_reset(PCIDevice *dev) 292 { 293 int r; 294 295 pci_device_deassert_intx(dev); 296 assert(dev->irq_state == 0); 297 298 /* Clear all writable bits */ 299 pci_word_test_and_clear_mask(dev->config + PCI_COMMAND, 300 pci_get_word(dev->wmask + PCI_COMMAND) | 301 pci_get_word(dev->w1cmask + PCI_COMMAND)); 302 pci_word_test_and_clear_mask(dev->config + PCI_STATUS, 303 pci_get_word(dev->wmask + PCI_STATUS) | 304 pci_get_word(dev->w1cmask + PCI_STATUS)); 305 /* Some devices make bits of PCI_INTERRUPT_LINE read only */ 306 pci_byte_test_and_clear_mask(dev->config + PCI_INTERRUPT_LINE, 307 pci_get_word(dev->wmask + PCI_INTERRUPT_LINE) | 308 pci_get_word(dev->w1cmask + PCI_INTERRUPT_LINE)); 309 dev->config[PCI_CACHE_LINE_SIZE] = 0x0; 310 for (r = 0; r < PCI_NUM_REGIONS; ++r) { 311 PCIIORegion *region = &dev->io_regions[r]; 312 if (!region->size) { 313 continue; 314 } 315 316 if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) && 317 region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { 318 pci_set_quad(dev->config + pci_bar(dev, r), region->type); 319 } else { 320 pci_set_long(dev->config + pci_bar(dev, r), region->type); 321 } 322 } 323 pci_update_mappings(dev); 324 325 msi_reset(dev); 326 msix_reset(dev); 327 } 328 329 /* 330 * This function is called on #RST and FLR. 331 * FLR if PCI_EXP_DEVCTL_BCR_FLR is set 332 */ 333 void pci_device_reset(PCIDevice *dev) 334 { 335 qdev_reset_all(&dev->qdev); 336 pci_do_device_reset(dev); 337 } 338 339 /* 340 * Trigger pci bus reset under a given bus. 341 * Called via qbus_reset_all on RST# assert, after the devices 342 * have been reset qdev_reset_all-ed already. 343 */ 344 static void pcibus_reset(BusState *qbus) 345 { 346 PCIBus *bus = DO_UPCAST(PCIBus, qbus, qbus); 347 int i; 348 349 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { 350 if (bus->devices[i]) { 351 pci_do_device_reset(bus->devices[i]); 352 } 353 } 354 355 for (i = 0; i < bus->nirq; i++) { 356 assert(bus->irq_count[i] == 0); 357 } 358 } 359 360 static void pci_host_bus_register(DeviceState *host) 361 { 362 PCIHostState *host_bridge = PCI_HOST_BRIDGE(host); 363 364 QLIST_INSERT_HEAD(&pci_host_bridges, host_bridge, next); 365 } 366 367 static void pci_host_bus_unregister(DeviceState *host) 368 { 369 PCIHostState *host_bridge = PCI_HOST_BRIDGE(host); 370 371 QLIST_REMOVE(host_bridge, next); 372 } 373 374 PCIBus *pci_device_root_bus(const PCIDevice *d) 375 { 376 PCIBus *bus = pci_get_bus(d); 377 378 while (!pci_bus_is_root(bus)) { 379 d = bus->parent_dev; 380 assert(d != NULL); 381 382 bus = pci_get_bus(d); 383 } 384 385 return bus; 386 } 387 388 const char *pci_root_bus_path(PCIDevice *dev) 389 { 390 PCIBus *rootbus = pci_device_root_bus(dev); 391 PCIHostState *host_bridge = PCI_HOST_BRIDGE(rootbus->qbus.parent); 392 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_GET_CLASS(host_bridge); 393 394 assert(host_bridge->bus == rootbus); 395 396 if (hc->root_bus_path) { 397 return (*hc->root_bus_path)(host_bridge, rootbus); 398 } 399 400 return rootbus->qbus.name; 401 } 402 403 static void pci_root_bus_init(PCIBus *bus, DeviceState *parent, 404 MemoryRegion *address_space_mem, 405 MemoryRegion *address_space_io, 406 uint8_t devfn_min) 407 { 408 assert(PCI_FUNC(devfn_min) == 0); 409 bus->devfn_min = devfn_min; 410 bus->slot_reserved_mask = 0x0; 411 bus->address_space_mem = address_space_mem; 412 bus->address_space_io = address_space_io; 413 bus->flags |= PCI_BUS_IS_ROOT; 414 415 /* host bridge */ 416 QLIST_INIT(&bus->child); 417 418 pci_host_bus_register(parent); 419 } 420 421 static void pci_bus_uninit(PCIBus *bus) 422 { 423 pci_host_bus_unregister(BUS(bus)->parent); 424 } 425 426 bool pci_bus_is_express(PCIBus *bus) 427 { 428 return object_dynamic_cast(OBJECT(bus), TYPE_PCIE_BUS); 429 } 430 431 void pci_root_bus_new_inplace(PCIBus *bus, size_t bus_size, DeviceState *parent, 432 const char *name, 433 MemoryRegion *address_space_mem, 434 MemoryRegion *address_space_io, 435 uint8_t devfn_min, const char *typename) 436 { 437 qbus_create_inplace(bus, bus_size, typename, parent, name); 438 pci_root_bus_init(bus, parent, address_space_mem, address_space_io, 439 devfn_min); 440 } 441 442 PCIBus *pci_root_bus_new(DeviceState *parent, const char *name, 443 MemoryRegion *address_space_mem, 444 MemoryRegion *address_space_io, 445 uint8_t devfn_min, const char *typename) 446 { 447 PCIBus *bus; 448 449 bus = PCI_BUS(qbus_create(typename, parent, name)); 450 pci_root_bus_init(bus, parent, address_space_mem, address_space_io, 451 devfn_min); 452 return bus; 453 } 454 455 void pci_root_bus_cleanup(PCIBus *bus) 456 { 457 pci_bus_uninit(bus); 458 /* the caller of the unplug hotplug handler will delete this device */ 459 object_property_set_bool(OBJECT(bus), false, "realized", &error_abort); 460 } 461 462 void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, 463 void *irq_opaque, int nirq) 464 { 465 bus->set_irq = set_irq; 466 bus->map_irq = map_irq; 467 bus->irq_opaque = irq_opaque; 468 bus->nirq = nirq; 469 bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0])); 470 } 471 472 void pci_bus_irqs_cleanup(PCIBus *bus) 473 { 474 bus->set_irq = NULL; 475 bus->map_irq = NULL; 476 bus->irq_opaque = NULL; 477 bus->nirq = 0; 478 g_free(bus->irq_count); 479 } 480 481 PCIBus *pci_register_root_bus(DeviceState *parent, const char *name, 482 pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, 483 void *irq_opaque, 484 MemoryRegion *address_space_mem, 485 MemoryRegion *address_space_io, 486 uint8_t devfn_min, int nirq, 487 const char *typename) 488 { 489 PCIBus *bus; 490 491 bus = pci_root_bus_new(parent, name, address_space_mem, 492 address_space_io, devfn_min, typename); 493 pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq); 494 return bus; 495 } 496 497 void pci_unregister_root_bus(PCIBus *bus) 498 { 499 pci_bus_irqs_cleanup(bus); 500 pci_root_bus_cleanup(bus); 501 } 502 503 int pci_bus_num(PCIBus *s) 504 { 505 return PCI_BUS_GET_CLASS(s)->bus_num(s); 506 } 507 508 int pci_bus_numa_node(PCIBus *bus) 509 { 510 return PCI_BUS_GET_CLASS(bus)->numa_node(bus); 511 } 512 513 static int get_pci_config_device(QEMUFile *f, void *pv, size_t size, 514 const VMStateField *field) 515 { 516 PCIDevice *s = container_of(pv, PCIDevice, config); 517 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(s); 518 uint8_t *config; 519 int i; 520 521 assert(size == pci_config_size(s)); 522 config = g_malloc(size); 523 524 qemu_get_buffer(f, config, size); 525 for (i = 0; i < size; ++i) { 526 if ((config[i] ^ s->config[i]) & 527 s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) { 528 error_report("%s: Bad config data: i=0x%x read: %x device: %x " 529 "cmask: %x wmask: %x w1cmask:%x", __func__, 530 i, config[i], s->config[i], 531 s->cmask[i], s->wmask[i], s->w1cmask[i]); 532 g_free(config); 533 return -EINVAL; 534 } 535 } 536 memcpy(s->config, config, size); 537 538 pci_update_mappings(s); 539 if (pc->is_bridge) { 540 PCIBridge *b = PCI_BRIDGE(s); 541 pci_bridge_update_mappings(b); 542 } 543 544 memory_region_set_enabled(&s->bus_master_enable_region, 545 pci_get_word(s->config + PCI_COMMAND) 546 & PCI_COMMAND_MASTER); 547 548 g_free(config); 549 return 0; 550 } 551 552 /* just put buffer */ 553 static int put_pci_config_device(QEMUFile *f, void *pv, size_t size, 554 const VMStateField *field, QJSON *vmdesc) 555 { 556 const uint8_t **v = pv; 557 assert(size == pci_config_size(container_of(pv, PCIDevice, config))); 558 qemu_put_buffer(f, *v, size); 559 560 return 0; 561 } 562 563 static VMStateInfo vmstate_info_pci_config = { 564 .name = "pci config", 565 .get = get_pci_config_device, 566 .put = put_pci_config_device, 567 }; 568 569 static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size, 570 const VMStateField *field) 571 { 572 PCIDevice *s = container_of(pv, PCIDevice, irq_state); 573 uint32_t irq_state[PCI_NUM_PINS]; 574 int i; 575 for (i = 0; i < PCI_NUM_PINS; ++i) { 576 irq_state[i] = qemu_get_be32(f); 577 if (irq_state[i] != 0x1 && irq_state[i] != 0) { 578 fprintf(stderr, "irq state %d: must be 0 or 1.\n", 579 irq_state[i]); 580 return -EINVAL; 581 } 582 } 583 584 for (i = 0; i < PCI_NUM_PINS; ++i) { 585 pci_set_irq_state(s, i, irq_state[i]); 586 } 587 588 return 0; 589 } 590 591 static int put_pci_irq_state(QEMUFile *f, void *pv, size_t size, 592 const VMStateField *field, QJSON *vmdesc) 593 { 594 int i; 595 PCIDevice *s = container_of(pv, PCIDevice, irq_state); 596 597 for (i = 0; i < PCI_NUM_PINS; ++i) { 598 qemu_put_be32(f, pci_irq_state(s, i)); 599 } 600 601 return 0; 602 } 603 604 static VMStateInfo vmstate_info_pci_irq_state = { 605 .name = "pci irq state", 606 .get = get_pci_irq_state, 607 .put = put_pci_irq_state, 608 }; 609 610 static bool migrate_is_pcie(void *opaque, int version_id) 611 { 612 return pci_is_express((PCIDevice *)opaque); 613 } 614 615 static bool migrate_is_not_pcie(void *opaque, int version_id) 616 { 617 return !pci_is_express((PCIDevice *)opaque); 618 } 619 620 const VMStateDescription vmstate_pci_device = { 621 .name = "PCIDevice", 622 .version_id = 2, 623 .minimum_version_id = 1, 624 .fields = (VMStateField[]) { 625 VMSTATE_INT32_POSITIVE_LE(version_id, PCIDevice), 626 VMSTATE_BUFFER_UNSAFE_INFO_TEST(config, PCIDevice, 627 migrate_is_not_pcie, 628 0, vmstate_info_pci_config, 629 PCI_CONFIG_SPACE_SIZE), 630 VMSTATE_BUFFER_UNSAFE_INFO_TEST(config, PCIDevice, 631 migrate_is_pcie, 632 0, vmstate_info_pci_config, 633 PCIE_CONFIG_SPACE_SIZE), 634 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, 635 vmstate_info_pci_irq_state, 636 PCI_NUM_PINS * sizeof(int32_t)), 637 VMSTATE_END_OF_LIST() 638 } 639 }; 640 641 642 void pci_device_save(PCIDevice *s, QEMUFile *f) 643 { 644 /* Clear interrupt status bit: it is implicit 645 * in irq_state which we are saving. 646 * This makes us compatible with old devices 647 * which never set or clear this bit. */ 648 s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; 649 vmstate_save_state(f, &vmstate_pci_device, s, NULL); 650 /* Restore the interrupt status bit. */ 651 pci_update_irq_status(s); 652 } 653 654 int pci_device_load(PCIDevice *s, QEMUFile *f) 655 { 656 int ret; 657 ret = vmstate_load_state(f, &vmstate_pci_device, s, s->version_id); 658 /* Restore the interrupt status bit. */ 659 pci_update_irq_status(s); 660 return ret; 661 } 662 663 static void pci_set_default_subsystem_id(PCIDevice *pci_dev) 664 { 665 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, 666 pci_default_sub_vendor_id); 667 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, 668 pci_default_sub_device_id); 669 } 670 671 /* 672 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL 673 * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error 674 */ 675 static int pci_parse_devaddr(const char *addr, int *domp, int *busp, 676 unsigned int *slotp, unsigned int *funcp) 677 { 678 const char *p; 679 char *e; 680 unsigned long val; 681 unsigned long dom = 0, bus = 0; 682 unsigned int slot = 0; 683 unsigned int func = 0; 684 685 p = addr; 686 val = strtoul(p, &e, 16); 687 if (e == p) 688 return -1; 689 if (*e == ':') { 690 bus = val; 691 p = e + 1; 692 val = strtoul(p, &e, 16); 693 if (e == p) 694 return -1; 695 if (*e == ':') { 696 dom = bus; 697 bus = val; 698 p = e + 1; 699 val = strtoul(p, &e, 16); 700 if (e == p) 701 return -1; 702 } 703 } 704 705 slot = val; 706 707 if (funcp != NULL) { 708 if (*e != '.') 709 return -1; 710 711 p = e + 1; 712 val = strtoul(p, &e, 16); 713 if (e == p) 714 return -1; 715 716 func = val; 717 } 718 719 /* if funcp == NULL func is 0 */ 720 if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7) 721 return -1; 722 723 if (*e) 724 return -1; 725 726 *domp = dom; 727 *busp = bus; 728 *slotp = slot; 729 if (funcp != NULL) 730 *funcp = func; 731 return 0; 732 } 733 734 static void pci_init_cmask(PCIDevice *dev) 735 { 736 pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff); 737 pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff); 738 dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST; 739 dev->cmask[PCI_REVISION_ID] = 0xff; 740 dev->cmask[PCI_CLASS_PROG] = 0xff; 741 pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff); 742 dev->cmask[PCI_HEADER_TYPE] = 0xff; 743 dev->cmask[PCI_CAPABILITY_LIST] = 0xff; 744 } 745 746 static void pci_init_wmask(PCIDevice *dev) 747 { 748 int config_size = pci_config_size(dev); 749 750 dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff; 751 dev->wmask[PCI_INTERRUPT_LINE] = 0xff; 752 pci_set_word(dev->wmask + PCI_COMMAND, 753 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | 754 PCI_COMMAND_INTX_DISABLE); 755 pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR); 756 757 memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff, 758 config_size - PCI_CONFIG_HEADER_SIZE); 759 } 760 761 static void pci_init_w1cmask(PCIDevice *dev) 762 { 763 /* 764 * Note: It's okay to set w1cmask even for readonly bits as 765 * long as their value is hardwired to 0. 766 */ 767 pci_set_word(dev->w1cmask + PCI_STATUS, 768 PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT | 769 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT | 770 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY); 771 } 772 773 static void pci_init_mask_bridge(PCIDevice *d) 774 { 775 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and 776 PCI_SEC_LETENCY_TIMER */ 777 memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4); 778 779 /* base and limit */ 780 d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff; 781 d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff; 782 pci_set_word(d->wmask + PCI_MEMORY_BASE, 783 PCI_MEMORY_RANGE_MASK & 0xffff); 784 pci_set_word(d->wmask + PCI_MEMORY_LIMIT, 785 PCI_MEMORY_RANGE_MASK & 0xffff); 786 pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE, 787 PCI_PREF_RANGE_MASK & 0xffff); 788 pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT, 789 PCI_PREF_RANGE_MASK & 0xffff); 790 791 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */ 792 memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8); 793 794 /* Supported memory and i/o types */ 795 d->config[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_16; 796 d->config[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_16; 797 pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_BASE, 798 PCI_PREF_RANGE_TYPE_64); 799 pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_LIMIT, 800 PCI_PREF_RANGE_TYPE_64); 801 802 /* 803 * TODO: Bridges default to 10-bit VGA decoding but we currently only 804 * implement 16-bit decoding (no alias support). 805 */ 806 pci_set_word(d->wmask + PCI_BRIDGE_CONTROL, 807 PCI_BRIDGE_CTL_PARITY | 808 PCI_BRIDGE_CTL_SERR | 809 PCI_BRIDGE_CTL_ISA | 810 PCI_BRIDGE_CTL_VGA | 811 PCI_BRIDGE_CTL_VGA_16BIT | 812 PCI_BRIDGE_CTL_MASTER_ABORT | 813 PCI_BRIDGE_CTL_BUS_RESET | 814 PCI_BRIDGE_CTL_FAST_BACK | 815 PCI_BRIDGE_CTL_DISCARD | 816 PCI_BRIDGE_CTL_SEC_DISCARD | 817 PCI_BRIDGE_CTL_DISCARD_SERR); 818 /* Below does not do anything as we never set this bit, put here for 819 * completeness. */ 820 pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL, 821 PCI_BRIDGE_CTL_DISCARD_STATUS); 822 d->cmask[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_MASK; 823 d->cmask[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_MASK; 824 pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_BASE, 825 PCI_PREF_RANGE_TYPE_MASK); 826 pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_LIMIT, 827 PCI_PREF_RANGE_TYPE_MASK); 828 } 829 830 static void pci_init_multifunction(PCIBus *bus, PCIDevice *dev, Error **errp) 831 { 832 uint8_t slot = PCI_SLOT(dev->devfn); 833 uint8_t func; 834 835 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { 836 dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION; 837 } 838 839 /* 840 * multifunction bit is interpreted in two ways as follows. 841 * - all functions must set the bit to 1. 842 * Example: Intel X53 843 * - function 0 must set the bit, but the rest function (> 0) 844 * is allowed to leave the bit to 0. 845 * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10, 846 * 847 * So OS (at least Linux) checks the bit of only function 0, 848 * and doesn't see the bit of function > 0. 849 * 850 * The below check allows both interpretation. 851 */ 852 if (PCI_FUNC(dev->devfn)) { 853 PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)]; 854 if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) { 855 /* function 0 should set multifunction bit */ 856 error_setg(errp, "PCI: single function device can't be populated " 857 "in function %x.%x", slot, PCI_FUNC(dev->devfn)); 858 return; 859 } 860 return; 861 } 862 863 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { 864 return; 865 } 866 /* function 0 indicates single function, so function > 0 must be NULL */ 867 for (func = 1; func < PCI_FUNC_MAX; ++func) { 868 if (bus->devices[PCI_DEVFN(slot, func)]) { 869 error_setg(errp, "PCI: %x.0 indicates single function, " 870 "but %x.%x is already populated.", 871 slot, slot, func); 872 return; 873 } 874 } 875 } 876 877 static void pci_config_alloc(PCIDevice *pci_dev) 878 { 879 int config_size = pci_config_size(pci_dev); 880 881 pci_dev->config = g_malloc0(config_size); 882 pci_dev->cmask = g_malloc0(config_size); 883 pci_dev->wmask = g_malloc0(config_size); 884 pci_dev->w1cmask = g_malloc0(config_size); 885 pci_dev->used = g_malloc0(config_size); 886 } 887 888 static void pci_config_free(PCIDevice *pci_dev) 889 { 890 g_free(pci_dev->config); 891 g_free(pci_dev->cmask); 892 g_free(pci_dev->wmask); 893 g_free(pci_dev->w1cmask); 894 g_free(pci_dev->used); 895 } 896 897 static void do_pci_unregister_device(PCIDevice *pci_dev) 898 { 899 pci_get_bus(pci_dev)->devices[pci_dev->devfn] = NULL; 900 pci_config_free(pci_dev); 901 902 if (memory_region_is_mapped(&pci_dev->bus_master_enable_region)) { 903 memory_region_del_subregion(&pci_dev->bus_master_container_region, 904 &pci_dev->bus_master_enable_region); 905 } 906 address_space_destroy(&pci_dev->bus_master_as); 907 } 908 909 /* Extract PCIReqIDCache into BDF format */ 910 static uint16_t pci_req_id_cache_extract(PCIReqIDCache *cache) 911 { 912 uint8_t bus_n; 913 uint16_t result; 914 915 switch (cache->type) { 916 case PCI_REQ_ID_BDF: 917 result = pci_get_bdf(cache->dev); 918 break; 919 case PCI_REQ_ID_SECONDARY_BUS: 920 bus_n = pci_dev_bus_num(cache->dev); 921 result = PCI_BUILD_BDF(bus_n, 0); 922 break; 923 default: 924 error_report("Invalid PCI requester ID cache type: %d", 925 cache->type); 926 exit(1); 927 break; 928 } 929 930 return result; 931 } 932 933 /* Parse bridges up to the root complex and return requester ID 934 * cache for specific device. For full PCIe topology, the cache 935 * result would be exactly the same as getting BDF of the device. 936 * However, several tricks are required when system mixed up with 937 * legacy PCI devices and PCIe-to-PCI bridges. 938 * 939 * Here we cache the proxy device (and type) not requester ID since 940 * bus number might change from time to time. 941 */ 942 static PCIReqIDCache pci_req_id_cache_get(PCIDevice *dev) 943 { 944 PCIDevice *parent; 945 PCIReqIDCache cache = { 946 .dev = dev, 947 .type = PCI_REQ_ID_BDF, 948 }; 949 950 while (!pci_bus_is_root(pci_get_bus(dev))) { 951 /* We are under PCI/PCIe bridges */ 952 parent = pci_get_bus(dev)->parent_dev; 953 if (pci_is_express(parent)) { 954 if (pcie_cap_get_type(parent) == PCI_EXP_TYPE_PCI_BRIDGE) { 955 /* When we pass through PCIe-to-PCI/PCIX bridges, we 956 * override the requester ID using secondary bus 957 * number of parent bridge with zeroed devfn 958 * (pcie-to-pci bridge spec chap 2.3). */ 959 cache.type = PCI_REQ_ID_SECONDARY_BUS; 960 cache.dev = dev; 961 } 962 } else { 963 /* Legacy PCI, override requester ID with the bridge's 964 * BDF upstream. When the root complex connects to 965 * legacy PCI devices (including buses), it can only 966 * obtain requester ID info from directly attached 967 * devices. If devices are attached under bridges, only 968 * the requester ID of the bridge that is directly 969 * attached to the root complex can be recognized. */ 970 cache.type = PCI_REQ_ID_BDF; 971 cache.dev = parent; 972 } 973 dev = parent; 974 } 975 976 return cache; 977 } 978 979 uint16_t pci_requester_id(PCIDevice *dev) 980 { 981 return pci_req_id_cache_extract(&dev->requester_id_cache); 982 } 983 984 static bool pci_bus_devfn_available(PCIBus *bus, int devfn) 985 { 986 return !(bus->devices[devfn]); 987 } 988 989 static bool pci_bus_devfn_reserved(PCIBus *bus, int devfn) 990 { 991 return bus->slot_reserved_mask & (1UL << PCI_SLOT(devfn)); 992 } 993 994 /* -1 for devfn means auto assign */ 995 static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, 996 const char *name, int devfn, 997 Error **errp) 998 { 999 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); 1000 PCIConfigReadFunc *config_read = pc->config_read; 1001 PCIConfigWriteFunc *config_write = pc->config_write; 1002 Error *local_err = NULL; 1003 DeviceState *dev = DEVICE(pci_dev); 1004 PCIBus *bus = pci_get_bus(pci_dev); 1005 1006 /* Only pci bridges can be attached to extra PCI root buses */ 1007 if (pci_bus_is_root(bus) && bus->parent_dev && !pc->is_bridge) { 1008 error_setg(errp, 1009 "PCI: Only PCI/PCIe bridges can be plugged into %s", 1010 bus->parent_dev->name); 1011 return NULL; 1012 } 1013 1014 if (devfn < 0) { 1015 for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices); 1016 devfn += PCI_FUNC_MAX) { 1017 if (pci_bus_devfn_available(bus, devfn) && 1018 !pci_bus_devfn_reserved(bus, devfn)) { 1019 goto found; 1020 } 1021 } 1022 error_setg(errp, "PCI: no slot/function available for %s, all in use " 1023 "or reserved", name); 1024 return NULL; 1025 found: ; 1026 } else if (pci_bus_devfn_reserved(bus, devfn)) { 1027 error_setg(errp, "PCI: slot %d function %d not available for %s," 1028 " reserved", 1029 PCI_SLOT(devfn), PCI_FUNC(devfn), name); 1030 return NULL; 1031 } else if (!pci_bus_devfn_available(bus, devfn)) { 1032 error_setg(errp, "PCI: slot %d function %d not available for %s," 1033 " in use by %s", 1034 PCI_SLOT(devfn), PCI_FUNC(devfn), name, 1035 bus->devices[devfn]->name); 1036 return NULL; 1037 } else if (dev->hotplugged && 1038 pci_get_function_0(pci_dev)) { 1039 error_setg(errp, "PCI: slot %d function 0 already ocuppied by %s," 1040 " new func %s cannot be exposed to guest.", 1041 PCI_SLOT(pci_get_function_0(pci_dev)->devfn), 1042 pci_get_function_0(pci_dev)->name, 1043 name); 1044 1045 return NULL; 1046 } 1047 1048 pci_dev->devfn = devfn; 1049 pci_dev->requester_id_cache = pci_req_id_cache_get(pci_dev); 1050 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name); 1051 1052 memory_region_init(&pci_dev->bus_master_container_region, OBJECT(pci_dev), 1053 "bus master container", UINT64_MAX); 1054 address_space_init(&pci_dev->bus_master_as, 1055 &pci_dev->bus_master_container_region, pci_dev->name); 1056 1057 if (qdev_hotplug) { 1058 pci_init_bus_master(pci_dev); 1059 } 1060 pci_dev->irq_state = 0; 1061 pci_config_alloc(pci_dev); 1062 1063 pci_config_set_vendor_id(pci_dev->config, pc->vendor_id); 1064 pci_config_set_device_id(pci_dev->config, pc->device_id); 1065 pci_config_set_revision(pci_dev->config, pc->revision); 1066 pci_config_set_class(pci_dev->config, pc->class_id); 1067 1068 if (!pc->is_bridge) { 1069 if (pc->subsystem_vendor_id || pc->subsystem_id) { 1070 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, 1071 pc->subsystem_vendor_id); 1072 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, 1073 pc->subsystem_id); 1074 } else { 1075 pci_set_default_subsystem_id(pci_dev); 1076 } 1077 } else { 1078 /* subsystem_vendor_id/subsystem_id are only for header type 0 */ 1079 assert(!pc->subsystem_vendor_id); 1080 assert(!pc->subsystem_id); 1081 } 1082 pci_init_cmask(pci_dev); 1083 pci_init_wmask(pci_dev); 1084 pci_init_w1cmask(pci_dev); 1085 if (pc->is_bridge) { 1086 pci_init_mask_bridge(pci_dev); 1087 } 1088 pci_init_multifunction(bus, pci_dev, &local_err); 1089 if (local_err) { 1090 error_propagate(errp, local_err); 1091 do_pci_unregister_device(pci_dev); 1092 return NULL; 1093 } 1094 1095 if (!config_read) 1096 config_read = pci_default_read_config; 1097 if (!config_write) 1098 config_write = pci_default_write_config; 1099 pci_dev->config_read = config_read; 1100 pci_dev->config_write = config_write; 1101 bus->devices[devfn] = pci_dev; 1102 pci_dev->version_id = 2; /* Current pci device vmstate version */ 1103 return pci_dev; 1104 } 1105 1106 static void pci_unregister_io_regions(PCIDevice *pci_dev) 1107 { 1108 PCIIORegion *r; 1109 int i; 1110 1111 for(i = 0; i < PCI_NUM_REGIONS; i++) { 1112 r = &pci_dev->io_regions[i]; 1113 if (!r->size || r->addr == PCI_BAR_UNMAPPED) 1114 continue; 1115 memory_region_del_subregion(r->address_space, r->memory); 1116 } 1117 1118 pci_unregister_vga(pci_dev); 1119 } 1120 1121 static void pci_qdev_unrealize(DeviceState *dev) 1122 { 1123 PCIDevice *pci_dev = PCI_DEVICE(dev); 1124 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); 1125 1126 pci_unregister_io_regions(pci_dev); 1127 pci_del_option_rom(pci_dev); 1128 1129 if (pc->exit) { 1130 pc->exit(pci_dev); 1131 } 1132 1133 pci_device_deassert_intx(pci_dev); 1134 do_pci_unregister_device(pci_dev); 1135 } 1136 1137 void pci_register_bar(PCIDevice *pci_dev, int region_num, 1138 uint8_t type, MemoryRegion *memory) 1139 { 1140 PCIIORegion *r; 1141 uint32_t addr; /* offset in pci config space */ 1142 uint64_t wmask; 1143 pcibus_t size = memory_region_size(memory); 1144 1145 assert(region_num >= 0); 1146 assert(region_num < PCI_NUM_REGIONS); 1147 if (size & (size-1)) { 1148 error_report("ERROR: PCI region size must be pow2 " 1149 "type=0x%x, size=0x%"FMT_PCIBUS"", type, size); 1150 exit(1); 1151 } 1152 1153 r = &pci_dev->io_regions[region_num]; 1154 r->addr = PCI_BAR_UNMAPPED; 1155 r->size = size; 1156 r->type = type; 1157 r->memory = memory; 1158 r->address_space = type & PCI_BASE_ADDRESS_SPACE_IO 1159 ? pci_get_bus(pci_dev)->address_space_io 1160 : pci_get_bus(pci_dev)->address_space_mem; 1161 1162 wmask = ~(size - 1); 1163 if (region_num == PCI_ROM_SLOT) { 1164 /* ROM enable bit is writable */ 1165 wmask |= PCI_ROM_ADDRESS_ENABLE; 1166 } 1167 1168 addr = pci_bar(pci_dev, region_num); 1169 pci_set_long(pci_dev->config + addr, type); 1170 1171 if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) && 1172 r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { 1173 pci_set_quad(pci_dev->wmask + addr, wmask); 1174 pci_set_quad(pci_dev->cmask + addr, ~0ULL); 1175 } else { 1176 pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff); 1177 pci_set_long(pci_dev->cmask + addr, 0xffffffff); 1178 } 1179 } 1180 1181 static void pci_update_vga(PCIDevice *pci_dev) 1182 { 1183 uint16_t cmd; 1184 1185 if (!pci_dev->has_vga) { 1186 return; 1187 } 1188 1189 cmd = pci_get_word(pci_dev->config + PCI_COMMAND); 1190 1191 memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_MEM], 1192 cmd & PCI_COMMAND_MEMORY); 1193 memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO], 1194 cmd & PCI_COMMAND_IO); 1195 memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI], 1196 cmd & PCI_COMMAND_IO); 1197 } 1198 1199 void pci_register_vga(PCIDevice *pci_dev, MemoryRegion *mem, 1200 MemoryRegion *io_lo, MemoryRegion *io_hi) 1201 { 1202 PCIBus *bus = pci_get_bus(pci_dev); 1203 1204 assert(!pci_dev->has_vga); 1205 1206 assert(memory_region_size(mem) == QEMU_PCI_VGA_MEM_SIZE); 1207 pci_dev->vga_regions[QEMU_PCI_VGA_MEM] = mem; 1208 memory_region_add_subregion_overlap(bus->address_space_mem, 1209 QEMU_PCI_VGA_MEM_BASE, mem, 1); 1210 1211 assert(memory_region_size(io_lo) == QEMU_PCI_VGA_IO_LO_SIZE); 1212 pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO] = io_lo; 1213 memory_region_add_subregion_overlap(bus->address_space_io, 1214 QEMU_PCI_VGA_IO_LO_BASE, io_lo, 1); 1215 1216 assert(memory_region_size(io_hi) == QEMU_PCI_VGA_IO_HI_SIZE); 1217 pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI] = io_hi; 1218 memory_region_add_subregion_overlap(bus->address_space_io, 1219 QEMU_PCI_VGA_IO_HI_BASE, io_hi, 1); 1220 pci_dev->has_vga = true; 1221 1222 pci_update_vga(pci_dev); 1223 } 1224 1225 void pci_unregister_vga(PCIDevice *pci_dev) 1226 { 1227 PCIBus *bus = pci_get_bus(pci_dev); 1228 1229 if (!pci_dev->has_vga) { 1230 return; 1231 } 1232 1233 memory_region_del_subregion(bus->address_space_mem, 1234 pci_dev->vga_regions[QEMU_PCI_VGA_MEM]); 1235 memory_region_del_subregion(bus->address_space_io, 1236 pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO]); 1237 memory_region_del_subregion(bus->address_space_io, 1238 pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI]); 1239 pci_dev->has_vga = false; 1240 } 1241 1242 pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num) 1243 { 1244 return pci_dev->io_regions[region_num].addr; 1245 } 1246 1247 static pcibus_t pci_bar_address(PCIDevice *d, 1248 int reg, uint8_t type, pcibus_t size) 1249 { 1250 pcibus_t new_addr, last_addr; 1251 int bar = pci_bar(d, reg); 1252 uint16_t cmd = pci_get_word(d->config + PCI_COMMAND); 1253 Object *machine = qdev_get_machine(); 1254 ObjectClass *oc = object_get_class(machine); 1255 MachineClass *mc = MACHINE_CLASS(oc); 1256 bool allow_0_address = mc->pci_allow_0_address; 1257 1258 if (type & PCI_BASE_ADDRESS_SPACE_IO) { 1259 if (!(cmd & PCI_COMMAND_IO)) { 1260 return PCI_BAR_UNMAPPED; 1261 } 1262 new_addr = pci_get_long(d->config + bar) & ~(size - 1); 1263 last_addr = new_addr + size - 1; 1264 /* Check if 32 bit BAR wraps around explicitly. 1265 * TODO: make priorities correct and remove this work around. 1266 */ 1267 if (last_addr <= new_addr || last_addr >= UINT32_MAX || 1268 (!allow_0_address && new_addr == 0)) { 1269 return PCI_BAR_UNMAPPED; 1270 } 1271 return new_addr; 1272 } 1273 1274 if (!(cmd & PCI_COMMAND_MEMORY)) { 1275 return PCI_BAR_UNMAPPED; 1276 } 1277 if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) { 1278 new_addr = pci_get_quad(d->config + bar); 1279 } else { 1280 new_addr = pci_get_long(d->config + bar); 1281 } 1282 /* the ROM slot has a specific enable bit */ 1283 if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) { 1284 return PCI_BAR_UNMAPPED; 1285 } 1286 new_addr &= ~(size - 1); 1287 last_addr = new_addr + size - 1; 1288 /* NOTE: we do not support wrapping */ 1289 /* XXX: as we cannot support really dynamic 1290 mappings, we handle specific values as invalid 1291 mappings. */ 1292 if (last_addr <= new_addr || last_addr == PCI_BAR_UNMAPPED || 1293 (!allow_0_address && new_addr == 0)) { 1294 return PCI_BAR_UNMAPPED; 1295 } 1296 1297 /* Now pcibus_t is 64bit. 1298 * Check if 32 bit BAR wraps around explicitly. 1299 * Without this, PC ide doesn't work well. 1300 * TODO: remove this work around. 1301 */ 1302 if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) { 1303 return PCI_BAR_UNMAPPED; 1304 } 1305 1306 /* 1307 * OS is allowed to set BAR beyond its addressable 1308 * bits. For example, 32 bit OS can set 64bit bar 1309 * to >4G. Check it. TODO: we might need to support 1310 * it in the future for e.g. PAE. 1311 */ 1312 if (last_addr >= HWADDR_MAX) { 1313 return PCI_BAR_UNMAPPED; 1314 } 1315 1316 return new_addr; 1317 } 1318 1319 static void pci_update_mappings(PCIDevice *d) 1320 { 1321 PCIIORegion *r; 1322 int i; 1323 pcibus_t new_addr; 1324 1325 for(i = 0; i < PCI_NUM_REGIONS; i++) { 1326 r = &d->io_regions[i]; 1327 1328 /* this region isn't registered */ 1329 if (!r->size) 1330 continue; 1331 1332 new_addr = pci_bar_address(d, i, r->type, r->size); 1333 1334 /* This bar isn't changed */ 1335 if (new_addr == r->addr) 1336 continue; 1337 1338 /* now do the real mapping */ 1339 if (r->addr != PCI_BAR_UNMAPPED) { 1340 trace_pci_update_mappings_del(d, pci_dev_bus_num(d), 1341 PCI_SLOT(d->devfn), 1342 PCI_FUNC(d->devfn), 1343 i, r->addr, r->size); 1344 memory_region_del_subregion(r->address_space, r->memory); 1345 } 1346 r->addr = new_addr; 1347 if (r->addr != PCI_BAR_UNMAPPED) { 1348 trace_pci_update_mappings_add(d, pci_dev_bus_num(d), 1349 PCI_SLOT(d->devfn), 1350 PCI_FUNC(d->devfn), 1351 i, r->addr, r->size); 1352 memory_region_add_subregion_overlap(r->address_space, 1353 r->addr, r->memory, 1); 1354 } 1355 } 1356 1357 pci_update_vga(d); 1358 } 1359 1360 static inline int pci_irq_disabled(PCIDevice *d) 1361 { 1362 return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE; 1363 } 1364 1365 /* Called after interrupt disabled field update in config space, 1366 * assert/deassert interrupts if necessary. 1367 * Gets original interrupt disable bit value (before update). */ 1368 static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled) 1369 { 1370 int i, disabled = pci_irq_disabled(d); 1371 if (disabled == was_irq_disabled) 1372 return; 1373 for (i = 0; i < PCI_NUM_PINS; ++i) { 1374 int state = pci_irq_state(d, i); 1375 pci_change_irq_level(d, i, disabled ? -state : state); 1376 } 1377 } 1378 1379 uint32_t pci_default_read_config(PCIDevice *d, 1380 uint32_t address, int len) 1381 { 1382 uint32_t val = 0; 1383 1384 if (pci_is_express_downstream_port(d) && 1385 ranges_overlap(address, len, d->exp.exp_cap + PCI_EXP_LNKSTA, 2)) { 1386 pcie_sync_bridge_lnk(d); 1387 } 1388 memcpy(&val, d->config + address, len); 1389 return le32_to_cpu(val); 1390 } 1391 1392 void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val_in, int l) 1393 { 1394 int i, was_irq_disabled = pci_irq_disabled(d); 1395 uint32_t val = val_in; 1396 1397 for (i = 0; i < l; val >>= 8, ++i) { 1398 uint8_t wmask = d->wmask[addr + i]; 1399 uint8_t w1cmask = d->w1cmask[addr + i]; 1400 assert(!(wmask & w1cmask)); 1401 d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask); 1402 d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */ 1403 } 1404 if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) || 1405 ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) || 1406 ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) || 1407 range_covers_byte(addr, l, PCI_COMMAND)) 1408 pci_update_mappings(d); 1409 1410 if (range_covers_byte(addr, l, PCI_COMMAND)) { 1411 pci_update_irq_disabled(d, was_irq_disabled); 1412 memory_region_set_enabled(&d->bus_master_enable_region, 1413 pci_get_word(d->config + PCI_COMMAND) 1414 & PCI_COMMAND_MASTER); 1415 } 1416 1417 msi_write_config(d, addr, val_in, l); 1418 msix_write_config(d, addr, val_in, l); 1419 } 1420 1421 /***********************************************************/ 1422 /* generic PCI irq support */ 1423 1424 /* 0 <= irq_num <= 3. level must be 0 or 1 */ 1425 static void pci_irq_handler(void *opaque, int irq_num, int level) 1426 { 1427 PCIDevice *pci_dev = opaque; 1428 int change; 1429 1430 change = level - pci_irq_state(pci_dev, irq_num); 1431 if (!change) 1432 return; 1433 1434 pci_set_irq_state(pci_dev, irq_num, level); 1435 pci_update_irq_status(pci_dev); 1436 if (pci_irq_disabled(pci_dev)) 1437 return; 1438 pci_change_irq_level(pci_dev, irq_num, change); 1439 } 1440 1441 static inline int pci_intx(PCIDevice *pci_dev) 1442 { 1443 return pci_get_byte(pci_dev->config + PCI_INTERRUPT_PIN) - 1; 1444 } 1445 1446 qemu_irq pci_allocate_irq(PCIDevice *pci_dev) 1447 { 1448 int intx = pci_intx(pci_dev); 1449 1450 return qemu_allocate_irq(pci_irq_handler, pci_dev, intx); 1451 } 1452 1453 void pci_set_irq(PCIDevice *pci_dev, int level) 1454 { 1455 int intx = pci_intx(pci_dev); 1456 pci_irq_handler(pci_dev, intx, level); 1457 } 1458 1459 /* Special hooks used by device assignment */ 1460 void pci_bus_set_route_irq_fn(PCIBus *bus, pci_route_irq_fn route_intx_to_irq) 1461 { 1462 assert(pci_bus_is_root(bus)); 1463 bus->route_intx_to_irq = route_intx_to_irq; 1464 } 1465 1466 PCIINTxRoute pci_device_route_intx_to_irq(PCIDevice *dev, int pin) 1467 { 1468 PCIBus *bus; 1469 1470 do { 1471 bus = pci_get_bus(dev); 1472 pin = bus->map_irq(dev, pin); 1473 dev = bus->parent_dev; 1474 } while (dev); 1475 1476 if (!bus->route_intx_to_irq) { 1477 error_report("PCI: Bug - unimplemented PCI INTx routing (%s)", 1478 object_get_typename(OBJECT(bus->qbus.parent))); 1479 return (PCIINTxRoute) { PCI_INTX_DISABLED, -1 }; 1480 } 1481 1482 return bus->route_intx_to_irq(bus->irq_opaque, pin); 1483 } 1484 1485 bool pci_intx_route_changed(PCIINTxRoute *old, PCIINTxRoute *new) 1486 { 1487 return old->mode != new->mode || old->irq != new->irq; 1488 } 1489 1490 void pci_bus_fire_intx_routing_notifier(PCIBus *bus) 1491 { 1492 PCIDevice *dev; 1493 PCIBus *sec; 1494 int i; 1495 1496 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { 1497 dev = bus->devices[i]; 1498 if (dev && dev->intx_routing_notifier) { 1499 dev->intx_routing_notifier(dev); 1500 } 1501 } 1502 1503 QLIST_FOREACH(sec, &bus->child, sibling) { 1504 pci_bus_fire_intx_routing_notifier(sec); 1505 } 1506 } 1507 1508 void pci_device_set_intx_routing_notifier(PCIDevice *dev, 1509 PCIINTxRoutingNotifier notifier) 1510 { 1511 dev->intx_routing_notifier = notifier; 1512 } 1513 1514 /* 1515 * PCI-to-PCI bridge specification 1516 * 9.1: Interrupt routing. Table 9-1 1517 * 1518 * the PCI Express Base Specification, Revision 2.1 1519 * 2.2.8.1: INTx interrutp signaling - Rules 1520 * the Implementation Note 1521 * Table 2-20 1522 */ 1523 /* 1524 * 0 <= pin <= 3 0 = INTA, 1 = INTB, 2 = INTC, 3 = INTD 1525 * 0-origin unlike PCI interrupt pin register. 1526 */ 1527 int pci_swizzle_map_irq_fn(PCIDevice *pci_dev, int pin) 1528 { 1529 return pci_swizzle(PCI_SLOT(pci_dev->devfn), pin); 1530 } 1531 1532 /***********************************************************/ 1533 /* monitor info on PCI */ 1534 1535 typedef struct { 1536 uint16_t class; 1537 const char *desc; 1538 const char *fw_name; 1539 uint16_t fw_ign_bits; 1540 } pci_class_desc; 1541 1542 static const pci_class_desc pci_class_descriptions[] = 1543 { 1544 { 0x0001, "VGA controller", "display"}, 1545 { 0x0100, "SCSI controller", "scsi"}, 1546 { 0x0101, "IDE controller", "ide"}, 1547 { 0x0102, "Floppy controller", "fdc"}, 1548 { 0x0103, "IPI controller", "ipi"}, 1549 { 0x0104, "RAID controller", "raid"}, 1550 { 0x0106, "SATA controller"}, 1551 { 0x0107, "SAS controller"}, 1552 { 0x0180, "Storage controller"}, 1553 { 0x0200, "Ethernet controller", "ethernet"}, 1554 { 0x0201, "Token Ring controller", "token-ring"}, 1555 { 0x0202, "FDDI controller", "fddi"}, 1556 { 0x0203, "ATM controller", "atm"}, 1557 { 0x0280, "Network controller"}, 1558 { 0x0300, "VGA controller", "display", 0x00ff}, 1559 { 0x0301, "XGA controller"}, 1560 { 0x0302, "3D controller"}, 1561 { 0x0380, "Display controller"}, 1562 { 0x0400, "Video controller", "video"}, 1563 { 0x0401, "Audio controller", "sound"}, 1564 { 0x0402, "Phone"}, 1565 { 0x0403, "Audio controller", "sound"}, 1566 { 0x0480, "Multimedia controller"}, 1567 { 0x0500, "RAM controller", "memory"}, 1568 { 0x0501, "Flash controller", "flash"}, 1569 { 0x0580, "Memory controller"}, 1570 { 0x0600, "Host bridge", "host"}, 1571 { 0x0601, "ISA bridge", "isa"}, 1572 { 0x0602, "EISA bridge", "eisa"}, 1573 { 0x0603, "MC bridge", "mca"}, 1574 { 0x0604, "PCI bridge", "pci-bridge"}, 1575 { 0x0605, "PCMCIA bridge", "pcmcia"}, 1576 { 0x0606, "NUBUS bridge", "nubus"}, 1577 { 0x0607, "CARDBUS bridge", "cardbus"}, 1578 { 0x0608, "RACEWAY bridge"}, 1579 { 0x0680, "Bridge"}, 1580 { 0x0700, "Serial port", "serial"}, 1581 { 0x0701, "Parallel port", "parallel"}, 1582 { 0x0800, "Interrupt controller", "interrupt-controller"}, 1583 { 0x0801, "DMA controller", "dma-controller"}, 1584 { 0x0802, "Timer", "timer"}, 1585 { 0x0803, "RTC", "rtc"}, 1586 { 0x0900, "Keyboard", "keyboard"}, 1587 { 0x0901, "Pen", "pen"}, 1588 { 0x0902, "Mouse", "mouse"}, 1589 { 0x0A00, "Dock station", "dock", 0x00ff}, 1590 { 0x0B00, "i386 cpu", "cpu", 0x00ff}, 1591 { 0x0c00, "Fireware contorller", "fireware"}, 1592 { 0x0c01, "Access bus controller", "access-bus"}, 1593 { 0x0c02, "SSA controller", "ssa"}, 1594 { 0x0c03, "USB controller", "usb"}, 1595 { 0x0c04, "Fibre channel controller", "fibre-channel"}, 1596 { 0x0c05, "SMBus"}, 1597 { 0, NULL} 1598 }; 1599 1600 static void pci_for_each_device_under_bus_reverse(PCIBus *bus, 1601 void (*fn)(PCIBus *b, 1602 PCIDevice *d, 1603 void *opaque), 1604 void *opaque) 1605 { 1606 PCIDevice *d; 1607 int devfn; 1608 1609 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { 1610 d = bus->devices[ARRAY_SIZE(bus->devices) - 1 - devfn]; 1611 if (d) { 1612 fn(bus, d, opaque); 1613 } 1614 } 1615 } 1616 1617 void pci_for_each_device_reverse(PCIBus *bus, int bus_num, 1618 void (*fn)(PCIBus *b, PCIDevice *d, void *opaque), 1619 void *opaque) 1620 { 1621 bus = pci_find_bus_nr(bus, bus_num); 1622 1623 if (bus) { 1624 pci_for_each_device_under_bus_reverse(bus, fn, opaque); 1625 } 1626 } 1627 1628 static void pci_for_each_device_under_bus(PCIBus *bus, 1629 void (*fn)(PCIBus *b, PCIDevice *d, 1630 void *opaque), 1631 void *opaque) 1632 { 1633 PCIDevice *d; 1634 int devfn; 1635 1636 for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { 1637 d = bus->devices[devfn]; 1638 if (d) { 1639 fn(bus, d, opaque); 1640 } 1641 } 1642 } 1643 1644 void pci_for_each_device(PCIBus *bus, int bus_num, 1645 void (*fn)(PCIBus *b, PCIDevice *d, void *opaque), 1646 void *opaque) 1647 { 1648 bus = pci_find_bus_nr(bus, bus_num); 1649 1650 if (bus) { 1651 pci_for_each_device_under_bus(bus, fn, opaque); 1652 } 1653 } 1654 1655 static const pci_class_desc *get_class_desc(int class) 1656 { 1657 const pci_class_desc *desc; 1658 1659 desc = pci_class_descriptions; 1660 while (desc->desc && class != desc->class) { 1661 desc++; 1662 } 1663 1664 return desc; 1665 } 1666 1667 static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num); 1668 1669 static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev) 1670 { 1671 PciMemoryRegionList *head = NULL, *cur_item = NULL; 1672 int i; 1673 1674 for (i = 0; i < PCI_NUM_REGIONS; i++) { 1675 const PCIIORegion *r = &dev->io_regions[i]; 1676 PciMemoryRegionList *region; 1677 1678 if (!r->size) { 1679 continue; 1680 } 1681 1682 region = g_malloc0(sizeof(*region)); 1683 region->value = g_malloc0(sizeof(*region->value)); 1684 1685 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) { 1686 region->value->type = g_strdup("io"); 1687 } else { 1688 region->value->type = g_strdup("memory"); 1689 region->value->has_prefetch = true; 1690 region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH); 1691 region->value->has_mem_type_64 = true; 1692 region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64); 1693 } 1694 1695 region->value->bar = i; 1696 region->value->address = r->addr; 1697 region->value->size = r->size; 1698 1699 /* XXX: waiting for the qapi to support GSList */ 1700 if (!cur_item) { 1701 head = cur_item = region; 1702 } else { 1703 cur_item->next = region; 1704 cur_item = region; 1705 } 1706 } 1707 1708 return head; 1709 } 1710 1711 static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus, 1712 int bus_num) 1713 { 1714 PciBridgeInfo *info; 1715 PciMemoryRange *range; 1716 1717 info = g_new0(PciBridgeInfo, 1); 1718 1719 info->bus = g_new0(PciBusInfo, 1); 1720 info->bus->number = dev->config[PCI_PRIMARY_BUS]; 1721 info->bus->secondary = dev->config[PCI_SECONDARY_BUS]; 1722 info->bus->subordinate = dev->config[PCI_SUBORDINATE_BUS]; 1723 1724 range = info->bus->io_range = g_new0(PciMemoryRange, 1); 1725 range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO); 1726 range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO); 1727 1728 range = info->bus->memory_range = g_new0(PciMemoryRange, 1); 1729 range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); 1730 range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); 1731 1732 range = info->bus->prefetchable_range = g_new0(PciMemoryRange, 1); 1733 range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 1734 range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 1735 1736 if (dev->config[PCI_SECONDARY_BUS] != 0) { 1737 PCIBus *child_bus = pci_find_bus_nr(bus, dev->config[PCI_SECONDARY_BUS]); 1738 if (child_bus) { 1739 info->has_devices = true; 1740 info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]); 1741 } 1742 } 1743 1744 return info; 1745 } 1746 1747 static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus, 1748 int bus_num) 1749 { 1750 const pci_class_desc *desc; 1751 PciDeviceInfo *info; 1752 uint8_t type; 1753 int class; 1754 1755 info = g_new0(PciDeviceInfo, 1); 1756 info->bus = bus_num; 1757 info->slot = PCI_SLOT(dev->devfn); 1758 info->function = PCI_FUNC(dev->devfn); 1759 1760 info->class_info = g_new0(PciDeviceClass, 1); 1761 class = pci_get_word(dev->config + PCI_CLASS_DEVICE); 1762 info->class_info->q_class = class; 1763 desc = get_class_desc(class); 1764 if (desc->desc) { 1765 info->class_info->has_desc = true; 1766 info->class_info->desc = g_strdup(desc->desc); 1767 } 1768 1769 info->id = g_new0(PciDeviceId, 1); 1770 info->id->vendor = pci_get_word(dev->config + PCI_VENDOR_ID); 1771 info->id->device = pci_get_word(dev->config + PCI_DEVICE_ID); 1772 info->regions = qmp_query_pci_regions(dev); 1773 info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : ""); 1774 1775 if (dev->config[PCI_INTERRUPT_PIN] != 0) { 1776 info->has_irq = true; 1777 info->irq = dev->config[PCI_INTERRUPT_LINE]; 1778 } 1779 1780 type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; 1781 if (type == PCI_HEADER_TYPE_BRIDGE) { 1782 info->has_pci_bridge = true; 1783 info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num); 1784 } else if (type == PCI_HEADER_TYPE_NORMAL) { 1785 info->id->has_subsystem = info->id->has_subsystem_vendor = true; 1786 info->id->subsystem = pci_get_word(dev->config + PCI_SUBSYSTEM_ID); 1787 info->id->subsystem_vendor = 1788 pci_get_word(dev->config + PCI_SUBSYSTEM_VENDOR_ID); 1789 } else if (type == PCI_HEADER_TYPE_CARDBUS) { 1790 info->id->has_subsystem = info->id->has_subsystem_vendor = true; 1791 info->id->subsystem = pci_get_word(dev->config + PCI_CB_SUBSYSTEM_ID); 1792 info->id->subsystem_vendor = 1793 pci_get_word(dev->config + PCI_CB_SUBSYSTEM_VENDOR_ID); 1794 } 1795 1796 return info; 1797 } 1798 1799 static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num) 1800 { 1801 PciDeviceInfoList *info, *head = NULL, *cur_item = NULL; 1802 PCIDevice *dev; 1803 int devfn; 1804 1805 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { 1806 dev = bus->devices[devfn]; 1807 if (dev) { 1808 info = g_malloc0(sizeof(*info)); 1809 info->value = qmp_query_pci_device(dev, bus, bus_num); 1810 1811 /* XXX: waiting for the qapi to support GSList */ 1812 if (!cur_item) { 1813 head = cur_item = info; 1814 } else { 1815 cur_item->next = info; 1816 cur_item = info; 1817 } 1818 } 1819 } 1820 1821 return head; 1822 } 1823 1824 static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num) 1825 { 1826 PciInfo *info = NULL; 1827 1828 bus = pci_find_bus_nr(bus, bus_num); 1829 if (bus) { 1830 info = g_malloc0(sizeof(*info)); 1831 info->bus = bus_num; 1832 info->devices = qmp_query_pci_devices(bus, bus_num); 1833 } 1834 1835 return info; 1836 } 1837 1838 PciInfoList *qmp_query_pci(Error **errp) 1839 { 1840 PciInfoList *info, *head = NULL, *cur_item = NULL; 1841 PCIHostState *host_bridge; 1842 1843 QLIST_FOREACH(host_bridge, &pci_host_bridges, next) { 1844 info = g_malloc0(sizeof(*info)); 1845 info->value = qmp_query_pci_bus(host_bridge->bus, 1846 pci_bus_num(host_bridge->bus)); 1847 1848 /* XXX: waiting for the qapi to support GSList */ 1849 if (!cur_item) { 1850 head = cur_item = info; 1851 } else { 1852 cur_item->next = info; 1853 cur_item = info; 1854 } 1855 } 1856 1857 return head; 1858 } 1859 1860 /* Initialize a PCI NIC. */ 1861 PCIDevice *pci_nic_init_nofail(NICInfo *nd, PCIBus *rootbus, 1862 const char *default_model, 1863 const char *default_devaddr) 1864 { 1865 const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr; 1866 GSList *list; 1867 GPtrArray *pci_nic_models; 1868 PCIBus *bus; 1869 PCIDevice *pci_dev; 1870 DeviceState *dev; 1871 int devfn; 1872 int i; 1873 int dom, busnr; 1874 unsigned slot; 1875 1876 if (nd->model && !strcmp(nd->model, "virtio")) { 1877 g_free(nd->model); 1878 nd->model = g_strdup("virtio-net-pci"); 1879 } 1880 1881 list = object_class_get_list_sorted(TYPE_PCI_DEVICE, false); 1882 pci_nic_models = g_ptr_array_new(); 1883 while (list) { 1884 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, list->data, 1885 TYPE_DEVICE); 1886 GSList *next; 1887 if (test_bit(DEVICE_CATEGORY_NETWORK, dc->categories) && 1888 dc->user_creatable) { 1889 const char *name = object_class_get_name(list->data); 1890 g_ptr_array_add(pci_nic_models, (gpointer)name); 1891 } 1892 next = list->next; 1893 g_slist_free_1(list); 1894 list = next; 1895 } 1896 g_ptr_array_add(pci_nic_models, NULL); 1897 1898 if (qemu_show_nic_models(nd->model, (const char **)pci_nic_models->pdata)) { 1899 exit(0); 1900 } 1901 1902 i = qemu_find_nic_model(nd, (const char **)pci_nic_models->pdata, 1903 default_model); 1904 if (i < 0) { 1905 exit(1); 1906 } 1907 1908 if (!rootbus) { 1909 error_report("No primary PCI bus"); 1910 exit(1); 1911 } 1912 1913 assert(!rootbus->parent_dev); 1914 1915 if (!devaddr) { 1916 devfn = -1; 1917 busnr = 0; 1918 } else { 1919 if (pci_parse_devaddr(devaddr, &dom, &busnr, &slot, NULL) < 0) { 1920 error_report("Invalid PCI device address %s for device %s", 1921 devaddr, nd->model); 1922 exit(1); 1923 } 1924 1925 if (dom != 0) { 1926 error_report("No support for non-zero PCI domains"); 1927 exit(1); 1928 } 1929 1930 devfn = PCI_DEVFN(slot, 0); 1931 } 1932 1933 bus = pci_find_bus_nr(rootbus, busnr); 1934 if (!bus) { 1935 error_report("Invalid PCI device address %s for device %s", 1936 devaddr, nd->model); 1937 exit(1); 1938 } 1939 1940 pci_dev = pci_create(bus, devfn, nd->model); 1941 dev = &pci_dev->qdev; 1942 qdev_set_nic_properties(dev, nd); 1943 qdev_init_nofail(dev); 1944 g_ptr_array_free(pci_nic_models, true); 1945 return pci_dev; 1946 } 1947 1948 PCIDevice *pci_vga_init(PCIBus *bus) 1949 { 1950 switch (vga_interface_type) { 1951 case VGA_CIRRUS: 1952 return pci_create_simple(bus, -1, "cirrus-vga"); 1953 case VGA_QXL: 1954 return pci_create_simple(bus, -1, "qxl-vga"); 1955 case VGA_STD: 1956 return pci_create_simple(bus, -1, "VGA"); 1957 case VGA_VMWARE: 1958 return pci_create_simple(bus, -1, "vmware-svga"); 1959 case VGA_VIRTIO: 1960 return pci_create_simple(bus, -1, "virtio-vga"); 1961 case VGA_NONE: 1962 default: /* Other non-PCI types. Checking for unsupported types is already 1963 done in vl.c. */ 1964 return NULL; 1965 } 1966 } 1967 1968 /* Whether a given bus number is in range of the secondary 1969 * bus of the given bridge device. */ 1970 static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num) 1971 { 1972 return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) & 1973 PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ && 1974 dev->config[PCI_SECONDARY_BUS] <= bus_num && 1975 bus_num <= dev->config[PCI_SUBORDINATE_BUS]; 1976 } 1977 1978 /* Whether a given bus number is in a range of a root bus */ 1979 static bool pci_root_bus_in_range(PCIBus *bus, int bus_num) 1980 { 1981 int i; 1982 1983 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { 1984 PCIDevice *dev = bus->devices[i]; 1985 1986 if (dev && PCI_DEVICE_GET_CLASS(dev)->is_bridge) { 1987 if (pci_secondary_bus_in_range(dev, bus_num)) { 1988 return true; 1989 } 1990 } 1991 } 1992 1993 return false; 1994 } 1995 1996 static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num) 1997 { 1998 PCIBus *sec; 1999 2000 if (!bus) { 2001 return NULL; 2002 } 2003 2004 if (pci_bus_num(bus) == bus_num) { 2005 return bus; 2006 } 2007 2008 /* Consider all bus numbers in range for the host pci bridge. */ 2009 if (!pci_bus_is_root(bus) && 2010 !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) { 2011 return NULL; 2012 } 2013 2014 /* try child bus */ 2015 for (; bus; bus = sec) { 2016 QLIST_FOREACH(sec, &bus->child, sibling) { 2017 if (pci_bus_num(sec) == bus_num) { 2018 return sec; 2019 } 2020 /* PXB buses assumed to be children of bus 0 */ 2021 if (pci_bus_is_root(sec)) { 2022 if (pci_root_bus_in_range(sec, bus_num)) { 2023 break; 2024 } 2025 } else { 2026 if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) { 2027 break; 2028 } 2029 } 2030 } 2031 } 2032 2033 return NULL; 2034 } 2035 2036 void pci_for_each_bus_depth_first(PCIBus *bus, 2037 void *(*begin)(PCIBus *bus, void *parent_state), 2038 void (*end)(PCIBus *bus, void *state), 2039 void *parent_state) 2040 { 2041 PCIBus *sec; 2042 void *state; 2043 2044 if (!bus) { 2045 return; 2046 } 2047 2048 if (begin) { 2049 state = begin(bus, parent_state); 2050 } else { 2051 state = parent_state; 2052 } 2053 2054 QLIST_FOREACH(sec, &bus->child, sibling) { 2055 pci_for_each_bus_depth_first(sec, begin, end, state); 2056 } 2057 2058 if (end) { 2059 end(bus, state); 2060 } 2061 } 2062 2063 2064 PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn) 2065 { 2066 bus = pci_find_bus_nr(bus, bus_num); 2067 2068 if (!bus) 2069 return NULL; 2070 2071 return bus->devices[devfn]; 2072 } 2073 2074 static void pci_qdev_realize(DeviceState *qdev, Error **errp) 2075 { 2076 PCIDevice *pci_dev = (PCIDevice *)qdev; 2077 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); 2078 ObjectClass *klass = OBJECT_CLASS(pc); 2079 Error *local_err = NULL; 2080 bool is_default_rom; 2081 uint16_t class_id; 2082 2083 /* initialize cap_present for pci_is_express() and pci_config_size(), 2084 * Note that hybrid PCIs are not set automatically and need to manage 2085 * QEMU_PCI_CAP_EXPRESS manually */ 2086 if (object_class_dynamic_cast(klass, INTERFACE_PCIE_DEVICE) && 2087 !object_class_dynamic_cast(klass, INTERFACE_CONVENTIONAL_PCI_DEVICE)) { 2088 pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS; 2089 } 2090 2091 pci_dev = do_pci_register_device(pci_dev, 2092 object_get_typename(OBJECT(qdev)), 2093 pci_dev->devfn, errp); 2094 if (pci_dev == NULL) 2095 return; 2096 2097 if (pc->realize) { 2098 pc->realize(pci_dev, &local_err); 2099 if (local_err) { 2100 error_propagate(errp, local_err); 2101 do_pci_unregister_device(pci_dev); 2102 return; 2103 } 2104 } 2105 2106 if (pci_dev->failover_pair_id) { 2107 if (!pci_bus_is_express(pci_get_bus(pci_dev))) { 2108 error_setg(errp, "failover primary device must be on " 2109 "PCIExpress bus"); 2110 error_propagate(errp, local_err); 2111 pci_qdev_unrealize(DEVICE(pci_dev)); 2112 return; 2113 } 2114 class_id = pci_get_word(pci_dev->config + PCI_CLASS_DEVICE); 2115 if (class_id != PCI_CLASS_NETWORK_ETHERNET) { 2116 error_setg(errp, "failover primary device is not an " 2117 "Ethernet device"); 2118 error_propagate(errp, local_err); 2119 pci_qdev_unrealize(DEVICE(pci_dev)); 2120 return; 2121 } 2122 if (!(pci_dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) 2123 && (PCI_FUNC(pci_dev->devfn) == 0)) { 2124 qdev->allow_unplug_during_migration = true; 2125 } else { 2126 error_setg(errp, "failover: primary device must be in its own " 2127 "PCI slot"); 2128 error_propagate(errp, local_err); 2129 pci_qdev_unrealize(DEVICE(pci_dev)); 2130 return; 2131 } 2132 qdev->allow_unplug_during_migration = true; 2133 } 2134 2135 /* rom loading */ 2136 is_default_rom = false; 2137 if (pci_dev->romfile == NULL && pc->romfile != NULL) { 2138 pci_dev->romfile = g_strdup(pc->romfile); 2139 is_default_rom = true; 2140 } 2141 2142 pci_add_option_rom(pci_dev, is_default_rom, &local_err); 2143 if (local_err) { 2144 error_propagate(errp, local_err); 2145 pci_qdev_unrealize(DEVICE(pci_dev)); 2146 return; 2147 } 2148 } 2149 2150 PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction, 2151 const char *name) 2152 { 2153 DeviceState *dev; 2154 2155 dev = qdev_create(&bus->qbus, name); 2156 qdev_prop_set_int32(dev, "addr", devfn); 2157 qdev_prop_set_bit(dev, "multifunction", multifunction); 2158 return PCI_DEVICE(dev); 2159 } 2160 2161 PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn, 2162 bool multifunction, 2163 const char *name) 2164 { 2165 PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name); 2166 qdev_init_nofail(&dev->qdev); 2167 return dev; 2168 } 2169 2170 PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name) 2171 { 2172 return pci_create_multifunction(bus, devfn, false, name); 2173 } 2174 2175 PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name) 2176 { 2177 return pci_create_simple_multifunction(bus, devfn, false, name); 2178 } 2179 2180 static uint8_t pci_find_space(PCIDevice *pdev, uint8_t size) 2181 { 2182 int offset = PCI_CONFIG_HEADER_SIZE; 2183 int i; 2184 for (i = PCI_CONFIG_HEADER_SIZE; i < PCI_CONFIG_SPACE_SIZE; ++i) { 2185 if (pdev->used[i]) 2186 offset = i + 1; 2187 else if (i - offset + 1 == size) 2188 return offset; 2189 } 2190 return 0; 2191 } 2192 2193 static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id, 2194 uint8_t *prev_p) 2195 { 2196 uint8_t next, prev; 2197 2198 if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST)) 2199 return 0; 2200 2201 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); 2202 prev = next + PCI_CAP_LIST_NEXT) 2203 if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id) 2204 break; 2205 2206 if (prev_p) 2207 *prev_p = prev; 2208 return next; 2209 } 2210 2211 static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset) 2212 { 2213 uint8_t next, prev, found = 0; 2214 2215 if (!(pdev->used[offset])) { 2216 return 0; 2217 } 2218 2219 assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST); 2220 2221 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); 2222 prev = next + PCI_CAP_LIST_NEXT) { 2223 if (next <= offset && next > found) { 2224 found = next; 2225 } 2226 } 2227 return found; 2228 } 2229 2230 /* Patch the PCI vendor and device ids in a PCI rom image if necessary. 2231 This is needed for an option rom which is used for more than one device. */ 2232 static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size) 2233 { 2234 uint16_t vendor_id; 2235 uint16_t device_id; 2236 uint16_t rom_vendor_id; 2237 uint16_t rom_device_id; 2238 uint16_t rom_magic; 2239 uint16_t pcir_offset; 2240 uint8_t checksum; 2241 2242 /* Words in rom data are little endian (like in PCI configuration), 2243 so they can be read / written with pci_get_word / pci_set_word. */ 2244 2245 /* Only a valid rom will be patched. */ 2246 rom_magic = pci_get_word(ptr); 2247 if (rom_magic != 0xaa55) { 2248 PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic); 2249 return; 2250 } 2251 pcir_offset = pci_get_word(ptr + 0x18); 2252 if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) { 2253 PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset); 2254 return; 2255 } 2256 2257 vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID); 2258 device_id = pci_get_word(pdev->config + PCI_DEVICE_ID); 2259 rom_vendor_id = pci_get_word(ptr + pcir_offset + 4); 2260 rom_device_id = pci_get_word(ptr + pcir_offset + 6); 2261 2262 PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile, 2263 vendor_id, device_id, rom_vendor_id, rom_device_id); 2264 2265 checksum = ptr[6]; 2266 2267 if (vendor_id != rom_vendor_id) { 2268 /* Patch vendor id and checksum (at offset 6 for etherboot roms). */ 2269 checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8); 2270 checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8); 2271 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); 2272 ptr[6] = checksum; 2273 pci_set_word(ptr + pcir_offset + 4, vendor_id); 2274 } 2275 2276 if (device_id != rom_device_id) { 2277 /* Patch device id and checksum (at offset 6 for etherboot roms). */ 2278 checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8); 2279 checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8); 2280 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); 2281 ptr[6] = checksum; 2282 pci_set_word(ptr + pcir_offset + 6, device_id); 2283 } 2284 } 2285 2286 /* Add an option rom for the device */ 2287 static void pci_add_option_rom(PCIDevice *pdev, bool is_default_rom, 2288 Error **errp) 2289 { 2290 int size; 2291 char *path; 2292 void *ptr; 2293 char name[32]; 2294 const VMStateDescription *vmsd; 2295 2296 if (!pdev->romfile) 2297 return; 2298 if (strlen(pdev->romfile) == 0) 2299 return; 2300 2301 if (!pdev->rom_bar) { 2302 /* 2303 * Load rom via fw_cfg instead of creating a rom bar, 2304 * for 0.11 compatibility. 2305 */ 2306 int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE); 2307 2308 /* 2309 * Hot-plugged devices can't use the option ROM 2310 * if the rom bar is disabled. 2311 */ 2312 if (DEVICE(pdev)->hotplugged) { 2313 error_setg(errp, "Hot-plugged device without ROM bar" 2314 " can't have an option ROM"); 2315 return; 2316 } 2317 2318 if (class == 0x0300) { 2319 rom_add_vga(pdev->romfile); 2320 } else { 2321 rom_add_option(pdev->romfile, -1); 2322 } 2323 return; 2324 } 2325 2326 path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile); 2327 if (path == NULL) { 2328 path = g_strdup(pdev->romfile); 2329 } 2330 2331 size = get_image_size(path); 2332 if (size < 0) { 2333 error_setg(errp, "failed to find romfile \"%s\"", pdev->romfile); 2334 g_free(path); 2335 return; 2336 } else if (size == 0) { 2337 error_setg(errp, "romfile \"%s\" is empty", pdev->romfile); 2338 g_free(path); 2339 return; 2340 } 2341 size = pow2ceil(size); 2342 2343 vmsd = qdev_get_vmsd(DEVICE(pdev)); 2344 2345 if (vmsd) { 2346 snprintf(name, sizeof(name), "%s.rom", vmsd->name); 2347 } else { 2348 snprintf(name, sizeof(name), "%s.rom", object_get_typename(OBJECT(pdev))); 2349 } 2350 pdev->has_rom = true; 2351 memory_region_init_rom(&pdev->rom, OBJECT(pdev), name, size, &error_fatal); 2352 ptr = memory_region_get_ram_ptr(&pdev->rom); 2353 if (load_image_size(path, ptr, size) < 0) { 2354 error_setg(errp, "failed to load romfile \"%s\"", pdev->romfile); 2355 g_free(path); 2356 return; 2357 } 2358 g_free(path); 2359 2360 if (is_default_rom) { 2361 /* Only the default rom images will be patched (if needed). */ 2362 pci_patch_ids(pdev, ptr, size); 2363 } 2364 2365 pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom); 2366 } 2367 2368 static void pci_del_option_rom(PCIDevice *pdev) 2369 { 2370 if (!pdev->has_rom) 2371 return; 2372 2373 vmstate_unregister_ram(&pdev->rom, &pdev->qdev); 2374 pdev->has_rom = false; 2375 } 2376 2377 /* 2378 * On success, pci_add_capability() returns a positive value 2379 * that the offset of the pci capability. 2380 * On failure, it sets an error and returns a negative error 2381 * code. 2382 */ 2383 int pci_add_capability(PCIDevice *pdev, uint8_t cap_id, 2384 uint8_t offset, uint8_t size, 2385 Error **errp) 2386 { 2387 uint8_t *config; 2388 int i, overlapping_cap; 2389 2390 if (!offset) { 2391 offset = pci_find_space(pdev, size); 2392 /* out of PCI config space is programming error */ 2393 assert(offset); 2394 } else { 2395 /* Verify that capabilities don't overlap. Note: device assignment 2396 * depends on this check to verify that the device is not broken. 2397 * Should never trigger for emulated devices, but it's helpful 2398 * for debugging these. */ 2399 for (i = offset; i < offset + size; i++) { 2400 overlapping_cap = pci_find_capability_at_offset(pdev, i); 2401 if (overlapping_cap) { 2402 error_setg(errp, "%s:%02x:%02x.%x " 2403 "Attempt to add PCI capability %x at offset " 2404 "%x overlaps existing capability %x at offset %x", 2405 pci_root_bus_path(pdev), pci_dev_bus_num(pdev), 2406 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), 2407 cap_id, offset, overlapping_cap, i); 2408 return -EINVAL; 2409 } 2410 } 2411 } 2412 2413 config = pdev->config + offset; 2414 config[PCI_CAP_LIST_ID] = cap_id; 2415 config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST]; 2416 pdev->config[PCI_CAPABILITY_LIST] = offset; 2417 pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST; 2418 memset(pdev->used + offset, 0xFF, QEMU_ALIGN_UP(size, 4)); 2419 /* Make capability read-only by default */ 2420 memset(pdev->wmask + offset, 0, size); 2421 /* Check capability by default */ 2422 memset(pdev->cmask + offset, 0xFF, size); 2423 return offset; 2424 } 2425 2426 /* Unlink capability from the pci config space. */ 2427 void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size) 2428 { 2429 uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev); 2430 if (!offset) 2431 return; 2432 pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT]; 2433 /* Make capability writable again */ 2434 memset(pdev->wmask + offset, 0xff, size); 2435 memset(pdev->w1cmask + offset, 0, size); 2436 /* Clear cmask as device-specific registers can't be checked */ 2437 memset(pdev->cmask + offset, 0, size); 2438 memset(pdev->used + offset, 0, QEMU_ALIGN_UP(size, 4)); 2439 2440 if (!pdev->config[PCI_CAPABILITY_LIST]) 2441 pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST; 2442 } 2443 2444 uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id) 2445 { 2446 return pci_find_capability_list(pdev, cap_id, NULL); 2447 } 2448 2449 static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent) 2450 { 2451 PCIDevice *d = (PCIDevice *)dev; 2452 const pci_class_desc *desc; 2453 char ctxt[64]; 2454 PCIIORegion *r; 2455 int i, class; 2456 2457 class = pci_get_word(d->config + PCI_CLASS_DEVICE); 2458 desc = pci_class_descriptions; 2459 while (desc->desc && class != desc->class) 2460 desc++; 2461 if (desc->desc) { 2462 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc); 2463 } else { 2464 snprintf(ctxt, sizeof(ctxt), "Class %04x", class); 2465 } 2466 2467 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, " 2468 "pci id %04x:%04x (sub %04x:%04x)\n", 2469 indent, "", ctxt, pci_dev_bus_num(d), 2470 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn), 2471 pci_get_word(d->config + PCI_VENDOR_ID), 2472 pci_get_word(d->config + PCI_DEVICE_ID), 2473 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID), 2474 pci_get_word(d->config + PCI_SUBSYSTEM_ID)); 2475 for (i = 0; i < PCI_NUM_REGIONS; i++) { 2476 r = &d->io_regions[i]; 2477 if (!r->size) 2478 continue; 2479 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS 2480 " [0x%"FMT_PCIBUS"]\n", 2481 indent, "", 2482 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem", 2483 r->addr, r->addr + r->size - 1); 2484 } 2485 } 2486 2487 static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len) 2488 { 2489 PCIDevice *d = (PCIDevice *)dev; 2490 const char *name = NULL; 2491 const pci_class_desc *desc = pci_class_descriptions; 2492 int class = pci_get_word(d->config + PCI_CLASS_DEVICE); 2493 2494 while (desc->desc && 2495 (class & ~desc->fw_ign_bits) != 2496 (desc->class & ~desc->fw_ign_bits)) { 2497 desc++; 2498 } 2499 2500 if (desc->desc) { 2501 name = desc->fw_name; 2502 } 2503 2504 if (name) { 2505 pstrcpy(buf, len, name); 2506 } else { 2507 snprintf(buf, len, "pci%04x,%04x", 2508 pci_get_word(d->config + PCI_VENDOR_ID), 2509 pci_get_word(d->config + PCI_DEVICE_ID)); 2510 } 2511 2512 return buf; 2513 } 2514 2515 static char *pcibus_get_fw_dev_path(DeviceState *dev) 2516 { 2517 PCIDevice *d = (PCIDevice *)dev; 2518 char path[50], name[33]; 2519 int off; 2520 2521 off = snprintf(path, sizeof(path), "%s@%x", 2522 pci_dev_fw_name(dev, name, sizeof name), 2523 PCI_SLOT(d->devfn)); 2524 if (PCI_FUNC(d->devfn)) 2525 snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn)); 2526 return g_strdup(path); 2527 } 2528 2529 static char *pcibus_get_dev_path(DeviceState *dev) 2530 { 2531 PCIDevice *d = container_of(dev, PCIDevice, qdev); 2532 PCIDevice *t; 2533 int slot_depth; 2534 /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function. 2535 * 00 is added here to make this format compatible with 2536 * domain:Bus:Slot.Func for systems without nested PCI bridges. 2537 * Slot.Function list specifies the slot and function numbers for all 2538 * devices on the path from root to the specific device. */ 2539 const char *root_bus_path; 2540 int root_bus_len; 2541 char slot[] = ":SS.F"; 2542 int slot_len = sizeof slot - 1 /* For '\0' */; 2543 int path_len; 2544 char *path, *p; 2545 int s; 2546 2547 root_bus_path = pci_root_bus_path(d); 2548 root_bus_len = strlen(root_bus_path); 2549 2550 /* Calculate # of slots on path between device and root. */; 2551 slot_depth = 0; 2552 for (t = d; t; t = pci_get_bus(t)->parent_dev) { 2553 ++slot_depth; 2554 } 2555 2556 path_len = root_bus_len + slot_len * slot_depth; 2557 2558 /* Allocate memory, fill in the terminating null byte. */ 2559 path = g_malloc(path_len + 1 /* For '\0' */); 2560 path[path_len] = '\0'; 2561 2562 memcpy(path, root_bus_path, root_bus_len); 2563 2564 /* Fill in slot numbers. We walk up from device to root, so need to print 2565 * them in the reverse order, last to first. */ 2566 p = path + path_len; 2567 for (t = d; t; t = pci_get_bus(t)->parent_dev) { 2568 p -= slot_len; 2569 s = snprintf(slot, sizeof slot, ":%02x.%x", 2570 PCI_SLOT(t->devfn), PCI_FUNC(t->devfn)); 2571 assert(s == slot_len); 2572 memcpy(p, slot, slot_len); 2573 } 2574 2575 return path; 2576 } 2577 2578 static int pci_qdev_find_recursive(PCIBus *bus, 2579 const char *id, PCIDevice **pdev) 2580 { 2581 DeviceState *qdev = qdev_find_recursive(&bus->qbus, id); 2582 if (!qdev) { 2583 return -ENODEV; 2584 } 2585 2586 /* roughly check if given qdev is pci device */ 2587 if (object_dynamic_cast(OBJECT(qdev), TYPE_PCI_DEVICE)) { 2588 *pdev = PCI_DEVICE(qdev); 2589 return 0; 2590 } 2591 return -EINVAL; 2592 } 2593 2594 int pci_qdev_find_device(const char *id, PCIDevice **pdev) 2595 { 2596 PCIHostState *host_bridge; 2597 int rc = -ENODEV; 2598 2599 QLIST_FOREACH(host_bridge, &pci_host_bridges, next) { 2600 int tmp = pci_qdev_find_recursive(host_bridge->bus, id, pdev); 2601 if (!tmp) { 2602 rc = 0; 2603 break; 2604 } 2605 if (tmp != -ENODEV) { 2606 rc = tmp; 2607 } 2608 } 2609 2610 return rc; 2611 } 2612 2613 MemoryRegion *pci_address_space(PCIDevice *dev) 2614 { 2615 return pci_get_bus(dev)->address_space_mem; 2616 } 2617 2618 MemoryRegion *pci_address_space_io(PCIDevice *dev) 2619 { 2620 return pci_get_bus(dev)->address_space_io; 2621 } 2622 2623 static void pci_device_class_init(ObjectClass *klass, void *data) 2624 { 2625 DeviceClass *k = DEVICE_CLASS(klass); 2626 2627 k->realize = pci_qdev_realize; 2628 k->unrealize = pci_qdev_unrealize; 2629 k->bus_type = TYPE_PCI_BUS; 2630 device_class_set_props(k, pci_props); 2631 } 2632 2633 static void pci_device_class_base_init(ObjectClass *klass, void *data) 2634 { 2635 if (!object_class_is_abstract(klass)) { 2636 ObjectClass *conventional = 2637 object_class_dynamic_cast(klass, INTERFACE_CONVENTIONAL_PCI_DEVICE); 2638 ObjectClass *pcie = 2639 object_class_dynamic_cast(klass, INTERFACE_PCIE_DEVICE); 2640 assert(conventional || pcie); 2641 } 2642 } 2643 2644 AddressSpace *pci_device_iommu_address_space(PCIDevice *dev) 2645 { 2646 PCIBus *bus = pci_get_bus(dev); 2647 PCIBus *iommu_bus = bus; 2648 uint8_t devfn = dev->devfn; 2649 2650 while (iommu_bus && !iommu_bus->iommu_fn && iommu_bus->parent_dev) { 2651 PCIBus *parent_bus = pci_get_bus(iommu_bus->parent_dev); 2652 2653 /* 2654 * The requester ID of the provided device may be aliased, as seen from 2655 * the IOMMU, due to topology limitations. The IOMMU relies on a 2656 * requester ID to provide a unique AddressSpace for devices, but 2657 * conventional PCI buses pre-date such concepts. Instead, the PCIe- 2658 * to-PCI bridge creates and accepts transactions on behalf of down- 2659 * stream devices. When doing so, all downstream devices are masked 2660 * (aliased) behind a single requester ID. The requester ID used 2661 * depends on the format of the bridge devices. Proper PCIe-to-PCI 2662 * bridges, with a PCIe capability indicating such, follow the 2663 * guidelines of chapter 2.3 of the PCIe-to-PCI/X bridge specification, 2664 * where the bridge uses the seconary bus as the bridge portion of the 2665 * requester ID and devfn of 00.0. For other bridges, typically those 2666 * found on the root complex such as the dmi-to-pci-bridge, we follow 2667 * the convention of typical bare-metal hardware, which uses the 2668 * requester ID of the bridge itself. There are device specific 2669 * exceptions to these rules, but these are the defaults that the 2670 * Linux kernel uses when determining DMA aliases itself and believed 2671 * to be true for the bare metal equivalents of the devices emulated 2672 * in QEMU. 2673 */ 2674 if (!pci_bus_is_express(iommu_bus)) { 2675 PCIDevice *parent = iommu_bus->parent_dev; 2676 2677 if (pci_is_express(parent) && 2678 pcie_cap_get_type(parent) == PCI_EXP_TYPE_PCI_BRIDGE) { 2679 devfn = PCI_DEVFN(0, 0); 2680 bus = iommu_bus; 2681 } else { 2682 devfn = parent->devfn; 2683 bus = parent_bus; 2684 } 2685 } 2686 2687 iommu_bus = parent_bus; 2688 } 2689 if (iommu_bus && iommu_bus->iommu_fn) { 2690 return iommu_bus->iommu_fn(bus, iommu_bus->iommu_opaque, devfn); 2691 } 2692 return &address_space_memory; 2693 } 2694 2695 void pci_setup_iommu(PCIBus *bus, PCIIOMMUFunc fn, void *opaque) 2696 { 2697 bus->iommu_fn = fn; 2698 bus->iommu_opaque = opaque; 2699 } 2700 2701 static void pci_dev_get_w64(PCIBus *b, PCIDevice *dev, void *opaque) 2702 { 2703 Range *range = opaque; 2704 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev); 2705 uint16_t cmd = pci_get_word(dev->config + PCI_COMMAND); 2706 int i; 2707 2708 if (!(cmd & PCI_COMMAND_MEMORY)) { 2709 return; 2710 } 2711 2712 if (pc->is_bridge) { 2713 pcibus_t base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 2714 pcibus_t limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 2715 2716 base = MAX(base, 0x1ULL << 32); 2717 2718 if (limit >= base) { 2719 Range pref_range; 2720 range_set_bounds(&pref_range, base, limit); 2721 range_extend(range, &pref_range); 2722 } 2723 } 2724 for (i = 0; i < PCI_NUM_REGIONS; ++i) { 2725 PCIIORegion *r = &dev->io_regions[i]; 2726 pcibus_t lob, upb; 2727 Range region_range; 2728 2729 if (!r->size || 2730 (r->type & PCI_BASE_ADDRESS_SPACE_IO) || 2731 !(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64)) { 2732 continue; 2733 } 2734 2735 lob = pci_bar_address(dev, i, r->type, r->size); 2736 upb = lob + r->size - 1; 2737 if (lob == PCI_BAR_UNMAPPED) { 2738 continue; 2739 } 2740 2741 lob = MAX(lob, 0x1ULL << 32); 2742 2743 if (upb >= lob) { 2744 range_set_bounds(®ion_range, lob, upb); 2745 range_extend(range, ®ion_range); 2746 } 2747 } 2748 } 2749 2750 void pci_bus_get_w64_range(PCIBus *bus, Range *range) 2751 { 2752 range_make_empty(range); 2753 pci_for_each_device_under_bus(bus, pci_dev_get_w64, range); 2754 } 2755 2756 static bool pcie_has_upstream_port(PCIDevice *dev) 2757 { 2758 PCIDevice *parent_dev = pci_bridge_get_device(pci_get_bus(dev)); 2759 2760 /* Device associated with an upstream port. 2761 * As there are several types of these, it's easier to check the 2762 * parent device: upstream ports are always connected to 2763 * root or downstream ports. 2764 */ 2765 return parent_dev && 2766 pci_is_express(parent_dev) && 2767 parent_dev->exp.exp_cap && 2768 (pcie_cap_get_type(parent_dev) == PCI_EXP_TYPE_ROOT_PORT || 2769 pcie_cap_get_type(parent_dev) == PCI_EXP_TYPE_DOWNSTREAM); 2770 } 2771 2772 PCIDevice *pci_get_function_0(PCIDevice *pci_dev) 2773 { 2774 PCIBus *bus = pci_get_bus(pci_dev); 2775 2776 if(pcie_has_upstream_port(pci_dev)) { 2777 /* With an upstream PCIe port, we only support 1 device at slot 0 */ 2778 return bus->devices[0]; 2779 } else { 2780 /* Other bus types might support multiple devices at slots 0-31 */ 2781 return bus->devices[PCI_DEVFN(PCI_SLOT(pci_dev->devfn), 0)]; 2782 } 2783 } 2784 2785 MSIMessage pci_get_msi_message(PCIDevice *dev, int vector) 2786 { 2787 MSIMessage msg; 2788 if (msix_enabled(dev)) { 2789 msg = msix_get_message(dev, vector); 2790 } else if (msi_enabled(dev)) { 2791 msg = msi_get_message(dev, vector); 2792 } else { 2793 /* Should never happen */ 2794 error_report("%s: unknown interrupt type", __func__); 2795 abort(); 2796 } 2797 return msg; 2798 } 2799 2800 static const TypeInfo pci_device_type_info = { 2801 .name = TYPE_PCI_DEVICE, 2802 .parent = TYPE_DEVICE, 2803 .instance_size = sizeof(PCIDevice), 2804 .abstract = true, 2805 .class_size = sizeof(PCIDeviceClass), 2806 .class_init = pci_device_class_init, 2807 .class_base_init = pci_device_class_base_init, 2808 }; 2809 2810 static void pci_register_types(void) 2811 { 2812 type_register_static(&pci_bus_info); 2813 type_register_static(&pcie_bus_info); 2814 type_register_static(&conventional_pci_interface_info); 2815 type_register_static(&pcie_interface_info); 2816 type_register_static(&pci_device_type_info); 2817 } 2818 2819 type_init(pci_register_types) 2820