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