qdev: Move bus properties to a separate global
[qemu-kvm.git] / hw / pci.c
blob377039ec99cf12008d3fa2aa29d157e922ee9a80
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 static Property pci_props[] = {
48 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1),
49 DEFINE_PROP_STRING("romfile", PCIDevice, romfile),
50 DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1),
51 DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present,
52 QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false),
53 DEFINE_PROP_BIT("command_serr_enable", PCIDevice, cap_present,
54 QEMU_PCI_CAP_SERR_BITNR, true),
55 DEFINE_PROP_END_OF_LIST()
58 struct BusInfo pci_bus_info = {
59 .name = "PCI",
60 .size = sizeof(PCIBus),
61 .print_dev = pcibus_dev_print,
62 .get_dev_path = pcibus_get_dev_path,
63 .get_fw_dev_path = pcibus_get_fw_dev_path,
64 .reset = pcibus_reset,
65 .props = pci_props,
68 static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num);
69 static void pci_update_mappings(PCIDevice *d);
70 static void pci_set_irq(void *opaque, int irq_num, int level);
71 static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom);
72 static void pci_del_option_rom(PCIDevice *pdev);
74 static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET;
75 static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU;
77 struct PCIHostBus {
78 int domain;
79 struct PCIBus *bus;
80 QLIST_ENTRY(PCIHostBus) next;
82 static QLIST_HEAD(, PCIHostBus) host_buses;
84 static const VMStateDescription vmstate_pcibus = {
85 .name = "PCIBUS",
86 .version_id = 1,
87 .minimum_version_id = 1,
88 .minimum_version_id_old = 1,
89 .fields = (VMStateField []) {
90 VMSTATE_INT32_EQUAL(nirq, PCIBus),
91 VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t),
92 VMSTATE_END_OF_LIST()
95 static int pci_bar(PCIDevice *d, int reg)
97 uint8_t type;
99 if (reg != PCI_ROM_SLOT)
100 return PCI_BASE_ADDRESS_0 + reg * 4;
102 type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
103 return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS;
106 static inline int pci_irq_state(PCIDevice *d, int irq_num)
108 return (d->irq_state >> irq_num) & 0x1;
111 static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
113 d->irq_state &= ~(0x1 << irq_num);
114 d->irq_state |= level << irq_num;
117 static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)
119 PCIBus *bus;
120 for (;;) {
121 bus = pci_dev->bus;
122 irq_num = bus->map_irq(pci_dev, irq_num);
123 if (bus->set_irq)
124 break;
125 pci_dev = bus->parent_dev;
127 bus->irq_count[irq_num] += change;
128 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0);
131 int pci_bus_get_irq_level(PCIBus *bus, int irq_num)
133 assert(irq_num >= 0);
134 assert(irq_num < bus->nirq);
135 return !!bus->irq_count[irq_num];
138 /* Update interrupt status bit in config space on interrupt
139 * state change. */
140 static void pci_update_irq_status(PCIDevice *dev)
142 if (dev->irq_state) {
143 dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT;
144 } else {
145 dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
149 void pci_device_deassert_intx(PCIDevice *dev)
151 int i;
152 for (i = 0; i < PCI_NUM_PINS; ++i) {
153 qemu_set_irq(dev->irq[i], 0);
158 * This function is called on #RST and FLR.
159 * FLR if PCI_EXP_DEVCTL_BCR_FLR is set
161 void pci_device_reset(PCIDevice *dev)
163 int r;
165 qdev_reset_all(&dev->qdev);
167 dev->irq_state = 0;
168 pci_update_irq_status(dev);
169 pci_device_deassert_intx(dev);
170 /* Clear all writable bits */
171 pci_word_test_and_clear_mask(dev->config + PCI_COMMAND,
172 pci_get_word(dev->wmask + PCI_COMMAND) |
173 pci_get_word(dev->w1cmask + PCI_COMMAND));
174 pci_word_test_and_clear_mask(dev->config + PCI_STATUS,
175 pci_get_word(dev->wmask + PCI_STATUS) |
176 pci_get_word(dev->w1cmask + PCI_STATUS));
177 dev->config[PCI_CACHE_LINE_SIZE] = 0x0;
178 dev->config[PCI_INTERRUPT_LINE] = 0x0;
179 for (r = 0; r < PCI_NUM_REGIONS; ++r) {
180 PCIIORegion *region = &dev->io_regions[r];
181 if (!region->size) {
182 continue;
185 if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) &&
186 region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
187 pci_set_quad(dev->config + pci_bar(dev, r), region->type);
188 } else {
189 pci_set_long(dev->config + pci_bar(dev, r), region->type);
192 pci_update_mappings(dev);
196 * Trigger pci bus reset under a given bus.
197 * To be called on RST# assert.
199 void pci_bus_reset(PCIBus *bus)
201 int i;
203 for (i = 0; i < bus->nirq; i++) {
204 bus->irq_count[i] = 0;
206 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
207 if (bus->devices[i]) {
208 pci_device_reset(bus->devices[i]);
213 static int pcibus_reset(BusState *qbus)
215 pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus));
217 /* topology traverse is done by pci_bus_reset().
218 Tell qbus/qdev walker not to traverse the tree */
219 return 1;
222 static void pci_host_bus_register(int domain, PCIBus *bus)
224 struct PCIHostBus *host;
225 host = g_malloc0(sizeof(*host));
226 host->domain = domain;
227 host->bus = bus;
228 QLIST_INSERT_HEAD(&host_buses, host, next);
231 PCIBus *pci_find_root_bus(int domain)
233 struct PCIHostBus *host;
235 QLIST_FOREACH(host, &host_buses, next) {
236 if (host->domain == domain) {
237 return host->bus;
241 return NULL;
244 int pci_find_domain(const PCIBus *bus)
246 PCIDevice *d;
247 struct PCIHostBus *host;
249 /* obtain root bus */
250 while ((d = bus->parent_dev) != NULL) {
251 bus = d->bus;
254 QLIST_FOREACH(host, &host_buses, next) {
255 if (host->bus == bus) {
256 return host->domain;
260 abort(); /* should not be reached */
261 return -1;
264 void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
265 const char *name,
266 MemoryRegion *address_space_mem,
267 MemoryRegion *address_space_io,
268 uint8_t devfn_min)
270 qbus_create_inplace(&bus->qbus, &pci_bus_info, parent, name);
271 assert(PCI_FUNC(devfn_min) == 0);
272 bus->devfn_min = devfn_min;
273 bus->address_space_mem = address_space_mem;
274 bus->address_space_io = address_space_io;
276 /* host bridge */
277 QLIST_INIT(&bus->child);
278 pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */
280 vmstate_register(NULL, -1, &vmstate_pcibus, bus);
283 PCIBus *pci_bus_new(DeviceState *parent, const char *name,
284 MemoryRegion *address_space_mem,
285 MemoryRegion *address_space_io,
286 uint8_t devfn_min)
288 PCIBus *bus;
290 bus = g_malloc0(sizeof(*bus));
291 bus->qbus.qdev_allocated = 1;
292 pci_bus_new_inplace(bus, parent, name, address_space_mem,
293 address_space_io, devfn_min);
294 return bus;
297 void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
298 void *irq_opaque, int nirq)
300 bus->set_irq = set_irq;
301 bus->map_irq = map_irq;
302 bus->irq_opaque = irq_opaque;
303 bus->nirq = nirq;
304 bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0]));
307 void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *qdev)
309 bus->qbus.allow_hotplug = 1;
310 bus->hotplug = hotplug;
311 bus->hotplug_qdev = qdev;
314 PCIBus *pci_register_bus(DeviceState *parent, const char *name,
315 pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
316 void *irq_opaque,
317 MemoryRegion *address_space_mem,
318 MemoryRegion *address_space_io,
319 uint8_t devfn_min, int nirq)
321 PCIBus *bus;
323 bus = pci_bus_new(parent, name, address_space_mem,
324 address_space_io, devfn_min);
325 pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq);
326 return bus;
329 int pci_bus_num(PCIBus *s)
331 if (!s->parent_dev)
332 return 0; /* pci host bridge */
333 return s->parent_dev->config[PCI_SECONDARY_BUS];
336 static int get_pci_config_device(QEMUFile *f, void *pv, size_t size)
338 PCIDevice *s = container_of(pv, PCIDevice, config);
339 uint8_t *config;
340 int i;
342 assert(size == pci_config_size(s));
343 config = g_malloc(size);
345 qemu_get_buffer(f, config, size);
346 for (i = 0; i < size; ++i) {
347 if ((config[i] ^ s->config[i]) &
348 s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) {
349 g_free(config);
350 return -EINVAL;
353 memcpy(s->config, config, size);
355 pci_update_mappings(s);
357 g_free(config);
358 return 0;
361 /* just put buffer */
362 static void put_pci_config_device(QEMUFile *f, void *pv, size_t size)
364 const uint8_t **v = pv;
365 assert(size == pci_config_size(container_of(pv, PCIDevice, config)));
366 qemu_put_buffer(f, *v, size);
369 static VMStateInfo vmstate_info_pci_config = {
370 .name = "pci config",
371 .get = get_pci_config_device,
372 .put = put_pci_config_device,
375 static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size)
377 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
378 uint32_t irq_state[PCI_NUM_PINS];
379 int i;
380 for (i = 0; i < PCI_NUM_PINS; ++i) {
381 irq_state[i] = qemu_get_be32(f);
382 if (irq_state[i] != 0x1 && irq_state[i] != 0) {
383 fprintf(stderr, "irq state %d: must be 0 or 1.\n",
384 irq_state[i]);
385 return -EINVAL;
389 for (i = 0; i < PCI_NUM_PINS; ++i) {
390 pci_set_irq_state(s, i, irq_state[i]);
393 return 0;
396 static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size)
398 int i;
399 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
401 for (i = 0; i < PCI_NUM_PINS; ++i) {
402 qemu_put_be32(f, pci_irq_state(s, i));
406 static VMStateInfo vmstate_info_pci_irq_state = {
407 .name = "pci irq state",
408 .get = get_pci_irq_state,
409 .put = put_pci_irq_state,
412 const VMStateDescription vmstate_pci_device = {
413 .name = "PCIDevice",
414 .version_id = 2,
415 .minimum_version_id = 1,
416 .minimum_version_id_old = 1,
417 .fields = (VMStateField []) {
418 VMSTATE_INT32_LE(version_id, PCIDevice),
419 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
420 vmstate_info_pci_config,
421 PCI_CONFIG_SPACE_SIZE),
422 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
423 vmstate_info_pci_irq_state,
424 PCI_NUM_PINS * sizeof(int32_t)),
425 VMSTATE_END_OF_LIST()
429 const VMStateDescription vmstate_pcie_device = {
430 .name = "PCIDevice",
431 .version_id = 2,
432 .minimum_version_id = 1,
433 .minimum_version_id_old = 1,
434 .fields = (VMStateField []) {
435 VMSTATE_INT32_LE(version_id, PCIDevice),
436 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
437 vmstate_info_pci_config,
438 PCIE_CONFIG_SPACE_SIZE),
439 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
440 vmstate_info_pci_irq_state,
441 PCI_NUM_PINS * sizeof(int32_t)),
442 VMSTATE_END_OF_LIST()
446 static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s)
448 return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device;
451 void pci_device_save(PCIDevice *s, QEMUFile *f)
453 /* Clear interrupt status bit: it is implicit
454 * in irq_state which we are saving.
455 * This makes us compatible with old devices
456 * which never set or clear this bit. */
457 s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
458 vmstate_save_state(f, pci_get_vmstate(s), s);
459 /* Restore the interrupt status bit. */
460 pci_update_irq_status(s);
463 int pci_device_load(PCIDevice *s, QEMUFile *f)
465 int ret;
466 ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id);
467 /* Restore the interrupt status bit. */
468 pci_update_irq_status(s);
469 return ret;
472 static void pci_set_default_subsystem_id(PCIDevice *pci_dev)
474 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
475 pci_default_sub_vendor_id);
476 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
477 pci_default_sub_device_id);
481 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL
482 * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error
484 static int pci_parse_devaddr(const char *addr, int *domp, int *busp,
485 unsigned int *slotp, unsigned int *funcp)
487 const char *p;
488 char *e;
489 unsigned long val;
490 unsigned long dom = 0, bus = 0;
491 unsigned int slot = 0;
492 unsigned int func = 0;
494 p = addr;
495 val = strtoul(p, &e, 16);
496 if (e == p)
497 return -1;
498 if (*e == ':') {
499 bus = val;
500 p = e + 1;
501 val = strtoul(p, &e, 16);
502 if (e == p)
503 return -1;
504 if (*e == ':') {
505 dom = bus;
506 bus = val;
507 p = e + 1;
508 val = strtoul(p, &e, 16);
509 if (e == p)
510 return -1;
514 slot = val;
516 if (funcp != NULL) {
517 if (*e != '.')
518 return -1;
520 p = e + 1;
521 val = strtoul(p, &e, 16);
522 if (e == p)
523 return -1;
525 func = val;
528 /* if funcp == NULL func is 0 */
529 if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7)
530 return -1;
532 if (*e)
533 return -1;
535 *domp = dom;
536 *busp = bus;
537 *slotp = slot;
538 if (funcp != NULL)
539 *funcp = func;
540 return 0;
543 int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
544 unsigned *slotp)
546 /* strip legacy tag */
547 if (!strncmp(addr, "pci_addr=", 9)) {
548 addr += 9;
550 if (pci_parse_devaddr(addr, domp, busp, slotp, NULL)) {
551 monitor_printf(mon, "Invalid pci address\n");
552 return -1;
554 return 0;
557 PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr)
559 int dom, bus;
560 unsigned slot;
562 if (!devaddr) {
563 *devfnp = -1;
564 return pci_find_bus_nr(pci_find_root_bus(0), 0);
567 if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) {
568 return NULL;
571 *devfnp = PCI_DEVFN(slot, 0);
572 return pci_find_bus_nr(pci_find_root_bus(dom), bus);
575 static void pci_init_cmask(PCIDevice *dev)
577 pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff);
578 pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff);
579 dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST;
580 dev->cmask[PCI_REVISION_ID] = 0xff;
581 dev->cmask[PCI_CLASS_PROG] = 0xff;
582 pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff);
583 dev->cmask[PCI_HEADER_TYPE] = 0xff;
584 dev->cmask[PCI_CAPABILITY_LIST] = 0xff;
587 static void pci_init_wmask(PCIDevice *dev)
589 int config_size = pci_config_size(dev);
591 dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff;
592 dev->wmask[PCI_INTERRUPT_LINE] = 0xff;
593 pci_set_word(dev->wmask + PCI_COMMAND,
594 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
595 PCI_COMMAND_INTX_DISABLE);
596 if (dev->cap_present & QEMU_PCI_CAP_SERR) {
597 pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR);
600 memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff,
601 config_size - PCI_CONFIG_HEADER_SIZE);
604 static void pci_init_w1cmask(PCIDevice *dev)
607 * Note: It's okay to set w1cmask even for readonly bits as
608 * long as their value is hardwired to 0.
610 pci_set_word(dev->w1cmask + PCI_STATUS,
611 PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT |
612 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT |
613 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY);
616 static void pci_init_mask_bridge(PCIDevice *d)
618 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and
619 PCI_SEC_LETENCY_TIMER */
620 memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4);
622 /* base and limit */
623 d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff;
624 d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff;
625 pci_set_word(d->wmask + PCI_MEMORY_BASE,
626 PCI_MEMORY_RANGE_MASK & 0xffff);
627 pci_set_word(d->wmask + PCI_MEMORY_LIMIT,
628 PCI_MEMORY_RANGE_MASK & 0xffff);
629 pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE,
630 PCI_PREF_RANGE_MASK & 0xffff);
631 pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT,
632 PCI_PREF_RANGE_MASK & 0xffff);
634 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */
635 memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8);
637 /* Supported memory and i/o types */
638 d->config[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_16;
639 d->config[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_16;
640 pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_BASE,
641 PCI_PREF_RANGE_TYPE_64);
642 pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_LIMIT,
643 PCI_PREF_RANGE_TYPE_64);
645 /* TODO: add this define to pci_regs.h in linux and then in qemu. */
646 #define PCI_BRIDGE_CTL_VGA_16BIT 0x10 /* VGA 16-bit decode */
647 #define PCI_BRIDGE_CTL_DISCARD 0x100 /* Primary discard timer */
648 #define PCI_BRIDGE_CTL_SEC_DISCARD 0x200 /* Secondary discard timer */
649 #define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400 /* Discard timer status */
650 #define PCI_BRIDGE_CTL_DISCARD_SERR 0x800 /* Discard timer SERR# enable */
651 pci_set_word(d->wmask + PCI_BRIDGE_CONTROL,
652 PCI_BRIDGE_CTL_PARITY |
653 PCI_BRIDGE_CTL_SERR |
654 PCI_BRIDGE_CTL_ISA |
655 PCI_BRIDGE_CTL_VGA |
656 PCI_BRIDGE_CTL_VGA_16BIT |
657 PCI_BRIDGE_CTL_MASTER_ABORT |
658 PCI_BRIDGE_CTL_BUS_RESET |
659 PCI_BRIDGE_CTL_FAST_BACK |
660 PCI_BRIDGE_CTL_DISCARD |
661 PCI_BRIDGE_CTL_SEC_DISCARD |
662 PCI_BRIDGE_CTL_DISCARD_SERR);
663 /* Below does not do anything as we never set this bit, put here for
664 * completeness. */
665 pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL,
666 PCI_BRIDGE_CTL_DISCARD_STATUS);
667 d->cmask[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_MASK;
668 d->cmask[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_MASK;
669 pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_BASE,
670 PCI_PREF_RANGE_TYPE_MASK);
671 pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_LIMIT,
672 PCI_PREF_RANGE_TYPE_MASK);
675 static int pci_init_multifunction(PCIBus *bus, PCIDevice *dev)
677 uint8_t slot = PCI_SLOT(dev->devfn);
678 uint8_t func;
680 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
681 dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
685 * multifunction bit is interpreted in two ways as follows.
686 * - all functions must set the bit to 1.
687 * Example: Intel X53
688 * - function 0 must set the bit, but the rest function (> 0)
689 * is allowed to leave the bit to 0.
690 * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10,
692 * So OS (at least Linux) checks the bit of only function 0,
693 * and doesn't see the bit of function > 0.
695 * The below check allows both interpretation.
697 if (PCI_FUNC(dev->devfn)) {
698 PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)];
699 if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) {
700 /* function 0 should set multifunction bit */
701 error_report("PCI: single function device can't be populated "
702 "in function %x.%x", slot, PCI_FUNC(dev->devfn));
703 return -1;
705 return 0;
708 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
709 return 0;
711 /* function 0 indicates single function, so function > 0 must be NULL */
712 for (func = 1; func < PCI_FUNC_MAX; ++func) {
713 if (bus->devices[PCI_DEVFN(slot, func)]) {
714 error_report("PCI: %x.0 indicates single function, "
715 "but %x.%x is already populated.",
716 slot, slot, func);
717 return -1;
720 return 0;
723 static void pci_config_alloc(PCIDevice *pci_dev)
725 int config_size = pci_config_size(pci_dev);
727 pci_dev->config = g_malloc0(config_size);
728 pci_dev->cmask = g_malloc0(config_size);
729 pci_dev->wmask = g_malloc0(config_size);
730 pci_dev->w1cmask = g_malloc0(config_size);
731 pci_dev->used = g_malloc0(config_size);
734 static void pci_config_free(PCIDevice *pci_dev)
736 g_free(pci_dev->config);
737 g_free(pci_dev->cmask);
738 g_free(pci_dev->wmask);
739 g_free(pci_dev->w1cmask);
740 g_free(pci_dev->used);
743 /* -1 for devfn means auto assign */
744 static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
745 const char *name, int devfn)
747 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev);
748 PCIConfigReadFunc *config_read = pc->config_read;
749 PCIConfigWriteFunc *config_write = pc->config_write;
751 if (devfn < 0) {
752 for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices);
753 devfn += PCI_FUNC_MAX) {
754 if (!bus->devices[devfn])
755 goto found;
757 error_report("PCI: no slot/function available for %s, all in use", name);
758 return NULL;
759 found: ;
760 } else if (bus->devices[devfn]) {
761 error_report("PCI: slot %d function %d not available for %s, in use by %s",
762 PCI_SLOT(devfn), PCI_FUNC(devfn), name, bus->devices[devfn]->name);
763 return NULL;
765 pci_dev->bus = bus;
766 pci_dev->devfn = devfn;
767 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
768 pci_dev->irq_state = 0;
769 pci_config_alloc(pci_dev);
771 pci_config_set_vendor_id(pci_dev->config, pc->vendor_id);
772 pci_config_set_device_id(pci_dev->config, pc->device_id);
773 pci_config_set_revision(pci_dev->config, pc->revision);
774 pci_config_set_class(pci_dev->config, pc->class_id);
776 if (!pc->is_bridge) {
777 if (pc->subsystem_vendor_id || pc->subsystem_id) {
778 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
779 pc->subsystem_vendor_id);
780 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
781 pc->subsystem_id);
782 } else {
783 pci_set_default_subsystem_id(pci_dev);
785 } else {
786 /* subsystem_vendor_id/subsystem_id are only for header type 0 */
787 assert(!pc->subsystem_vendor_id);
788 assert(!pc->subsystem_id);
790 pci_init_cmask(pci_dev);
791 pci_init_wmask(pci_dev);
792 pci_init_w1cmask(pci_dev);
793 if (pc->is_bridge) {
794 pci_init_mask_bridge(pci_dev);
796 if (pci_init_multifunction(bus, pci_dev)) {
797 pci_config_free(pci_dev);
798 return NULL;
801 if (!config_read)
802 config_read = pci_default_read_config;
803 if (!config_write)
804 config_write = pci_default_write_config;
805 pci_dev->config_read = config_read;
806 pci_dev->config_write = config_write;
807 bus->devices[devfn] = pci_dev;
808 pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS);
809 pci_dev->version_id = 2; /* Current pci device vmstate version */
810 return pci_dev;
813 static void do_pci_unregister_device(PCIDevice *pci_dev)
815 qemu_free_irqs(pci_dev->irq);
816 pci_dev->bus->devices[pci_dev->devfn] = NULL;
817 pci_config_free(pci_dev);
820 static void pci_unregister_io_regions(PCIDevice *pci_dev)
822 PCIIORegion *r;
823 int i;
825 for(i = 0; i < PCI_NUM_REGIONS; i++) {
826 r = &pci_dev->io_regions[i];
827 if (!r->size || r->addr == PCI_BAR_UNMAPPED)
828 continue;
829 memory_region_del_subregion(r->address_space, r->memory);
833 static int pci_unregister_device(DeviceState *dev)
835 PCIDevice *pci_dev = PCI_DEVICE(dev);
836 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev);
837 int ret = 0;
839 if (pc->exit)
840 ret = pc->exit(pci_dev);
841 if (ret)
842 return ret;
844 pci_unregister_io_regions(pci_dev);
845 pci_del_option_rom(pci_dev);
846 do_pci_unregister_device(pci_dev);
847 return 0;
850 void pci_register_bar(PCIDevice *pci_dev, int region_num,
851 uint8_t type, MemoryRegion *memory)
853 PCIIORegion *r;
854 uint32_t addr;
855 uint64_t wmask;
856 pcibus_t size = memory_region_size(memory);
858 assert(region_num >= 0);
859 assert(region_num < PCI_NUM_REGIONS);
860 if (size & (size-1)) {
861 fprintf(stderr, "ERROR: PCI region size must be pow2 "
862 "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size);
863 exit(1);
866 r = &pci_dev->io_regions[region_num];
867 r->addr = PCI_BAR_UNMAPPED;
868 r->size = size;
869 r->type = type;
870 r->memory = NULL;
872 wmask = ~(size - 1);
873 addr = pci_bar(pci_dev, region_num);
874 if (region_num == PCI_ROM_SLOT) {
875 /* ROM enable bit is writable */
876 wmask |= PCI_ROM_ADDRESS_ENABLE;
878 pci_set_long(pci_dev->config + addr, type);
879 if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) &&
880 r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
881 pci_set_quad(pci_dev->wmask + addr, wmask);
882 pci_set_quad(pci_dev->cmask + addr, ~0ULL);
883 } else {
884 pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff);
885 pci_set_long(pci_dev->cmask + addr, 0xffffffff);
887 pci_dev->io_regions[region_num].memory = memory;
888 pci_dev->io_regions[region_num].address_space
889 = type & PCI_BASE_ADDRESS_SPACE_IO
890 ? pci_dev->bus->address_space_io
891 : pci_dev->bus->address_space_mem;
894 pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num)
896 return pci_dev->io_regions[region_num].addr;
899 static pcibus_t pci_bar_address(PCIDevice *d,
900 int reg, uint8_t type, pcibus_t size)
902 pcibus_t new_addr, last_addr;
903 int bar = pci_bar(d, reg);
904 uint16_t cmd = pci_get_word(d->config + PCI_COMMAND);
906 if (type & PCI_BASE_ADDRESS_SPACE_IO) {
907 if (!(cmd & PCI_COMMAND_IO)) {
908 return PCI_BAR_UNMAPPED;
910 new_addr = pci_get_long(d->config + bar) & ~(size - 1);
911 last_addr = new_addr + size - 1;
912 /* NOTE: we have only 64K ioports on PC */
913 if (last_addr <= new_addr || new_addr == 0 || last_addr > UINT16_MAX) {
914 return PCI_BAR_UNMAPPED;
916 return new_addr;
919 if (!(cmd & PCI_COMMAND_MEMORY)) {
920 return PCI_BAR_UNMAPPED;
922 if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
923 new_addr = pci_get_quad(d->config + bar);
924 } else {
925 new_addr = pci_get_long(d->config + bar);
927 /* the ROM slot has a specific enable bit */
928 if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) {
929 return PCI_BAR_UNMAPPED;
931 new_addr &= ~(size - 1);
932 last_addr = new_addr + size - 1;
933 /* NOTE: we do not support wrapping */
934 /* XXX: as we cannot support really dynamic
935 mappings, we handle specific values as invalid
936 mappings. */
937 if (last_addr <= new_addr || new_addr == 0 ||
938 last_addr == PCI_BAR_UNMAPPED) {
939 return PCI_BAR_UNMAPPED;
942 /* Now pcibus_t is 64bit.
943 * Check if 32 bit BAR wraps around explicitly.
944 * Without this, PC ide doesn't work well.
945 * TODO: remove this work around.
947 if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) {
948 return PCI_BAR_UNMAPPED;
952 * OS is allowed to set BAR beyond its addressable
953 * bits. For example, 32 bit OS can set 64bit bar
954 * to >4G. Check it. TODO: we might need to support
955 * it in the future for e.g. PAE.
957 if (last_addr >= TARGET_PHYS_ADDR_MAX) {
958 return PCI_BAR_UNMAPPED;
961 return new_addr;
964 static void pci_update_mappings(PCIDevice *d)
966 PCIIORegion *r;
967 int i;
968 pcibus_t new_addr;
970 for(i = 0; i < PCI_NUM_REGIONS; i++) {
971 r = &d->io_regions[i];
973 /* this region isn't registered */
974 if (!r->size)
975 continue;
977 new_addr = pci_bar_address(d, i, r->type, r->size);
979 /* This bar isn't changed */
980 if (new_addr == r->addr)
981 continue;
983 /* now do the real mapping */
984 if (r->addr != PCI_BAR_UNMAPPED) {
985 memory_region_del_subregion(r->address_space, r->memory);
987 r->addr = new_addr;
988 if (r->addr != PCI_BAR_UNMAPPED) {
989 memory_region_add_subregion_overlap(r->address_space,
990 r->addr, r->memory, 1);
995 static inline int pci_irq_disabled(PCIDevice *d)
997 return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE;
1000 /* Called after interrupt disabled field update in config space,
1001 * assert/deassert interrupts if necessary.
1002 * Gets original interrupt disable bit value (before update). */
1003 static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled)
1005 int i, disabled = pci_irq_disabled(d);
1006 if (disabled == was_irq_disabled)
1007 return;
1008 for (i = 0; i < PCI_NUM_PINS; ++i) {
1009 int state = pci_irq_state(d, i);
1010 pci_change_irq_level(d, i, disabled ? -state : state);
1014 uint32_t pci_default_read_config(PCIDevice *d,
1015 uint32_t address, int len)
1017 uint32_t val = 0;
1019 memcpy(&val, d->config + address, len);
1020 return le32_to_cpu(val);
1023 void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l)
1025 int i, was_irq_disabled = pci_irq_disabled(d);
1027 for (i = 0; i < l; val >>= 8, ++i) {
1028 uint8_t wmask = d->wmask[addr + i];
1029 uint8_t w1cmask = d->w1cmask[addr + i];
1030 assert(!(wmask & w1cmask));
1031 d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask);
1032 d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */
1034 if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) ||
1035 ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) ||
1036 ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) ||
1037 range_covers_byte(addr, l, PCI_COMMAND))
1038 pci_update_mappings(d);
1040 if (range_covers_byte(addr, l, PCI_COMMAND))
1041 pci_update_irq_disabled(d, was_irq_disabled);
1044 /***********************************************************/
1045 /* generic PCI irq support */
1047 /* 0 <= irq_num <= 3. level must be 0 or 1 */
1048 static void pci_set_irq(void *opaque, int irq_num, int level)
1050 PCIDevice *pci_dev = opaque;
1051 int change;
1053 change = level - pci_irq_state(pci_dev, irq_num);
1054 if (!change)
1055 return;
1057 pci_set_irq_state(pci_dev, irq_num, level);
1058 pci_update_irq_status(pci_dev);
1059 if (pci_irq_disabled(pci_dev))
1060 return;
1061 pci_change_irq_level(pci_dev, irq_num, change);
1064 /***********************************************************/
1065 /* monitor info on PCI */
1067 typedef struct {
1068 uint16_t class;
1069 const char *desc;
1070 const char *fw_name;
1071 uint16_t fw_ign_bits;
1072 } pci_class_desc;
1074 static const pci_class_desc pci_class_descriptions[] =
1076 { 0x0001, "VGA controller", "display"},
1077 { 0x0100, "SCSI controller", "scsi"},
1078 { 0x0101, "IDE controller", "ide"},
1079 { 0x0102, "Floppy controller", "fdc"},
1080 { 0x0103, "IPI controller", "ipi"},
1081 { 0x0104, "RAID controller", "raid"},
1082 { 0x0106, "SATA controller"},
1083 { 0x0107, "SAS controller"},
1084 { 0x0180, "Storage controller"},
1085 { 0x0200, "Ethernet controller", "ethernet"},
1086 { 0x0201, "Token Ring controller", "token-ring"},
1087 { 0x0202, "FDDI controller", "fddi"},
1088 { 0x0203, "ATM controller", "atm"},
1089 { 0x0280, "Network controller"},
1090 { 0x0300, "VGA controller", "display", 0x00ff},
1091 { 0x0301, "XGA controller"},
1092 { 0x0302, "3D controller"},
1093 { 0x0380, "Display controller"},
1094 { 0x0400, "Video controller", "video"},
1095 { 0x0401, "Audio controller", "sound"},
1096 { 0x0402, "Phone"},
1097 { 0x0403, "Audio controller", "sound"},
1098 { 0x0480, "Multimedia controller"},
1099 { 0x0500, "RAM controller", "memory"},
1100 { 0x0501, "Flash controller", "flash"},
1101 { 0x0580, "Memory controller"},
1102 { 0x0600, "Host bridge", "host"},
1103 { 0x0601, "ISA bridge", "isa"},
1104 { 0x0602, "EISA bridge", "eisa"},
1105 { 0x0603, "MC bridge", "mca"},
1106 { 0x0604, "PCI bridge", "pci"},
1107 { 0x0605, "PCMCIA bridge", "pcmcia"},
1108 { 0x0606, "NUBUS bridge", "nubus"},
1109 { 0x0607, "CARDBUS bridge", "cardbus"},
1110 { 0x0608, "RACEWAY bridge"},
1111 { 0x0680, "Bridge"},
1112 { 0x0700, "Serial port", "serial"},
1113 { 0x0701, "Parallel port", "parallel"},
1114 { 0x0800, "Interrupt controller", "interrupt-controller"},
1115 { 0x0801, "DMA controller", "dma-controller"},
1116 { 0x0802, "Timer", "timer"},
1117 { 0x0803, "RTC", "rtc"},
1118 { 0x0900, "Keyboard", "keyboard"},
1119 { 0x0901, "Pen", "pen"},
1120 { 0x0902, "Mouse", "mouse"},
1121 { 0x0A00, "Dock station", "dock", 0x00ff},
1122 { 0x0B00, "i386 cpu", "cpu", 0x00ff},
1123 { 0x0c00, "Fireware contorller", "fireware"},
1124 { 0x0c01, "Access bus controller", "access-bus"},
1125 { 0x0c02, "SSA controller", "ssa"},
1126 { 0x0c03, "USB controller", "usb"},
1127 { 0x0c04, "Fibre channel controller", "fibre-channel"},
1128 { 0, NULL}
1131 static void pci_for_each_device_under_bus(PCIBus *bus,
1132 void (*fn)(PCIBus *b, PCIDevice *d))
1134 PCIDevice *d;
1135 int devfn;
1137 for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1138 d = bus->devices[devfn];
1139 if (d) {
1140 fn(bus, d);
1145 void pci_for_each_device(PCIBus *bus, int bus_num,
1146 void (*fn)(PCIBus *b, PCIDevice *d))
1148 bus = pci_find_bus_nr(bus, bus_num);
1150 if (bus) {
1151 pci_for_each_device_under_bus(bus, fn);
1155 static const pci_class_desc *get_class_desc(int class)
1157 const pci_class_desc *desc;
1159 desc = pci_class_descriptions;
1160 while (desc->desc && class != desc->class) {
1161 desc++;
1164 return desc;
1167 static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num);
1169 static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev)
1171 PciMemoryRegionList *head = NULL, *cur_item = NULL;
1172 int i;
1174 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1175 const PCIIORegion *r = &dev->io_regions[i];
1176 PciMemoryRegionList *region;
1178 if (!r->size) {
1179 continue;
1182 region = g_malloc0(sizeof(*region));
1183 region->value = g_malloc0(sizeof(*region->value));
1185 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
1186 region->value->type = g_strdup("io");
1187 } else {
1188 region->value->type = g_strdup("memory");
1189 region->value->has_prefetch = true;
1190 region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH);
1191 region->value->has_mem_type_64 = true;
1192 region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64);
1195 region->value->bar = i;
1196 region->value->address = r->addr;
1197 region->value->size = r->size;
1199 /* XXX: waiting for the qapi to support GSList */
1200 if (!cur_item) {
1201 head = cur_item = region;
1202 } else {
1203 cur_item->next = region;
1204 cur_item = region;
1208 return head;
1211 static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus,
1212 int bus_num)
1214 PciBridgeInfo *info;
1216 info = g_malloc0(sizeof(*info));
1218 info->bus.number = dev->config[PCI_PRIMARY_BUS];
1219 info->bus.secondary = dev->config[PCI_SECONDARY_BUS];
1220 info->bus.subordinate = dev->config[PCI_SUBORDINATE_BUS];
1222 info->bus.io_range = g_malloc0(sizeof(*info->bus.io_range));
1223 info->bus.io_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO);
1224 info->bus.io_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO);
1226 info->bus.memory_range = g_malloc0(sizeof(*info->bus.memory_range));
1227 info->bus.memory_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY);
1228 info->bus.memory_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY);
1230 info->bus.prefetchable_range = g_malloc0(sizeof(*info->bus.prefetchable_range));
1231 info->bus.prefetchable_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
1232 info->bus.prefetchable_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
1234 if (dev->config[PCI_SECONDARY_BUS] != 0) {
1235 PCIBus *child_bus = pci_find_bus_nr(bus, dev->config[PCI_SECONDARY_BUS]);
1236 if (child_bus) {
1237 info->has_devices = true;
1238 info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]);
1242 return info;
1245 static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus,
1246 int bus_num)
1248 const pci_class_desc *desc;
1249 PciDeviceInfo *info;
1250 uint8_t type;
1251 int class;
1253 info = g_malloc0(sizeof(*info));
1254 info->bus = bus_num;
1255 info->slot = PCI_SLOT(dev->devfn);
1256 info->function = PCI_FUNC(dev->devfn);
1258 class = pci_get_word(dev->config + PCI_CLASS_DEVICE);
1259 info->class_info.class = class;
1260 desc = get_class_desc(class);
1261 if (desc->desc) {
1262 info->class_info.has_desc = true;
1263 info->class_info.desc = g_strdup(desc->desc);
1266 info->id.vendor = pci_get_word(dev->config + PCI_VENDOR_ID);
1267 info->id.device = pci_get_word(dev->config + PCI_DEVICE_ID);
1268 info->regions = qmp_query_pci_regions(dev);
1269 info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : "");
1271 if (dev->config[PCI_INTERRUPT_PIN] != 0) {
1272 info->has_irq = true;
1273 info->irq = dev->config[PCI_INTERRUPT_LINE];
1276 type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
1277 if (type == PCI_HEADER_TYPE_BRIDGE) {
1278 info->has_pci_bridge = true;
1279 info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num);
1282 return info;
1285 static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num)
1287 PciDeviceInfoList *info, *head = NULL, *cur_item = NULL;
1288 PCIDevice *dev;
1289 int devfn;
1291 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1292 dev = bus->devices[devfn];
1293 if (dev) {
1294 info = g_malloc0(sizeof(*info));
1295 info->value = qmp_query_pci_device(dev, bus, bus_num);
1297 /* XXX: waiting for the qapi to support GSList */
1298 if (!cur_item) {
1299 head = cur_item = info;
1300 } else {
1301 cur_item->next = info;
1302 cur_item = info;
1307 return head;
1310 static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num)
1312 PciInfo *info = NULL;
1314 bus = pci_find_bus_nr(bus, bus_num);
1315 if (bus) {
1316 info = g_malloc0(sizeof(*info));
1317 info->bus = bus_num;
1318 info->devices = qmp_query_pci_devices(bus, bus_num);
1321 return info;
1324 PciInfoList *qmp_query_pci(Error **errp)
1326 PciInfoList *info, *head = NULL, *cur_item = NULL;
1327 struct PCIHostBus *host;
1329 QLIST_FOREACH(host, &host_buses, next) {
1330 info = g_malloc0(sizeof(*info));
1331 info->value = qmp_query_pci_bus(host->bus, 0);
1333 /* XXX: waiting for the qapi to support GSList */
1334 if (!cur_item) {
1335 head = cur_item = info;
1336 } else {
1337 cur_item->next = info;
1338 cur_item = info;
1342 return head;
1345 static const char * const pci_nic_models[] = {
1346 "ne2k_pci",
1347 "i82551",
1348 "i82557b",
1349 "i82559er",
1350 "rtl8139",
1351 "e1000",
1352 "pcnet",
1353 "virtio",
1354 NULL
1357 static const char * const pci_nic_names[] = {
1358 "ne2k_pci",
1359 "i82551",
1360 "i82557b",
1361 "i82559er",
1362 "rtl8139",
1363 "e1000",
1364 "pcnet",
1365 "virtio-net-pci",
1366 NULL
1369 /* Initialize a PCI NIC. */
1370 /* FIXME callers should check for failure, but don't */
1371 PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
1372 const char *default_devaddr)
1374 const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr;
1375 PCIBus *bus;
1376 int devfn;
1377 PCIDevice *pci_dev;
1378 DeviceState *dev;
1379 int i;
1381 i = qemu_find_nic_model(nd, pci_nic_models, default_model);
1382 if (i < 0)
1383 return NULL;
1385 bus = pci_get_bus_devfn(&devfn, devaddr);
1386 if (!bus) {
1387 error_report("Invalid PCI device address %s for device %s",
1388 devaddr, pci_nic_names[i]);
1389 return NULL;
1392 pci_dev = pci_create(bus, devfn, pci_nic_names[i]);
1393 dev = &pci_dev->qdev;
1394 qdev_set_nic_properties(dev, nd);
1395 if (qdev_init(dev) < 0)
1396 return NULL;
1397 return pci_dev;
1400 PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
1401 const char *default_devaddr)
1403 PCIDevice *res;
1405 if (qemu_show_nic_models(nd->model, pci_nic_models))
1406 exit(0);
1408 res = pci_nic_init(nd, default_model, default_devaddr);
1409 if (!res)
1410 exit(1);
1411 return res;
1414 /* Whether a given bus number is in range of the secondary
1415 * bus of the given bridge device. */
1416 static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num)
1418 return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) &
1419 PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ &&
1420 dev->config[PCI_SECONDARY_BUS] < bus_num &&
1421 bus_num <= dev->config[PCI_SUBORDINATE_BUS];
1424 static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num)
1426 PCIBus *sec;
1428 if (!bus) {
1429 return NULL;
1432 if (pci_bus_num(bus) == bus_num) {
1433 return bus;
1436 /* Consider all bus numbers in range for the host pci bridge. */
1437 if (bus->parent_dev &&
1438 !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) {
1439 return NULL;
1442 /* try child bus */
1443 for (; bus; bus = sec) {
1444 QLIST_FOREACH(sec, &bus->child, sibling) {
1445 assert(sec->parent_dev);
1446 if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) {
1447 return sec;
1449 if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) {
1450 break;
1455 return NULL;
1458 PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn)
1460 bus = pci_find_bus_nr(bus, bus_num);
1462 if (!bus)
1463 return NULL;
1465 return bus->devices[devfn];
1468 static int pci_qdev_init(DeviceState *qdev)
1470 PCIDevice *pci_dev = (PCIDevice *)qdev;
1471 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev);
1472 PCIBus *bus;
1473 int rc;
1474 bool is_default_rom;
1476 /* initialize cap_present for pci_is_express() and pci_config_size() */
1477 if (pc->is_express) {
1478 pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS;
1481 bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev));
1482 pci_dev = do_pci_register_device(pci_dev, bus,
1483 object_get_typename(OBJECT(qdev)),
1484 pci_dev->devfn);
1485 if (pci_dev == NULL)
1486 return -1;
1487 if (qdev->hotplugged && pc->no_hotplug) {
1488 qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(pci_dev)));
1489 do_pci_unregister_device(pci_dev);
1490 return -1;
1492 if (pc->init) {
1493 rc = pc->init(pci_dev);
1494 if (rc != 0) {
1495 do_pci_unregister_device(pci_dev);
1496 return rc;
1500 /* rom loading */
1501 is_default_rom = false;
1502 if (pci_dev->romfile == NULL && pc->romfile != NULL) {
1503 pci_dev->romfile = g_strdup(pc->romfile);
1504 is_default_rom = true;
1506 pci_add_option_rom(pci_dev, is_default_rom);
1508 if (bus->hotplug) {
1509 /* Let buses differentiate between hotplug and when device is
1510 * enabled during qemu machine creation. */
1511 rc = bus->hotplug(bus->hotplug_qdev, pci_dev,
1512 qdev->hotplugged ? PCI_HOTPLUG_ENABLED:
1513 PCI_COLDPLUG_ENABLED);
1514 if (rc != 0) {
1515 int r = pci_unregister_device(&pci_dev->qdev);
1516 assert(!r);
1517 return rc;
1520 return 0;
1523 static int pci_unplug_device(DeviceState *qdev)
1525 PCIDevice *dev = PCI_DEVICE(qdev);
1526 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
1528 if (pc->no_hotplug) {
1529 qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(dev)));
1530 return -1;
1532 return dev->bus->hotplug(dev->bus->hotplug_qdev, dev,
1533 PCI_HOTPLUG_DISABLED);
1536 PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction,
1537 const char *name)
1539 DeviceState *dev;
1541 dev = qdev_create(&bus->qbus, name);
1542 qdev_prop_set_int32(dev, "addr", devfn);
1543 qdev_prop_set_bit(dev, "multifunction", multifunction);
1544 return PCI_DEVICE(dev);
1547 PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn,
1548 bool multifunction,
1549 const char *name)
1551 PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name);
1552 qdev_init_nofail(&dev->qdev);
1553 return dev;
1556 PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name)
1558 return pci_create_multifunction(bus, devfn, false, name);
1561 PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
1563 return pci_create_simple_multifunction(bus, devfn, false, name);
1566 static int pci_find_space(PCIDevice *pdev, uint8_t size)
1568 int config_size = pci_config_size(pdev);
1569 int offset = PCI_CONFIG_HEADER_SIZE;
1570 int i;
1571 for (i = PCI_CONFIG_HEADER_SIZE; i < config_size; ++i)
1572 if (pdev->used[i])
1573 offset = i + 1;
1574 else if (i - offset + 1 == size)
1575 return offset;
1576 return 0;
1579 static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id,
1580 uint8_t *prev_p)
1582 uint8_t next, prev;
1584 if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST))
1585 return 0;
1587 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1588 prev = next + PCI_CAP_LIST_NEXT)
1589 if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id)
1590 break;
1592 if (prev_p)
1593 *prev_p = prev;
1594 return next;
1597 static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset)
1599 uint8_t next, prev, found = 0;
1601 if (!(pdev->used[offset])) {
1602 return 0;
1605 assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST);
1607 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1608 prev = next + PCI_CAP_LIST_NEXT) {
1609 if (next <= offset && next > found) {
1610 found = next;
1613 return found;
1616 /* Patch the PCI vendor and device ids in a PCI rom image if necessary.
1617 This is needed for an option rom which is used for more than one device. */
1618 static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size)
1620 uint16_t vendor_id;
1621 uint16_t device_id;
1622 uint16_t rom_vendor_id;
1623 uint16_t rom_device_id;
1624 uint16_t rom_magic;
1625 uint16_t pcir_offset;
1626 uint8_t checksum;
1628 /* Words in rom data are little endian (like in PCI configuration),
1629 so they can be read / written with pci_get_word / pci_set_word. */
1631 /* Only a valid rom will be patched. */
1632 rom_magic = pci_get_word(ptr);
1633 if (rom_magic != 0xaa55) {
1634 PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic);
1635 return;
1637 pcir_offset = pci_get_word(ptr + 0x18);
1638 if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) {
1639 PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset);
1640 return;
1643 vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID);
1644 device_id = pci_get_word(pdev->config + PCI_DEVICE_ID);
1645 rom_vendor_id = pci_get_word(ptr + pcir_offset + 4);
1646 rom_device_id = pci_get_word(ptr + pcir_offset + 6);
1648 PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile,
1649 vendor_id, device_id, rom_vendor_id, rom_device_id);
1651 checksum = ptr[6];
1653 if (vendor_id != rom_vendor_id) {
1654 /* Patch vendor id and checksum (at offset 6 for etherboot roms). */
1655 checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8);
1656 checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8);
1657 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1658 ptr[6] = checksum;
1659 pci_set_word(ptr + pcir_offset + 4, vendor_id);
1662 if (device_id != rom_device_id) {
1663 /* Patch device id and checksum (at offset 6 for etherboot roms). */
1664 checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8);
1665 checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8);
1666 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1667 ptr[6] = checksum;
1668 pci_set_word(ptr + pcir_offset + 6, device_id);
1672 /* Add an option rom for the device */
1673 static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom)
1675 int size;
1676 char *path;
1677 void *ptr;
1678 char name[32];
1679 const VMStateDescription *vmsd;
1681 if (!pdev->romfile)
1682 return 0;
1683 if (strlen(pdev->romfile) == 0)
1684 return 0;
1686 if (!pdev->rom_bar) {
1688 * Load rom via fw_cfg instead of creating a rom bar,
1689 * for 0.11 compatibility.
1691 int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE);
1692 if (class == 0x0300) {
1693 rom_add_vga(pdev->romfile);
1694 } else {
1695 rom_add_option(pdev->romfile, -1);
1697 return 0;
1700 path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile);
1701 if (path == NULL) {
1702 path = g_strdup(pdev->romfile);
1705 size = get_image_size(path);
1706 if (size < 0) {
1707 error_report("%s: failed to find romfile \"%s\"",
1708 __FUNCTION__, pdev->romfile);
1709 g_free(path);
1710 return -1;
1712 if (size & (size - 1)) {
1713 size = 1 << qemu_fls(size);
1716 vmsd = qdev_get_vmsd(DEVICE(pdev));
1718 if (vmsd) {
1719 snprintf(name, sizeof(name), "%s.rom", vmsd->name);
1720 } else {
1721 snprintf(name, sizeof(name), "%s.rom", object_get_typename(OBJECT(pdev)));
1723 pdev->has_rom = true;
1724 memory_region_init_ram(&pdev->rom, name, size);
1725 vmstate_register_ram(&pdev->rom, &pdev->qdev);
1726 ptr = memory_region_get_ram_ptr(&pdev->rom);
1727 load_image(path, ptr);
1728 g_free(path);
1730 if (is_default_rom) {
1731 /* Only the default rom images will be patched (if needed). */
1732 pci_patch_ids(pdev, ptr, size);
1735 qemu_put_ram_ptr(ptr);
1737 pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom);
1739 return 0;
1742 static void pci_del_option_rom(PCIDevice *pdev)
1744 if (!pdev->has_rom)
1745 return;
1747 vmstate_unregister_ram(&pdev->rom, &pdev->qdev);
1748 memory_region_destroy(&pdev->rom);
1749 pdev->has_rom = false;
1753 * if !offset
1754 * Reserve space and add capability to the linked list in pci config space
1756 * if offset = 0,
1757 * Find and reserve space and add capability to the linked list
1758 * in pci config space */
1759 int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
1760 uint8_t offset, uint8_t size)
1762 uint8_t *config;
1763 int i, overlapping_cap;
1765 if (!offset) {
1766 offset = pci_find_space(pdev, size);
1767 if (!offset) {
1768 return -ENOSPC;
1770 } else {
1771 /* Verify that capabilities don't overlap. Note: device assignment
1772 * depends on this check to verify that the device is not broken.
1773 * Should never trigger for emulated devices, but it's helpful
1774 * for debugging these. */
1775 for (i = offset; i < offset + size; i++) {
1776 overlapping_cap = pci_find_capability_at_offset(pdev, i);
1777 if (overlapping_cap) {
1778 fprintf(stderr, "ERROR: %04x:%02x:%02x.%x "
1779 "Attempt to add PCI capability %x at offset "
1780 "%x overlaps existing capability %x at offset %x\n",
1781 pci_find_domain(pdev->bus), pci_bus_num(pdev->bus),
1782 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1783 cap_id, offset, overlapping_cap, i);
1784 return -EINVAL;
1789 config = pdev->config + offset;
1790 config[PCI_CAP_LIST_ID] = cap_id;
1791 config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST];
1792 pdev->config[PCI_CAPABILITY_LIST] = offset;
1793 pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
1794 memset(pdev->used + offset, 0xFF, size);
1795 /* Make capability read-only by default */
1796 memset(pdev->wmask + offset, 0, size);
1797 /* Check capability by default */
1798 memset(pdev->cmask + offset, 0xFF, size);
1799 return offset;
1802 /* Unlink capability from the pci config space. */
1803 void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
1805 uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev);
1806 if (!offset)
1807 return;
1808 pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT];
1809 /* Make capability writable again */
1810 memset(pdev->wmask + offset, 0xff, size);
1811 memset(pdev->w1cmask + offset, 0, size);
1812 /* Clear cmask as device-specific registers can't be checked */
1813 memset(pdev->cmask + offset, 0, size);
1814 memset(pdev->used + offset, 0, size);
1816 if (!pdev->config[PCI_CAPABILITY_LIST])
1817 pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST;
1820 uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id)
1822 return pci_find_capability_list(pdev, cap_id, NULL);
1825 static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent)
1827 PCIDevice *d = (PCIDevice *)dev;
1828 const pci_class_desc *desc;
1829 char ctxt[64];
1830 PCIIORegion *r;
1831 int i, class;
1833 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
1834 desc = pci_class_descriptions;
1835 while (desc->desc && class != desc->class)
1836 desc++;
1837 if (desc->desc) {
1838 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc);
1839 } else {
1840 snprintf(ctxt, sizeof(ctxt), "Class %04x", class);
1843 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, "
1844 "pci id %04x:%04x (sub %04x:%04x)\n",
1845 indent, "", ctxt, pci_bus_num(d->bus),
1846 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn),
1847 pci_get_word(d->config + PCI_VENDOR_ID),
1848 pci_get_word(d->config + PCI_DEVICE_ID),
1849 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID),
1850 pci_get_word(d->config + PCI_SUBSYSTEM_ID));
1851 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1852 r = &d->io_regions[i];
1853 if (!r->size)
1854 continue;
1855 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS
1856 " [0x%"FMT_PCIBUS"]\n",
1857 indent, "",
1858 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem",
1859 r->addr, r->addr + r->size - 1);
1863 static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len)
1865 PCIDevice *d = (PCIDevice *)dev;
1866 const char *name = NULL;
1867 const pci_class_desc *desc = pci_class_descriptions;
1868 int class = pci_get_word(d->config + PCI_CLASS_DEVICE);
1870 while (desc->desc &&
1871 (class & ~desc->fw_ign_bits) !=
1872 (desc->class & ~desc->fw_ign_bits)) {
1873 desc++;
1876 if (desc->desc) {
1877 name = desc->fw_name;
1880 if (name) {
1881 pstrcpy(buf, len, name);
1882 } else {
1883 snprintf(buf, len, "pci%04x,%04x",
1884 pci_get_word(d->config + PCI_VENDOR_ID),
1885 pci_get_word(d->config + PCI_DEVICE_ID));
1888 return buf;
1891 static char *pcibus_get_fw_dev_path(DeviceState *dev)
1893 PCIDevice *d = (PCIDevice *)dev;
1894 char path[50], name[33];
1895 int off;
1897 off = snprintf(path, sizeof(path), "%s@%x",
1898 pci_dev_fw_name(dev, name, sizeof name),
1899 PCI_SLOT(d->devfn));
1900 if (PCI_FUNC(d->devfn))
1901 snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn));
1902 return strdup(path);
1905 static char *pcibus_get_dev_path(DeviceState *dev)
1907 PCIDevice *d = container_of(dev, PCIDevice, qdev);
1908 PCIDevice *t;
1909 int slot_depth;
1910 /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function.
1911 * 00 is added here to make this format compatible with
1912 * domain:Bus:Slot.Func for systems without nested PCI bridges.
1913 * Slot.Function list specifies the slot and function numbers for all
1914 * devices on the path from root to the specific device. */
1915 char domain[] = "DDDD:00";
1916 char slot[] = ":SS.F";
1917 int domain_len = sizeof domain - 1 /* For '\0' */;
1918 int slot_len = sizeof slot - 1 /* For '\0' */;
1919 int path_len;
1920 char *path, *p;
1921 int s;
1923 /* Calculate # of slots on path between device and root. */;
1924 slot_depth = 0;
1925 for (t = d; t; t = t->bus->parent_dev) {
1926 ++slot_depth;
1929 path_len = domain_len + slot_len * slot_depth;
1931 /* Allocate memory, fill in the terminating null byte. */
1932 path = g_malloc(path_len + 1 /* For '\0' */);
1933 path[path_len] = '\0';
1935 /* First field is the domain. */
1936 s = snprintf(domain, sizeof domain, "%04x:00", pci_find_domain(d->bus));
1937 assert(s == domain_len);
1938 memcpy(path, domain, domain_len);
1940 /* Fill in slot numbers. We walk up from device to root, so need to print
1941 * them in the reverse order, last to first. */
1942 p = path + path_len;
1943 for (t = d; t; t = t->bus->parent_dev) {
1944 p -= slot_len;
1945 s = snprintf(slot, sizeof slot, ":%02x.%x",
1946 PCI_SLOT(t->devfn), PCI_FUNC(t->devfn));
1947 assert(s == slot_len);
1948 memcpy(p, slot, slot_len);
1951 return path;
1954 static int pci_qdev_find_recursive(PCIBus *bus,
1955 const char *id, PCIDevice **pdev)
1957 DeviceState *qdev = qdev_find_recursive(&bus->qbus, id);
1958 if (!qdev) {
1959 return -ENODEV;
1962 /* roughly check if given qdev is pci device */
1963 if (object_dynamic_cast(OBJECT(qdev), TYPE_PCI_DEVICE)) {
1964 *pdev = PCI_DEVICE(qdev);
1965 return 0;
1967 return -EINVAL;
1970 int pci_qdev_find_device(const char *id, PCIDevice **pdev)
1972 struct PCIHostBus *host;
1973 int rc = -ENODEV;
1975 QLIST_FOREACH(host, &host_buses, next) {
1976 int tmp = pci_qdev_find_recursive(host->bus, id, pdev);
1977 if (!tmp) {
1978 rc = 0;
1979 break;
1981 if (tmp != -ENODEV) {
1982 rc = tmp;
1986 return rc;
1989 MemoryRegion *pci_address_space(PCIDevice *dev)
1991 return dev->bus->address_space_mem;
1994 MemoryRegion *pci_address_space_io(PCIDevice *dev)
1996 return dev->bus->address_space_io;
1999 static void pci_device_class_init(ObjectClass *klass, void *data)
2001 DeviceClass *k = DEVICE_CLASS(klass);
2002 k->init = pci_qdev_init;
2003 k->unplug = pci_unplug_device;
2004 k->exit = pci_unregister_device;
2005 k->bus_info = &pci_bus_info;
2008 static TypeInfo pci_device_type_info = {
2009 .name = TYPE_PCI_DEVICE,
2010 .parent = TYPE_DEVICE,
2011 .instance_size = sizeof(PCIDevice),
2012 .abstract = true,
2013 .class_size = sizeof(PCIDeviceClass),
2014 .class_init = pci_device_class_init,
2017 static void pci_register_types(void)
2019 type_register_static(&pci_device_type_info);
2022 type_init(pci_register_types)