./configure: export xfs config via --{enable, disable}-xfsctl
[qemu/ar7.git] / hw / pci.c
blob54400ac134fae6bd7fa80a6eb94e46307abe4a14
1 /*
2 * QEMU PCI bus manager
4 * Copyright (c) 2004 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include "hw.h"
25 #include "pci.h"
26 #include "pci_bridge.h"
27 #include "pci_internals.h"
28 #include "monitor.h"
29 #include "net.h"
30 #include "sysemu.h"
31 #include "loader.h"
32 #include "range.h"
33 #include "qmp-commands.h"
35 //#define DEBUG_PCI
36 #ifdef DEBUG_PCI
37 # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
38 #else
39 # define PCI_DPRINTF(format, ...) do { } while (0)
40 #endif
42 static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent);
43 static char *pcibus_get_dev_path(DeviceState *dev);
44 static char *pcibus_get_fw_dev_path(DeviceState *dev);
45 static int pcibus_reset(BusState *qbus);
47 struct BusInfo pci_bus_info = {
48 .name = "PCI",
49 .size = sizeof(PCIBus),
50 .print_dev = pcibus_dev_print,
51 .get_dev_path = pcibus_get_dev_path,
52 .get_fw_dev_path = pcibus_get_fw_dev_path,
53 .reset = pcibus_reset,
54 .props = (Property[]) {
55 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1),
56 DEFINE_PROP_STRING("romfile", PCIDevice, romfile),
57 DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1),
58 DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present,
59 QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false),
60 DEFINE_PROP_BIT("command_serr_enable", PCIDevice, cap_present,
61 QEMU_PCI_CAP_SERR_BITNR, true),
62 DEFINE_PROP_END_OF_LIST()
66 static void pci_update_mappings(PCIDevice *d);
67 static void pci_set_irq(void *opaque, int irq_num, int level);
68 static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom);
69 static void pci_del_option_rom(PCIDevice *pdev);
71 static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET;
72 static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU;
74 struct PCIHostBus {
75 int domain;
76 struct PCIBus *bus;
77 QLIST_ENTRY(PCIHostBus) next;
79 static QLIST_HEAD(, PCIHostBus) host_buses;
81 static const VMStateDescription vmstate_pcibus = {
82 .name = "PCIBUS",
83 .version_id = 1,
84 .minimum_version_id = 1,
85 .minimum_version_id_old = 1,
86 .fields = (VMStateField []) {
87 VMSTATE_INT32_EQUAL(nirq, PCIBus),
88 VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t),
89 VMSTATE_END_OF_LIST()
93 static int pci_bar(PCIDevice *d, int reg)
95 uint8_t type;
97 if (reg != PCI_ROM_SLOT)
98 return PCI_BASE_ADDRESS_0 + reg * 4;
100 type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
101 return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS;
104 static inline int pci_irq_state(PCIDevice *d, int irq_num)
106 return (d->irq_state >> irq_num) & 0x1;
109 static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
111 d->irq_state &= ~(0x1 << irq_num);
112 d->irq_state |= level << irq_num;
115 static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)
117 PCIBus *bus;
118 for (;;) {
119 bus = pci_dev->bus;
120 irq_num = bus->map_irq(pci_dev, irq_num);
121 if (bus->set_irq)
122 break;
123 pci_dev = bus->parent_dev;
125 bus->irq_count[irq_num] += change;
126 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0);
129 int pci_bus_get_irq_level(PCIBus *bus, int irq_num)
131 assert(irq_num >= 0);
132 assert(irq_num < bus->nirq);
133 return !!bus->irq_count[irq_num];
136 /* Update interrupt status bit in config space on interrupt
137 * state change. */
138 static void pci_update_irq_status(PCIDevice *dev)
140 if (dev->irq_state) {
141 dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT;
142 } else {
143 dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
147 void pci_device_deassert_intx(PCIDevice *dev)
149 int i;
150 for (i = 0; i < PCI_NUM_PINS; ++i) {
151 qemu_set_irq(dev->irq[i], 0);
156 * This function is called on #RST and FLR.
157 * FLR if PCI_EXP_DEVCTL_BCR_FLR is set
159 void pci_device_reset(PCIDevice *dev)
161 int r;
162 /* TODO: call the below unconditionally once all pci devices
163 * are qdevified */
164 if (dev->qdev.info) {
165 qdev_reset_all(&dev->qdev);
168 dev->irq_state = 0;
169 pci_update_irq_status(dev);
170 pci_device_deassert_intx(dev);
171 /* Clear all writable bits */
172 pci_word_test_and_clear_mask(dev->config + PCI_COMMAND,
173 pci_get_word(dev->wmask + PCI_COMMAND) |
174 pci_get_word(dev->w1cmask + PCI_COMMAND));
175 pci_word_test_and_clear_mask(dev->config + PCI_STATUS,
176 pci_get_word(dev->wmask + PCI_STATUS) |
177 pci_get_word(dev->w1cmask + PCI_STATUS));
178 dev->config[PCI_CACHE_LINE_SIZE] = 0x0;
179 dev->config[PCI_INTERRUPT_LINE] = 0x0;
180 for (r = 0; r < PCI_NUM_REGIONS; ++r) {
181 PCIIORegion *region = &dev->io_regions[r];
182 if (!region->size) {
183 continue;
186 if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) &&
187 region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
188 pci_set_quad(dev->config + pci_bar(dev, r), region->type);
189 } else {
190 pci_set_long(dev->config + pci_bar(dev, r), region->type);
193 pci_update_mappings(dev);
197 * Trigger pci bus reset under a given bus.
198 * To be called on RST# assert.
200 void pci_bus_reset(PCIBus *bus)
202 int i;
204 for (i = 0; i < bus->nirq; i++) {
205 bus->irq_count[i] = 0;
207 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
208 if (bus->devices[i]) {
209 pci_device_reset(bus->devices[i]);
214 static int pcibus_reset(BusState *qbus)
216 pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus));
218 /* topology traverse is done by pci_bus_reset().
219 Tell qbus/qdev walker not to traverse the tree */
220 return 1;
223 static void pci_host_bus_register(int domain, PCIBus *bus)
225 struct PCIHostBus *host;
226 host = g_malloc0(sizeof(*host));
227 host->domain = domain;
228 host->bus = bus;
229 QLIST_INSERT_HEAD(&host_buses, host, next);
232 PCIBus *pci_find_root_bus(int domain)
234 struct PCIHostBus *host;
236 QLIST_FOREACH(host, &host_buses, next) {
237 if (host->domain == domain) {
238 return host->bus;
242 return NULL;
245 int pci_find_domain(const PCIBus *bus)
247 PCIDevice *d;
248 struct PCIHostBus *host;
250 /* obtain root bus */
251 while ((d = bus->parent_dev) != NULL) {
252 bus = d->bus;
255 QLIST_FOREACH(host, &host_buses, next) {
256 if (host->bus == bus) {
257 return host->domain;
261 abort(); /* should not be reached */
262 return -1;
265 void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
266 const char *name,
267 MemoryRegion *address_space_mem,
268 MemoryRegion *address_space_io,
269 uint8_t devfn_min)
271 qbus_create_inplace(&bus->qbus, &pci_bus_info, parent, name);
272 assert(PCI_FUNC(devfn_min) == 0);
273 bus->devfn_min = devfn_min;
274 bus->address_space_mem = address_space_mem;
275 bus->address_space_io = address_space_io;
277 /* host bridge */
278 QLIST_INIT(&bus->child);
279 pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */
281 vmstate_register(NULL, -1, &vmstate_pcibus, bus);
284 PCIBus *pci_bus_new(DeviceState *parent, const char *name,
285 MemoryRegion *address_space_mem,
286 MemoryRegion *address_space_io,
287 uint8_t devfn_min)
289 PCIBus *bus;
291 bus = g_malloc0(sizeof(*bus));
292 bus->qbus.qdev_allocated = 1;
293 pci_bus_new_inplace(bus, parent, name, address_space_mem,
294 address_space_io, devfn_min);
295 return bus;
298 void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
299 void *irq_opaque, int nirq)
301 bus->set_irq = set_irq;
302 bus->map_irq = map_irq;
303 bus->irq_opaque = irq_opaque;
304 bus->nirq = nirq;
305 bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0]));
308 void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *qdev)
310 bus->qbus.allow_hotplug = 1;
311 bus->hotplug = hotplug;
312 bus->hotplug_qdev = qdev;
315 PCIBus *pci_register_bus(DeviceState *parent, const char *name,
316 pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
317 void *irq_opaque,
318 MemoryRegion *address_space_mem,
319 MemoryRegion *address_space_io,
320 uint8_t devfn_min, int nirq)
322 PCIBus *bus;
324 bus = pci_bus_new(parent, name, address_space_mem,
325 address_space_io, devfn_min);
326 pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq);
327 return bus;
330 int pci_bus_num(PCIBus *s)
332 if (!s->parent_dev)
333 return 0; /* pci host bridge */
334 return s->parent_dev->config[PCI_SECONDARY_BUS];
337 static int get_pci_config_device(QEMUFile *f, void *pv, size_t size)
339 PCIDevice *s = container_of(pv, PCIDevice, config);
340 uint8_t *config;
341 int i;
343 assert(size == pci_config_size(s));
344 config = g_malloc(size);
346 qemu_get_buffer(f, config, size);
347 for (i = 0; i < size; ++i) {
348 if ((config[i] ^ s->config[i]) &
349 s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) {
350 g_free(config);
351 return -EINVAL;
354 memcpy(s->config, config, size);
356 pci_update_mappings(s);
358 g_free(config);
359 return 0;
362 /* just put buffer */
363 static void put_pci_config_device(QEMUFile *f, void *pv, size_t size)
365 const uint8_t **v = pv;
366 assert(size == pci_config_size(container_of(pv, PCIDevice, config)));
367 qemu_put_buffer(f, *v, size);
370 static VMStateInfo vmstate_info_pci_config = {
371 .name = "pci config",
372 .get = get_pci_config_device,
373 .put = put_pci_config_device,
376 static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size)
378 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
379 uint32_t irq_state[PCI_NUM_PINS];
380 int i;
381 for (i = 0; i < PCI_NUM_PINS; ++i) {
382 irq_state[i] = qemu_get_be32(f);
383 if (irq_state[i] != 0x1 && irq_state[i] != 0) {
384 fprintf(stderr, "irq state %d: must be 0 or 1.\n",
385 irq_state[i]);
386 return -EINVAL;
390 for (i = 0; i < PCI_NUM_PINS; ++i) {
391 pci_set_irq_state(s, i, irq_state[i]);
394 return 0;
397 static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size)
399 int i;
400 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
402 for (i = 0; i < PCI_NUM_PINS; ++i) {
403 qemu_put_be32(f, pci_irq_state(s, i));
407 static VMStateInfo vmstate_info_pci_irq_state = {
408 .name = "pci irq state",
409 .get = get_pci_irq_state,
410 .put = put_pci_irq_state,
413 const VMStateDescription vmstate_pci_device = {
414 .name = "PCIDevice",
415 .version_id = 2,
416 .minimum_version_id = 1,
417 .minimum_version_id_old = 1,
418 .fields = (VMStateField []) {
419 VMSTATE_INT32_LE(version_id, PCIDevice),
420 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
421 vmstate_info_pci_config,
422 PCI_CONFIG_SPACE_SIZE),
423 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
424 vmstate_info_pci_irq_state,
425 PCI_NUM_PINS * sizeof(int32_t)),
426 VMSTATE_END_OF_LIST()
430 const VMStateDescription vmstate_pcie_device = {
431 .name = "PCIDevice",
432 .version_id = 2,
433 .minimum_version_id = 1,
434 .minimum_version_id_old = 1,
435 .fields = (VMStateField []) {
436 VMSTATE_INT32_LE(version_id, PCIDevice),
437 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
438 vmstate_info_pci_config,
439 PCIE_CONFIG_SPACE_SIZE),
440 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
441 vmstate_info_pci_irq_state,
442 PCI_NUM_PINS * sizeof(int32_t)),
443 VMSTATE_END_OF_LIST()
447 static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s)
449 return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device;
452 void pci_device_save(PCIDevice *s, QEMUFile *f)
454 /* Clear interrupt status bit: it is implicit
455 * in irq_state which we are saving.
456 * This makes us compatible with old devices
457 * which never set or clear this bit. */
458 s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
459 vmstate_save_state(f, pci_get_vmstate(s), s);
460 /* Restore the interrupt status bit. */
461 pci_update_irq_status(s);
464 int pci_device_load(PCIDevice *s, QEMUFile *f)
466 int ret;
467 ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id);
468 /* Restore the interrupt status bit. */
469 pci_update_irq_status(s);
470 return ret;
473 static void pci_set_default_subsystem_id(PCIDevice *pci_dev)
475 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
476 pci_default_sub_vendor_id);
477 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
478 pci_default_sub_device_id);
482 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL
483 * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error
485 int pci_parse_devaddr(const char *addr, int *domp, int *busp,
486 unsigned int *slotp, unsigned int *funcp)
488 const char *p;
489 char *e;
490 unsigned long val;
491 unsigned long dom = 0, bus = 0;
492 unsigned int slot = 0;
493 unsigned int func = 0;
495 p = addr;
496 val = strtoul(p, &e, 16);
497 if (e == p)
498 return -1;
499 if (*e == ':') {
500 bus = val;
501 p = e + 1;
502 val = strtoul(p, &e, 16);
503 if (e == p)
504 return -1;
505 if (*e == ':') {
506 dom = bus;
507 bus = val;
508 p = e + 1;
509 val = strtoul(p, &e, 16);
510 if (e == p)
511 return -1;
515 slot = val;
517 if (funcp != NULL) {
518 if (*e != '.')
519 return -1;
521 p = e + 1;
522 val = strtoul(p, &e, 16);
523 if (e == p)
524 return -1;
526 func = val;
529 /* if funcp == NULL func is 0 */
530 if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7)
531 return -1;
533 if (*e)
534 return -1;
536 /* Note: QEMU doesn't implement domains other than 0 */
537 if (!pci_find_bus(pci_find_root_bus(dom), bus))
538 return -1;
540 *domp = dom;
541 *busp = bus;
542 *slotp = slot;
543 if (funcp != NULL)
544 *funcp = func;
545 return 0;
548 int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
549 unsigned *slotp)
551 /* strip legacy tag */
552 if (!strncmp(addr, "pci_addr=", 9)) {
553 addr += 9;
555 if (pci_parse_devaddr(addr, domp, busp, slotp, NULL)) {
556 monitor_printf(mon, "Invalid pci address\n");
557 return -1;
559 return 0;
562 PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr)
564 int dom, bus;
565 unsigned slot;
567 if (!devaddr) {
568 *devfnp = -1;
569 return pci_find_bus(pci_find_root_bus(0), 0);
572 if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) {
573 return NULL;
576 *devfnp = PCI_DEVFN(slot, 0);
577 return pci_find_bus(pci_find_root_bus(dom), bus);
580 static void pci_init_cmask(PCIDevice *dev)
582 pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff);
583 pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff);
584 dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST;
585 dev->cmask[PCI_REVISION_ID] = 0xff;
586 dev->cmask[PCI_CLASS_PROG] = 0xff;
587 pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff);
588 dev->cmask[PCI_HEADER_TYPE] = 0xff;
589 dev->cmask[PCI_CAPABILITY_LIST] = 0xff;
592 static void pci_init_wmask(PCIDevice *dev)
594 int config_size = pci_config_size(dev);
596 dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff;
597 dev->wmask[PCI_INTERRUPT_LINE] = 0xff;
598 pci_set_word(dev->wmask + PCI_COMMAND,
599 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
600 PCI_COMMAND_INTX_DISABLE);
601 if (dev->cap_present & QEMU_PCI_CAP_SERR) {
602 pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR);
605 memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff,
606 config_size - PCI_CONFIG_HEADER_SIZE);
609 static void pci_init_w1cmask(PCIDevice *dev)
612 * Note: It's okay to set w1cmask even for readonly bits as
613 * long as their value is hardwired to 0.
615 pci_set_word(dev->w1cmask + PCI_STATUS,
616 PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT |
617 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT |
618 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY);
621 static void pci_init_wmask_bridge(PCIDevice *d)
623 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and
624 PCI_SEC_LETENCY_TIMER */
625 memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4);
627 /* base and limit */
628 d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff;
629 d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff;
630 pci_set_word(d->wmask + PCI_MEMORY_BASE,
631 PCI_MEMORY_RANGE_MASK & 0xffff);
632 pci_set_word(d->wmask + PCI_MEMORY_LIMIT,
633 PCI_MEMORY_RANGE_MASK & 0xffff);
634 pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE,
635 PCI_PREF_RANGE_MASK & 0xffff);
636 pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT,
637 PCI_PREF_RANGE_MASK & 0xffff);
639 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */
640 memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8);
642 /* TODO: add this define to pci_regs.h in linux and then in qemu. */
643 #define PCI_BRIDGE_CTL_VGA_16BIT 0x10 /* VGA 16-bit decode */
644 #define PCI_BRIDGE_CTL_DISCARD 0x100 /* Primary discard timer */
645 #define PCI_BRIDGE_CTL_SEC_DISCARD 0x200 /* Secondary discard timer */
646 #define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400 /* Discard timer status */
647 #define PCI_BRIDGE_CTL_DISCARD_SERR 0x800 /* Discard timer SERR# enable */
648 pci_set_word(d->wmask + PCI_BRIDGE_CONTROL,
649 PCI_BRIDGE_CTL_PARITY |
650 PCI_BRIDGE_CTL_SERR |
651 PCI_BRIDGE_CTL_ISA |
652 PCI_BRIDGE_CTL_VGA |
653 PCI_BRIDGE_CTL_VGA_16BIT |
654 PCI_BRIDGE_CTL_MASTER_ABORT |
655 PCI_BRIDGE_CTL_BUS_RESET |
656 PCI_BRIDGE_CTL_FAST_BACK |
657 PCI_BRIDGE_CTL_DISCARD |
658 PCI_BRIDGE_CTL_SEC_DISCARD |
659 PCI_BRIDGE_CTL_DISCARD_SERR);
660 /* Below does not do anything as we never set this bit, put here for
661 * completeness. */
662 pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL,
663 PCI_BRIDGE_CTL_DISCARD_STATUS);
666 static int pci_init_multifunction(PCIBus *bus, PCIDevice *dev)
668 uint8_t slot = PCI_SLOT(dev->devfn);
669 uint8_t func;
671 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
672 dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
676 * multifunction bit is interpreted in two ways as follows.
677 * - all functions must set the bit to 1.
678 * Example: Intel X53
679 * - function 0 must set the bit, but the rest function (> 0)
680 * is allowed to leave the bit to 0.
681 * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10,
683 * So OS (at least Linux) checks the bit of only function 0,
684 * and doesn't see the bit of function > 0.
686 * The below check allows both interpretation.
688 if (PCI_FUNC(dev->devfn)) {
689 PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)];
690 if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) {
691 /* function 0 should set multifunction bit */
692 error_report("PCI: single function device can't be populated "
693 "in function %x.%x", slot, PCI_FUNC(dev->devfn));
694 return -1;
696 return 0;
699 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
700 return 0;
702 /* function 0 indicates single function, so function > 0 must be NULL */
703 for (func = 1; func < PCI_FUNC_MAX; ++func) {
704 if (bus->devices[PCI_DEVFN(slot, func)]) {
705 error_report("PCI: %x.0 indicates single function, "
706 "but %x.%x is already populated.",
707 slot, slot, func);
708 return -1;
711 return 0;
714 static void pci_config_alloc(PCIDevice *pci_dev)
716 int config_size = pci_config_size(pci_dev);
718 pci_dev->config = g_malloc0(config_size);
719 pci_dev->cmask = g_malloc0(config_size);
720 pci_dev->wmask = g_malloc0(config_size);
721 pci_dev->w1cmask = g_malloc0(config_size);
722 pci_dev->used = g_malloc0(config_size);
725 static void pci_config_free(PCIDevice *pci_dev)
727 g_free(pci_dev->config);
728 g_free(pci_dev->cmask);
729 g_free(pci_dev->wmask);
730 g_free(pci_dev->w1cmask);
731 g_free(pci_dev->used);
734 /* -1 for devfn means auto assign */
735 static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
736 const char *name, int devfn,
737 const PCIDeviceInfo *info)
739 PCIConfigReadFunc *config_read = info->config_read;
740 PCIConfigWriteFunc *config_write = info->config_write;
742 if (devfn < 0) {
743 for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices);
744 devfn += PCI_FUNC_MAX) {
745 if (!bus->devices[devfn])
746 goto found;
748 error_report("PCI: no slot/function available for %s, all in use", name);
749 return NULL;
750 found: ;
751 } else if (bus->devices[devfn]) {
752 error_report("PCI: slot %d function %d not available for %s, in use by %s",
753 PCI_SLOT(devfn), PCI_FUNC(devfn), name, bus->devices[devfn]->name);
754 return NULL;
756 pci_dev->bus = bus;
757 pci_dev->devfn = devfn;
758 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
759 pci_dev->irq_state = 0;
760 pci_config_alloc(pci_dev);
762 pci_config_set_vendor_id(pci_dev->config, info->vendor_id);
763 pci_config_set_device_id(pci_dev->config, info->device_id);
764 pci_config_set_revision(pci_dev->config, info->revision);
765 pci_config_set_class(pci_dev->config, info->class_id);
767 if (!info->is_bridge) {
768 if (info->subsystem_vendor_id || info->subsystem_id) {
769 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
770 info->subsystem_vendor_id);
771 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
772 info->subsystem_id);
773 } else {
774 pci_set_default_subsystem_id(pci_dev);
776 } else {
777 /* subsystem_vendor_id/subsystem_id are only for header type 0 */
778 assert(!info->subsystem_vendor_id);
779 assert(!info->subsystem_id);
781 pci_init_cmask(pci_dev);
782 pci_init_wmask(pci_dev);
783 pci_init_w1cmask(pci_dev);
784 if (info->is_bridge) {
785 pci_init_wmask_bridge(pci_dev);
787 if (pci_init_multifunction(bus, pci_dev)) {
788 pci_config_free(pci_dev);
789 return NULL;
792 if (!config_read)
793 config_read = pci_default_read_config;
794 if (!config_write)
795 config_write = pci_default_write_config;
796 pci_dev->config_read = config_read;
797 pci_dev->config_write = config_write;
798 bus->devices[devfn] = pci_dev;
799 pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS);
800 pci_dev->version_id = 2; /* Current pci device vmstate version */
801 return pci_dev;
804 static void do_pci_unregister_device(PCIDevice *pci_dev)
806 qemu_free_irqs(pci_dev->irq);
807 pci_dev->bus->devices[pci_dev->devfn] = NULL;
808 pci_config_free(pci_dev);
811 /* TODO: obsolete. eliminate this once all pci devices are qdevifed. */
812 PCIDevice *pci_register_device(PCIBus *bus, const char *name,
813 int instance_size, int devfn,
814 PCIConfigReadFunc *config_read,
815 PCIConfigWriteFunc *config_write)
817 PCIDevice *pci_dev;
818 PCIDeviceInfo info = {
819 .config_read = config_read,
820 .config_write = config_write,
823 pci_dev = g_malloc0(instance_size);
824 pci_dev = do_pci_register_device(pci_dev, bus, name, devfn, &info);
825 if (pci_dev == NULL) {
826 hw_error("PCI: can't register device\n");
828 return pci_dev;
831 static void pci_unregister_io_regions(PCIDevice *pci_dev)
833 PCIIORegion *r;
834 int i;
836 for(i = 0; i < PCI_NUM_REGIONS; i++) {
837 r = &pci_dev->io_regions[i];
838 if (!r->size || r->addr == PCI_BAR_UNMAPPED)
839 continue;
840 memory_region_del_subregion(r->address_space, r->memory);
844 static int pci_unregister_device(DeviceState *dev)
846 PCIDevice *pci_dev = DO_UPCAST(PCIDevice, qdev, dev);
847 PCIDeviceInfo *info = DO_UPCAST(PCIDeviceInfo, qdev, dev->info);
848 int ret = 0;
850 if (info->exit)
851 ret = info->exit(pci_dev);
852 if (ret)
853 return ret;
855 pci_unregister_io_regions(pci_dev);
856 pci_del_option_rom(pci_dev);
857 g_free(pci_dev->romfile);
858 do_pci_unregister_device(pci_dev);
859 return 0;
862 void pci_register_bar(PCIDevice *pci_dev, int region_num,
863 uint8_t type, MemoryRegion *memory)
865 PCIIORegion *r;
866 uint32_t addr;
867 uint64_t wmask;
868 pcibus_t size = memory_region_size(memory);
870 assert(region_num >= 0);
871 assert(region_num < PCI_NUM_REGIONS);
872 if (size & (size-1)) {
873 fprintf(stderr, "ERROR: PCI region size must be pow2 "
874 "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size);
875 exit(1);
878 r = &pci_dev->io_regions[region_num];
879 r->addr = PCI_BAR_UNMAPPED;
880 r->size = size;
881 r->type = type;
882 r->memory = NULL;
884 wmask = ~(size - 1);
885 addr = pci_bar(pci_dev, region_num);
886 if (region_num == PCI_ROM_SLOT) {
887 /* ROM enable bit is writable */
888 wmask |= PCI_ROM_ADDRESS_ENABLE;
890 pci_set_long(pci_dev->config + addr, type);
891 if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) &&
892 r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
893 pci_set_quad(pci_dev->wmask + addr, wmask);
894 pci_set_quad(pci_dev->cmask + addr, ~0ULL);
895 } else {
896 pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff);
897 pci_set_long(pci_dev->cmask + addr, 0xffffffff);
899 pci_dev->io_regions[region_num].memory = memory;
900 pci_dev->io_regions[region_num].address_space
901 = type & PCI_BASE_ADDRESS_SPACE_IO
902 ? pci_dev->bus->address_space_io
903 : pci_dev->bus->address_space_mem;
906 pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num)
908 return pci_dev->io_regions[region_num].addr;
911 static pcibus_t pci_bar_address(PCIDevice *d,
912 int reg, uint8_t type, pcibus_t size)
914 pcibus_t new_addr, last_addr;
915 int bar = pci_bar(d, reg);
916 uint16_t cmd = pci_get_word(d->config + PCI_COMMAND);
918 if (type & PCI_BASE_ADDRESS_SPACE_IO) {
919 if (!(cmd & PCI_COMMAND_IO)) {
920 return PCI_BAR_UNMAPPED;
922 new_addr = pci_get_long(d->config + bar) & ~(size - 1);
923 last_addr = new_addr + size - 1;
924 /* NOTE: we have only 64K ioports on PC */
925 if (last_addr <= new_addr || new_addr == 0 || last_addr > UINT16_MAX) {
926 return PCI_BAR_UNMAPPED;
928 return new_addr;
931 if (!(cmd & PCI_COMMAND_MEMORY)) {
932 return PCI_BAR_UNMAPPED;
934 if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
935 new_addr = pci_get_quad(d->config + bar);
936 } else {
937 new_addr = pci_get_long(d->config + bar);
939 /* the ROM slot has a specific enable bit */
940 if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) {
941 return PCI_BAR_UNMAPPED;
943 new_addr &= ~(size - 1);
944 last_addr = new_addr + size - 1;
945 /* NOTE: we do not support wrapping */
946 /* XXX: as we cannot support really dynamic
947 mappings, we handle specific values as invalid
948 mappings. */
949 if (last_addr <= new_addr || new_addr == 0 ||
950 last_addr == PCI_BAR_UNMAPPED) {
951 return PCI_BAR_UNMAPPED;
954 /* Now pcibus_t is 64bit.
955 * Check if 32 bit BAR wraps around explicitly.
956 * Without this, PC ide doesn't work well.
957 * TODO: remove this work around.
959 if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) {
960 return PCI_BAR_UNMAPPED;
964 * OS is allowed to set BAR beyond its addressable
965 * bits. For example, 32 bit OS can set 64bit bar
966 * to >4G. Check it. TODO: we might need to support
967 * it in the future for e.g. PAE.
969 if (last_addr >= TARGET_PHYS_ADDR_MAX) {
970 return PCI_BAR_UNMAPPED;
973 return new_addr;
976 static void pci_update_mappings(PCIDevice *d)
978 PCIIORegion *r;
979 int i;
980 pcibus_t new_addr;
982 for(i = 0; i < PCI_NUM_REGIONS; i++) {
983 r = &d->io_regions[i];
985 /* this region isn't registered */
986 if (!r->size)
987 continue;
989 new_addr = pci_bar_address(d, i, r->type, r->size);
991 /* This bar isn't changed */
992 if (new_addr == r->addr)
993 continue;
995 /* now do the real mapping */
996 if (r->addr != PCI_BAR_UNMAPPED) {
997 memory_region_del_subregion(r->address_space, r->memory);
999 r->addr = new_addr;
1000 if (r->addr != PCI_BAR_UNMAPPED) {
1001 memory_region_add_subregion_overlap(r->address_space,
1002 r->addr, r->memory, 1);
1007 static inline int pci_irq_disabled(PCIDevice *d)
1009 return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE;
1012 /* Called after interrupt disabled field update in config space,
1013 * assert/deassert interrupts if necessary.
1014 * Gets original interrupt disable bit value (before update). */
1015 static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled)
1017 int i, disabled = pci_irq_disabled(d);
1018 if (disabled == was_irq_disabled)
1019 return;
1020 for (i = 0; i < PCI_NUM_PINS; ++i) {
1021 int state = pci_irq_state(d, i);
1022 pci_change_irq_level(d, i, disabled ? -state : state);
1026 uint32_t pci_default_read_config(PCIDevice *d,
1027 uint32_t address, int len)
1029 uint32_t val = 0;
1031 memcpy(&val, d->config + address, len);
1032 return le32_to_cpu(val);
1035 void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l)
1037 int i, was_irq_disabled = pci_irq_disabled(d);
1039 for (i = 0; i < l; val >>= 8, ++i) {
1040 uint8_t wmask = d->wmask[addr + i];
1041 uint8_t w1cmask = d->w1cmask[addr + i];
1042 assert(!(wmask & w1cmask));
1043 d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask);
1044 d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */
1046 if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) ||
1047 ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) ||
1048 ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) ||
1049 range_covers_byte(addr, l, PCI_COMMAND))
1050 pci_update_mappings(d);
1052 if (range_covers_byte(addr, l, PCI_COMMAND))
1053 pci_update_irq_disabled(d, was_irq_disabled);
1056 /***********************************************************/
1057 /* generic PCI irq support */
1059 /* 0 <= irq_num <= 3. level must be 0 or 1 */
1060 static void pci_set_irq(void *opaque, int irq_num, int level)
1062 PCIDevice *pci_dev = opaque;
1063 int change;
1065 change = level - pci_irq_state(pci_dev, irq_num);
1066 if (!change)
1067 return;
1069 pci_set_irq_state(pci_dev, irq_num, level);
1070 pci_update_irq_status(pci_dev);
1071 if (pci_irq_disabled(pci_dev))
1072 return;
1073 pci_change_irq_level(pci_dev, irq_num, change);
1076 /***********************************************************/
1077 /* monitor info on PCI */
1079 typedef struct {
1080 uint16_t class;
1081 const char *desc;
1082 const char *fw_name;
1083 uint16_t fw_ign_bits;
1084 } pci_class_desc;
1086 static const pci_class_desc pci_class_descriptions[] =
1088 { 0x0001, "VGA controller", "display"},
1089 { 0x0100, "SCSI controller", "scsi"},
1090 { 0x0101, "IDE controller", "ide"},
1091 { 0x0102, "Floppy controller", "fdc"},
1092 { 0x0103, "IPI controller", "ipi"},
1093 { 0x0104, "RAID controller", "raid"},
1094 { 0x0106, "SATA controller"},
1095 { 0x0107, "SAS controller"},
1096 { 0x0180, "Storage controller"},
1097 { 0x0200, "Ethernet controller", "ethernet"},
1098 { 0x0201, "Token Ring controller", "token-ring"},
1099 { 0x0202, "FDDI controller", "fddi"},
1100 { 0x0203, "ATM controller", "atm"},
1101 { 0x0280, "Network controller"},
1102 { 0x0300, "VGA controller", "display", 0x00ff},
1103 { 0x0301, "XGA controller"},
1104 { 0x0302, "3D controller"},
1105 { 0x0380, "Display controller"},
1106 { 0x0400, "Video controller", "video"},
1107 { 0x0401, "Audio controller", "sound"},
1108 { 0x0402, "Phone"},
1109 { 0x0403, "Audio controller", "sound"},
1110 { 0x0480, "Multimedia controller"},
1111 { 0x0500, "RAM controller", "memory"},
1112 { 0x0501, "Flash controller", "flash"},
1113 { 0x0580, "Memory controller"},
1114 { 0x0600, "Host bridge", "host"},
1115 { 0x0601, "ISA bridge", "isa"},
1116 { 0x0602, "EISA bridge", "eisa"},
1117 { 0x0603, "MC bridge", "mca"},
1118 { 0x0604, "PCI bridge", "pci"},
1119 { 0x0605, "PCMCIA bridge", "pcmcia"},
1120 { 0x0606, "NUBUS bridge", "nubus"},
1121 { 0x0607, "CARDBUS bridge", "cardbus"},
1122 { 0x0608, "RACEWAY bridge"},
1123 { 0x0680, "Bridge"},
1124 { 0x0700, "Serial port", "serial"},
1125 { 0x0701, "Parallel port", "parallel"},
1126 { 0x0800, "Interrupt controller", "interrupt-controller"},
1127 { 0x0801, "DMA controller", "dma-controller"},
1128 { 0x0802, "Timer", "timer"},
1129 { 0x0803, "RTC", "rtc"},
1130 { 0x0900, "Keyboard", "keyboard"},
1131 { 0x0901, "Pen", "pen"},
1132 { 0x0902, "Mouse", "mouse"},
1133 { 0x0A00, "Dock station", "dock", 0x00ff},
1134 { 0x0B00, "i386 cpu", "cpu", 0x00ff},
1135 { 0x0c00, "Fireware contorller", "fireware"},
1136 { 0x0c01, "Access bus controller", "access-bus"},
1137 { 0x0c02, "SSA controller", "ssa"},
1138 { 0x0c03, "USB controller", "usb"},
1139 { 0x0c04, "Fibre channel controller", "fibre-channel"},
1140 { 0, NULL}
1143 static void pci_for_each_device_under_bus(PCIBus *bus,
1144 void (*fn)(PCIBus *b, PCIDevice *d))
1146 PCIDevice *d;
1147 int devfn;
1149 for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1150 d = bus->devices[devfn];
1151 if (d) {
1152 fn(bus, d);
1157 void pci_for_each_device(PCIBus *bus, int bus_num,
1158 void (*fn)(PCIBus *b, PCIDevice *d))
1160 bus = pci_find_bus(bus, bus_num);
1162 if (bus) {
1163 pci_for_each_device_under_bus(bus, fn);
1167 static const pci_class_desc *get_class_desc(int class)
1169 const pci_class_desc *desc;
1171 desc = pci_class_descriptions;
1172 while (desc->desc && class != desc->class) {
1173 desc++;
1176 return desc;
1179 static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num);
1181 static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev)
1183 PciMemoryRegionList *head = NULL, *cur_item = NULL;
1184 int i;
1186 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1187 const PCIIORegion *r = &dev->io_regions[i];
1188 PciMemoryRegionList *region;
1190 if (!r->size) {
1191 continue;
1194 region = g_malloc0(sizeof(*region));
1195 region->value = g_malloc0(sizeof(*region->value));
1197 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
1198 region->value->type = g_strdup("io");
1199 } else {
1200 region->value->type = g_strdup("memory");
1201 region->value->has_prefetch = true;
1202 region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH);
1203 region->value->has_mem_type_64 = true;
1204 region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64);
1207 region->value->bar = i;
1208 region->value->address = r->addr;
1209 region->value->size = r->size;
1211 /* XXX: waiting for the qapi to support GSList */
1212 if (!cur_item) {
1213 head = cur_item = region;
1214 } else {
1215 cur_item->next = region;
1216 cur_item = region;
1220 return head;
1223 static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus,
1224 int bus_num)
1226 PciBridgeInfo *info;
1228 info = g_malloc0(sizeof(*info));
1230 info->bus.number = dev->config[PCI_PRIMARY_BUS];
1231 info->bus.secondary = dev->config[PCI_SECONDARY_BUS];
1232 info->bus.subordinate = dev->config[PCI_SUBORDINATE_BUS];
1234 info->bus.io_range = g_malloc0(sizeof(*info->bus.io_range));
1235 info->bus.io_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO);
1236 info->bus.io_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO);
1238 info->bus.memory_range = g_malloc0(sizeof(*info->bus.memory_range));
1239 info->bus.memory_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY);
1240 info->bus.memory_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY);
1242 info->bus.prefetchable_range = g_malloc0(sizeof(*info->bus.prefetchable_range));
1243 info->bus.prefetchable_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
1244 info->bus.prefetchable_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
1246 if (dev->config[PCI_SECONDARY_BUS] != 0) {
1247 PCIBus *child_bus = pci_find_bus(bus, dev->config[PCI_SECONDARY_BUS]);
1248 if (child_bus) {
1249 info->has_devices = true;
1250 info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]);
1254 return info;
1257 static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus,
1258 int bus_num)
1260 const pci_class_desc *desc;
1261 PciDeviceInfo *info;
1262 uint8_t type;
1263 int class;
1265 info = g_malloc0(sizeof(*info));
1266 info->bus = bus_num;
1267 info->slot = PCI_SLOT(dev->devfn);
1268 info->function = PCI_FUNC(dev->devfn);
1270 class = pci_get_word(dev->config + PCI_CLASS_DEVICE);
1271 info->class_info.class = class;
1272 desc = get_class_desc(class);
1273 if (desc->desc) {
1274 info->class_info.has_desc = true;
1275 info->class_info.desc = g_strdup(desc->desc);
1278 info->id.vendor = pci_get_word(dev->config + PCI_VENDOR_ID);
1279 info->id.device = pci_get_word(dev->config + PCI_DEVICE_ID);
1280 info->regions = qmp_query_pci_regions(dev);
1281 info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : "");
1283 if (dev->config[PCI_INTERRUPT_PIN] != 0) {
1284 info->has_irq = true;
1285 info->irq = dev->config[PCI_INTERRUPT_LINE];
1288 type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
1289 if (type == PCI_HEADER_TYPE_BRIDGE) {
1290 info->has_pci_bridge = true;
1291 info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num);
1294 return info;
1297 static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num)
1299 PciDeviceInfoList *info, *head = NULL, *cur_item = NULL;
1300 PCIDevice *dev;
1301 int devfn;
1303 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1304 dev = bus->devices[devfn];
1305 if (dev) {
1306 info = g_malloc0(sizeof(*info));
1307 info->value = qmp_query_pci_device(dev, bus, bus_num);
1309 /* XXX: waiting for the qapi to support GSList */
1310 if (!cur_item) {
1311 head = cur_item = info;
1312 } else {
1313 cur_item->next = info;
1314 cur_item = info;
1319 return head;
1322 static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num)
1324 PciInfo *info = NULL;
1326 bus = pci_find_bus(bus, bus_num);
1327 if (bus) {
1328 info = g_malloc0(sizeof(*info));
1329 info->bus = bus_num;
1330 info->devices = qmp_query_pci_devices(bus, bus_num);
1333 return info;
1336 PciInfoList *qmp_query_pci(Error **errp)
1338 PciInfoList *info, *head = NULL, *cur_item = NULL;
1339 struct PCIHostBus *host;
1341 QLIST_FOREACH(host, &host_buses, next) {
1342 info = g_malloc0(sizeof(*info));
1343 info->value = qmp_query_pci_bus(host->bus, 0);
1345 /* XXX: waiting for the qapi to support GSList */
1346 if (!cur_item) {
1347 head = cur_item = info;
1348 } else {
1349 cur_item->next = info;
1350 cur_item = info;
1354 return head;
1357 static const char * const pci_nic_models[] = {
1358 "ne2k_pci",
1359 "i82551",
1360 "i82557b",
1361 "i82559er",
1362 "rtl8139",
1363 "e1000",
1364 "pcnet",
1365 "virtio",
1366 NULL
1369 static const char * const pci_nic_names[] = {
1370 "ne2k_pci",
1371 "i82551",
1372 "i82557b",
1373 "i82559er",
1374 "rtl8139",
1375 "e1000",
1376 "pcnet",
1377 "virtio-net-pci",
1378 NULL
1381 /* Initialize a PCI NIC. */
1382 /* FIXME callers should check for failure, but don't */
1383 PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
1384 const char *default_devaddr)
1386 const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr;
1387 PCIBus *bus;
1388 int devfn;
1389 PCIDevice *pci_dev;
1390 DeviceState *dev;
1391 int i;
1393 i = qemu_find_nic_model(nd, pci_nic_models, default_model);
1394 if (i < 0)
1395 return NULL;
1397 bus = pci_get_bus_devfn(&devfn, devaddr);
1398 if (!bus) {
1399 error_report("Invalid PCI device address %s for device %s",
1400 devaddr, pci_nic_names[i]);
1401 return NULL;
1404 pci_dev = pci_create(bus, devfn, pci_nic_names[i]);
1405 dev = &pci_dev->qdev;
1406 qdev_set_nic_properties(dev, nd);
1407 if (qdev_init(dev) < 0)
1408 return NULL;
1409 return pci_dev;
1412 PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
1413 const char *default_devaddr)
1415 PCIDevice *res;
1417 if (qemu_show_nic_models(nd->model, pci_nic_models))
1418 exit(0);
1420 res = pci_nic_init(nd, default_model, default_devaddr);
1421 if (!res)
1422 exit(1);
1423 return res;
1426 /* Whether a given bus number is in range of the secondary
1427 * bus of the given bridge device. */
1428 static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num)
1430 return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) &
1431 PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ &&
1432 dev->config[PCI_SECONDARY_BUS] < bus_num &&
1433 bus_num <= dev->config[PCI_SUBORDINATE_BUS];
1436 PCIBus *pci_find_bus(PCIBus *bus, int bus_num)
1438 PCIBus *sec;
1440 if (!bus) {
1441 return NULL;
1444 if (pci_bus_num(bus) == bus_num) {
1445 return bus;
1448 /* Consider all bus numbers in range for the host pci bridge. */
1449 if (bus->parent_dev &&
1450 !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) {
1451 return NULL;
1454 /* try child bus */
1455 for (; bus; bus = sec) {
1456 QLIST_FOREACH(sec, &bus->child, sibling) {
1457 assert(sec->parent_dev);
1458 if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) {
1459 return sec;
1461 if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) {
1462 break;
1467 return NULL;
1470 PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn)
1472 bus = pci_find_bus(bus, bus_num);
1474 if (!bus)
1475 return NULL;
1477 return bus->devices[devfn];
1480 static int pci_qdev_init(DeviceState *qdev, DeviceInfo *base)
1482 PCIDevice *pci_dev = (PCIDevice *)qdev;
1483 PCIDeviceInfo *info = container_of(base, PCIDeviceInfo, qdev);
1484 PCIBus *bus;
1485 int rc;
1486 bool is_default_rom;
1488 /* initialize cap_present for pci_is_express() and pci_config_size() */
1489 if (info->is_express) {
1490 pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS;
1493 bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev));
1494 pci_dev = do_pci_register_device(pci_dev, bus, base->name,
1495 pci_dev->devfn, info);
1496 if (pci_dev == NULL)
1497 return -1;
1498 if (qdev->hotplugged && info->no_hotplug) {
1499 qerror_report(QERR_DEVICE_NO_HOTPLUG, info->qdev.name);
1500 do_pci_unregister_device(pci_dev);
1501 return -1;
1503 if (info->init) {
1504 rc = info->init(pci_dev);
1505 if (rc != 0) {
1506 do_pci_unregister_device(pci_dev);
1507 return rc;
1511 /* rom loading */
1512 is_default_rom = false;
1513 if (pci_dev->romfile == NULL && info->romfile != NULL) {
1514 pci_dev->romfile = g_strdup(info->romfile);
1515 is_default_rom = true;
1517 pci_add_option_rom(pci_dev, is_default_rom);
1519 if (bus->hotplug) {
1520 /* Let buses differentiate between hotplug and when device is
1521 * enabled during qemu machine creation. */
1522 rc = bus->hotplug(bus->hotplug_qdev, pci_dev,
1523 qdev->hotplugged ? PCI_HOTPLUG_ENABLED:
1524 PCI_COLDPLUG_ENABLED);
1525 if (rc != 0) {
1526 int r = pci_unregister_device(&pci_dev->qdev);
1527 assert(!r);
1528 return rc;
1531 return 0;
1534 static int pci_unplug_device(DeviceState *qdev)
1536 PCIDevice *dev = DO_UPCAST(PCIDevice, qdev, qdev);
1537 PCIDeviceInfo *info = container_of(qdev->info, PCIDeviceInfo, qdev);
1539 if (info->no_hotplug) {
1540 qerror_report(QERR_DEVICE_NO_HOTPLUG, info->qdev.name);
1541 return -1;
1543 return dev->bus->hotplug(dev->bus->hotplug_qdev, dev,
1544 PCI_HOTPLUG_DISABLED);
1547 void pci_qdev_register(PCIDeviceInfo *info)
1549 info->qdev.init = pci_qdev_init;
1550 info->qdev.unplug = pci_unplug_device;
1551 info->qdev.exit = pci_unregister_device;
1552 info->qdev.bus_info = &pci_bus_info;
1553 qdev_register(&info->qdev);
1556 void pci_qdev_register_many(PCIDeviceInfo *info)
1558 while (info->qdev.name) {
1559 pci_qdev_register(info);
1560 info++;
1564 PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction,
1565 const char *name)
1567 DeviceState *dev;
1569 dev = qdev_create(&bus->qbus, name);
1570 qdev_prop_set_uint32(dev, "addr", devfn);
1571 qdev_prop_set_bit(dev, "multifunction", multifunction);
1572 return DO_UPCAST(PCIDevice, qdev, dev);
1575 PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn,
1576 bool multifunction,
1577 const char *name)
1579 PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name);
1580 qdev_init_nofail(&dev->qdev);
1581 return dev;
1584 PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name)
1586 return pci_create_multifunction(bus, devfn, false, name);
1589 PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
1591 return pci_create_simple_multifunction(bus, devfn, false, name);
1594 static int pci_find_space(PCIDevice *pdev, uint8_t size)
1596 int config_size = pci_config_size(pdev);
1597 int offset = PCI_CONFIG_HEADER_SIZE;
1598 int i;
1599 for (i = PCI_CONFIG_HEADER_SIZE; i < config_size; ++i)
1600 if (pdev->used[i])
1601 offset = i + 1;
1602 else if (i - offset + 1 == size)
1603 return offset;
1604 return 0;
1607 static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id,
1608 uint8_t *prev_p)
1610 uint8_t next, prev;
1612 if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST))
1613 return 0;
1615 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1616 prev = next + PCI_CAP_LIST_NEXT)
1617 if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id)
1618 break;
1620 if (prev_p)
1621 *prev_p = prev;
1622 return next;
1625 static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset)
1627 uint8_t next, prev, found = 0;
1629 if (!(pdev->used[offset])) {
1630 return 0;
1633 assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST);
1635 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1636 prev = next + PCI_CAP_LIST_NEXT) {
1637 if (next <= offset && next > found) {
1638 found = next;
1641 return found;
1644 /* Patch the PCI vendor and device ids in a PCI rom image if necessary.
1645 This is needed for an option rom which is used for more than one device. */
1646 static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size)
1648 uint16_t vendor_id;
1649 uint16_t device_id;
1650 uint16_t rom_vendor_id;
1651 uint16_t rom_device_id;
1652 uint16_t rom_magic;
1653 uint16_t pcir_offset;
1654 uint8_t checksum;
1656 /* Words in rom data are little endian (like in PCI configuration),
1657 so they can be read / written with pci_get_word / pci_set_word. */
1659 /* Only a valid rom will be patched. */
1660 rom_magic = pci_get_word(ptr);
1661 if (rom_magic != 0xaa55) {
1662 PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic);
1663 return;
1665 pcir_offset = pci_get_word(ptr + 0x18);
1666 if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) {
1667 PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset);
1668 return;
1671 vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID);
1672 device_id = pci_get_word(pdev->config + PCI_DEVICE_ID);
1673 rom_vendor_id = pci_get_word(ptr + pcir_offset + 4);
1674 rom_device_id = pci_get_word(ptr + pcir_offset + 6);
1676 PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile,
1677 vendor_id, device_id, rom_vendor_id, rom_device_id);
1679 checksum = ptr[6];
1681 if (vendor_id != rom_vendor_id) {
1682 /* Patch vendor id and checksum (at offset 6 for etherboot roms). */
1683 checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8);
1684 checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8);
1685 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1686 ptr[6] = checksum;
1687 pci_set_word(ptr + pcir_offset + 4, vendor_id);
1690 if (device_id != rom_device_id) {
1691 /* Patch device id and checksum (at offset 6 for etherboot roms). */
1692 checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8);
1693 checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8);
1694 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1695 ptr[6] = checksum;
1696 pci_set_word(ptr + pcir_offset + 6, device_id);
1700 /* Add an option rom for the device */
1701 static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom)
1703 int size;
1704 char *path;
1705 void *ptr;
1706 char name[32];
1708 if (!pdev->romfile)
1709 return 0;
1710 if (strlen(pdev->romfile) == 0)
1711 return 0;
1713 if (!pdev->rom_bar) {
1715 * Load rom via fw_cfg instead of creating a rom bar,
1716 * for 0.11 compatibility.
1718 int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE);
1719 if (class == 0x0300) {
1720 rom_add_vga(pdev->romfile);
1721 } else {
1722 rom_add_option(pdev->romfile, -1);
1724 return 0;
1727 path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile);
1728 if (path == NULL) {
1729 path = g_strdup(pdev->romfile);
1732 size = get_image_size(path);
1733 if (size < 0) {
1734 error_report("%s: failed to find romfile \"%s\"",
1735 __FUNCTION__, pdev->romfile);
1736 g_free(path);
1737 return -1;
1739 if (size & (size - 1)) {
1740 size = 1 << qemu_fls(size);
1743 if (pdev->qdev.info->vmsd)
1744 snprintf(name, sizeof(name), "%s.rom", pdev->qdev.info->vmsd->name);
1745 else
1746 snprintf(name, sizeof(name), "%s.rom", pdev->qdev.info->name);
1747 pdev->has_rom = true;
1748 memory_region_init_ram(&pdev->rom, name, size);
1749 vmstate_register_ram(&pdev->rom, &pdev->qdev);
1750 ptr = memory_region_get_ram_ptr(&pdev->rom);
1751 load_image(path, ptr);
1752 g_free(path);
1754 if (is_default_rom) {
1755 /* Only the default rom images will be patched (if needed). */
1756 pci_patch_ids(pdev, ptr, size);
1759 qemu_put_ram_ptr(ptr);
1761 pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom);
1763 return 0;
1766 static void pci_del_option_rom(PCIDevice *pdev)
1768 if (!pdev->has_rom)
1769 return;
1771 vmstate_unregister_ram(&pdev->rom, &pdev->qdev);
1772 memory_region_destroy(&pdev->rom);
1773 pdev->has_rom = false;
1777 * if !offset
1778 * Reserve space and add capability to the linked list in pci config space
1780 * if offset = 0,
1781 * Find and reserve space and add capability to the linked list
1782 * in pci config space */
1783 int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
1784 uint8_t offset, uint8_t size)
1786 uint8_t *config;
1787 int i, overlapping_cap;
1789 if (!offset) {
1790 offset = pci_find_space(pdev, size);
1791 if (!offset) {
1792 return -ENOSPC;
1794 } else {
1795 /* Verify that capabilities don't overlap. Note: device assignment
1796 * depends on this check to verify that the device is not broken.
1797 * Should never trigger for emulated devices, but it's helpful
1798 * for debugging these. */
1799 for (i = offset; i < offset + size; i++) {
1800 overlapping_cap = pci_find_capability_at_offset(pdev, i);
1801 if (overlapping_cap) {
1802 fprintf(stderr, "ERROR: %04x:%02x:%02x.%x "
1803 "Attempt to add PCI capability %x at offset "
1804 "%x overlaps existing capability %x at offset %x\n",
1805 pci_find_domain(pdev->bus), pci_bus_num(pdev->bus),
1806 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1807 cap_id, offset, overlapping_cap, i);
1808 return -EINVAL;
1813 config = pdev->config + offset;
1814 config[PCI_CAP_LIST_ID] = cap_id;
1815 config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST];
1816 pdev->config[PCI_CAPABILITY_LIST] = offset;
1817 pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
1818 memset(pdev->used + offset, 0xFF, size);
1819 /* Make capability read-only by default */
1820 memset(pdev->wmask + offset, 0, size);
1821 /* Check capability by default */
1822 memset(pdev->cmask + offset, 0xFF, size);
1823 return offset;
1826 /* Unlink capability from the pci config space. */
1827 void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
1829 uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev);
1830 if (!offset)
1831 return;
1832 pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT];
1833 /* Make capability writable again */
1834 memset(pdev->wmask + offset, 0xff, size);
1835 memset(pdev->w1cmask + offset, 0, size);
1836 /* Clear cmask as device-specific registers can't be checked */
1837 memset(pdev->cmask + offset, 0, size);
1838 memset(pdev->used + offset, 0, size);
1840 if (!pdev->config[PCI_CAPABILITY_LIST])
1841 pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST;
1844 uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id)
1846 return pci_find_capability_list(pdev, cap_id, NULL);
1849 static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent)
1851 PCIDevice *d = (PCIDevice *)dev;
1852 const pci_class_desc *desc;
1853 char ctxt[64];
1854 PCIIORegion *r;
1855 int i, class;
1857 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
1858 desc = pci_class_descriptions;
1859 while (desc->desc && class != desc->class)
1860 desc++;
1861 if (desc->desc) {
1862 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc);
1863 } else {
1864 snprintf(ctxt, sizeof(ctxt), "Class %04x", class);
1867 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, "
1868 "pci id %04x:%04x (sub %04x:%04x)\n",
1869 indent, "", ctxt, pci_bus_num(d->bus),
1870 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn),
1871 pci_get_word(d->config + PCI_VENDOR_ID),
1872 pci_get_word(d->config + PCI_DEVICE_ID),
1873 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID),
1874 pci_get_word(d->config + PCI_SUBSYSTEM_ID));
1875 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1876 r = &d->io_regions[i];
1877 if (!r->size)
1878 continue;
1879 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS
1880 " [0x%"FMT_PCIBUS"]\n",
1881 indent, "",
1882 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem",
1883 r->addr, r->addr + r->size - 1);
1887 static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len)
1889 PCIDevice *d = (PCIDevice *)dev;
1890 const char *name = NULL;
1891 const pci_class_desc *desc = pci_class_descriptions;
1892 int class = pci_get_word(d->config + PCI_CLASS_DEVICE);
1894 while (desc->desc &&
1895 (class & ~desc->fw_ign_bits) !=
1896 (desc->class & ~desc->fw_ign_bits)) {
1897 desc++;
1900 if (desc->desc) {
1901 name = desc->fw_name;
1904 if (name) {
1905 pstrcpy(buf, len, name);
1906 } else {
1907 snprintf(buf, len, "pci%04x,%04x",
1908 pci_get_word(d->config + PCI_VENDOR_ID),
1909 pci_get_word(d->config + PCI_DEVICE_ID));
1912 return buf;
1915 static char *pcibus_get_fw_dev_path(DeviceState *dev)
1917 PCIDevice *d = (PCIDevice *)dev;
1918 char path[50], name[33];
1919 int off;
1921 off = snprintf(path, sizeof(path), "%s@%x",
1922 pci_dev_fw_name(dev, name, sizeof name),
1923 PCI_SLOT(d->devfn));
1924 if (PCI_FUNC(d->devfn))
1925 snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn));
1926 return strdup(path);
1929 static char *pcibus_get_dev_path(DeviceState *dev)
1931 PCIDevice *d = container_of(dev, PCIDevice, qdev);
1932 PCIDevice *t;
1933 int slot_depth;
1934 /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function.
1935 * 00 is added here to make this format compatible with
1936 * domain:Bus:Slot.Func for systems without nested PCI bridges.
1937 * Slot.Function list specifies the slot and function numbers for all
1938 * devices on the path from root to the specific device. */
1939 char domain[] = "DDDD:00";
1940 char slot[] = ":SS.F";
1941 int domain_len = sizeof domain - 1 /* For '\0' */;
1942 int slot_len = sizeof slot - 1 /* For '\0' */;
1943 int path_len;
1944 char *path, *p;
1945 int s;
1947 /* Calculate # of slots on path between device and root. */;
1948 slot_depth = 0;
1949 for (t = d; t; t = t->bus->parent_dev) {
1950 ++slot_depth;
1953 path_len = domain_len + slot_len * slot_depth;
1955 /* Allocate memory, fill in the terminating null byte. */
1956 path = g_malloc(path_len + 1 /* For '\0' */);
1957 path[path_len] = '\0';
1959 /* First field is the domain. */
1960 s = snprintf(domain, sizeof domain, "%04x:00", pci_find_domain(d->bus));
1961 assert(s == domain_len);
1962 memcpy(path, domain, domain_len);
1964 /* Fill in slot numbers. We walk up from device to root, so need to print
1965 * them in the reverse order, last to first. */
1966 p = path + path_len;
1967 for (t = d; t; t = t->bus->parent_dev) {
1968 p -= slot_len;
1969 s = snprintf(slot, sizeof slot, ":%02x.%x",
1970 PCI_SLOT(t->devfn), PCI_FUNC(t->devfn));
1971 assert(s == slot_len);
1972 memcpy(p, slot, slot_len);
1975 return path;
1978 static int pci_qdev_find_recursive(PCIBus *bus,
1979 const char *id, PCIDevice **pdev)
1981 DeviceState *qdev = qdev_find_recursive(&bus->qbus, id);
1982 if (!qdev) {
1983 return -ENODEV;
1986 /* roughly check if given qdev is pci device */
1987 if (qdev->info->init == &pci_qdev_init &&
1988 qdev->parent_bus->info == &pci_bus_info) {
1989 *pdev = DO_UPCAST(PCIDevice, qdev, qdev);
1990 return 0;
1992 return -EINVAL;
1995 int pci_qdev_find_device(const char *id, PCIDevice **pdev)
1997 struct PCIHostBus *host;
1998 int rc = -ENODEV;
2000 QLIST_FOREACH(host, &host_buses, next) {
2001 int tmp = pci_qdev_find_recursive(host->bus, id, pdev);
2002 if (!tmp) {
2003 rc = 0;
2004 break;
2006 if (tmp != -ENODEV) {
2007 rc = tmp;
2011 return rc;
2014 MemoryRegion *pci_address_space(PCIDevice *dev)
2016 return dev->bus->address_space_mem;
2019 MemoryRegion *pci_address_space_io(PCIDevice *dev)
2021 return dev->bus->address_space_io;