]> git.proxmox.com Git - qemu.git/blame - hw/pci/pci.c
pci: Create pci_bus_is_express helper
[qemu.git] / hw / pci / pci.c
CommitLineData
69b91039
FB
1/*
2 * QEMU PCI bus manager
3 *
4 * Copyright (c) 2004 Fabrice Bellard
5fafdf24 5 *
69b91039
FB
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 */
c759b24f
MT
24#include "hw/hw.h"
25#include "hw/pci/pci.h"
26#include "hw/pci/pci_bridge.h"
06aac7bd 27#include "hw/pci/pci_bus.h"
83c9089e 28#include "monitor/monitor.h"
1422e32d 29#include "net/net.h"
9c17d615 30#include "sysemu/sysemu.h"
c759b24f 31#include "hw/loader.h"
1de7afc9 32#include "qemu/range.h"
79627472 33#include "qmp-commands.h"
c759b24f
MT
34#include "hw/pci/msi.h"
35#include "hw/pci/msix.h"
022c62cb 36#include "exec/address-spaces.h"
69b91039
FB
37
38//#define DEBUG_PCI
d8d2e079 39#ifdef DEBUG_PCI
2e49d64a 40# define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
d8d2e079
IY
41#else
42# define PCI_DPRINTF(format, ...) do { } while (0)
43#endif
69b91039 44
10c4c98a 45static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent);
4f43c1ff 46static char *pcibus_get_dev_path(DeviceState *dev);
5e0259e7 47static char *pcibus_get_fw_dev_path(DeviceState *dev);
9bb33586 48static int pcibus_reset(BusState *qbus);
10c4c98a 49
3cb75a7c
PB
50static Property pci_props[] = {
51 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1),
52 DEFINE_PROP_STRING("romfile", PCIDevice, romfile),
53 DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1),
54 DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present,
55 QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false),
56 DEFINE_PROP_BIT("command_serr_enable", PCIDevice, cap_present,
57 QEMU_PCI_CAP_SERR_BITNR, true),
58 DEFINE_PROP_END_OF_LIST()
59};
60
0d936928
AL
61static void pci_bus_class_init(ObjectClass *klass, void *data)
62{
63 BusClass *k = BUS_CLASS(klass);
64
65 k->print_dev = pcibus_dev_print;
66 k->get_dev_path = pcibus_get_dev_path;
67 k->get_fw_dev_path = pcibus_get_fw_dev_path;
68 k->reset = pcibus_reset;
69}
70
71static const TypeInfo pci_bus_info = {
72 .name = TYPE_PCI_BUS,
73 .parent = TYPE_BUS,
74 .instance_size = sizeof(PCIBus),
75 .class_init = pci_bus_class_init,
30468f78 76};
69b91039 77
3a861c46
AW
78static const TypeInfo pcie_bus_info = {
79 .name = TYPE_PCIE_BUS,
80 .parent = TYPE_PCI_BUS,
81};
82
d662210a 83static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num);
1941d19c 84static void pci_update_mappings(PCIDevice *d);
d537cf6c 85static void pci_set_irq(void *opaque, int irq_num, int level);
ab85ceb1 86static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom);
230741dc 87static void pci_del_option_rom(PCIDevice *pdev);
1941d19c 88
d350d97d
AL
89static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET;
90static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU;
e822a52a
IY
91
92struct PCIHostBus {
93 int domain;
94 struct PCIBus *bus;
95 QLIST_ENTRY(PCIHostBus) next;
96};
97static QLIST_HEAD(, PCIHostBus) host_buses;
30468f78 98
2d1e9f96
JQ
99static const VMStateDescription vmstate_pcibus = {
100 .name = "PCIBUS",
101 .version_id = 1,
102 .minimum_version_id = 1,
103 .minimum_version_id_old = 1,
104 .fields = (VMStateField []) {
105 VMSTATE_INT32_EQUAL(nirq, PCIBus),
c7bde572 106 VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t),
2d1e9f96 107 VMSTATE_END_OF_LIST()
52fc1d83 108 }
2d1e9f96 109};
b3b11697 110static int pci_bar(PCIDevice *d, int reg)
5330de09 111{
b3b11697
IY
112 uint8_t type;
113
114 if (reg != PCI_ROM_SLOT)
115 return PCI_BASE_ADDRESS_0 + reg * 4;
116
117 type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
118 return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS;
5330de09
MT
119}
120
d036bb21
MT
121static inline int pci_irq_state(PCIDevice *d, int irq_num)
122{
123 return (d->irq_state >> irq_num) & 0x1;
124}
125
126static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
127{
128 d->irq_state &= ~(0x1 << irq_num);
129 d->irq_state |= level << irq_num;
130}
131
132static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)
133{
134 PCIBus *bus;
135 for (;;) {
136 bus = pci_dev->bus;
137 irq_num = bus->map_irq(pci_dev, irq_num);
138 if (bus->set_irq)
139 break;
140 pci_dev = bus->parent_dev;
141 }
142 bus->irq_count[irq_num] += change;
143 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0);
144}
145
9ddf8437
IY
146int pci_bus_get_irq_level(PCIBus *bus, int irq_num)
147{
148 assert(irq_num >= 0);
149 assert(irq_num < bus->nirq);
150 return !!bus->irq_count[irq_num];
151}
152
f9bf77dd
MT
153/* Update interrupt status bit in config space on interrupt
154 * state change. */
155static void pci_update_irq_status(PCIDevice *dev)
156{
157 if (dev->irq_state) {
158 dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT;
159 } else {
160 dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
161 }
162}
163
4c92325b
IY
164void pci_device_deassert_intx(PCIDevice *dev)
165{
166 int i;
167 for (i = 0; i < PCI_NUM_PINS; ++i) {
168 qemu_set_irq(dev->irq[i], 0);
169 }
170}
171
0ead87c8
IY
172/*
173 * This function is called on #RST and FLR.
174 * FLR if PCI_EXP_DEVCTL_BCR_FLR is set
175 */
176void pci_device_reset(PCIDevice *dev)
5330de09 177{
c0b1905b 178 int r;
6fc4925b
AL
179
180 qdev_reset_all(&dev->qdev);
c0b1905b 181
d036bb21 182 dev->irq_state = 0;
f9bf77dd 183 pci_update_irq_status(dev);
4c92325b 184 pci_device_deassert_intx(dev);
ebabb67a 185 /* Clear all writable bits */
99443c21 186 pci_word_test_and_clear_mask(dev->config + PCI_COMMAND,
f9aebe2e
MT
187 pci_get_word(dev->wmask + PCI_COMMAND) |
188 pci_get_word(dev->w1cmask + PCI_COMMAND));
89d437df
IY
189 pci_word_test_and_clear_mask(dev->config + PCI_STATUS,
190 pci_get_word(dev->wmask + PCI_STATUS) |
191 pci_get_word(dev->w1cmask + PCI_STATUS));
c0b1905b
MT
192 dev->config[PCI_CACHE_LINE_SIZE] = 0x0;
193 dev->config[PCI_INTERRUPT_LINE] = 0x0;
194 for (r = 0; r < PCI_NUM_REGIONS; ++r) {
71ebd6dc
IY
195 PCIIORegion *region = &dev->io_regions[r];
196 if (!region->size) {
c0b1905b
MT
197 continue;
198 }
71ebd6dc
IY
199
200 if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) &&
201 region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
202 pci_set_quad(dev->config + pci_bar(dev, r), region->type);
203 } else {
204 pci_set_long(dev->config + pci_bar(dev, r), region->type);
205 }
c0b1905b
MT
206 }
207 pci_update_mappings(dev);
cbd2d434
JK
208
209 msi_reset(dev);
210 msix_reset(dev);
5330de09
MT
211}
212
9bb33586
IY
213/*
214 * Trigger pci bus reset under a given bus.
215 * To be called on RST# assert.
216 */
217void pci_bus_reset(PCIBus *bus)
6eaa6847 218{
6eaa6847
GN
219 int i;
220
221 for (i = 0; i < bus->nirq; i++) {
222 bus->irq_count[i] = 0;
223 }
5330de09
MT
224 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
225 if (bus->devices[i]) {
226 pci_device_reset(bus->devices[i]);
227 }
6eaa6847
GN
228 }
229}
230
9bb33586
IY
231static int pcibus_reset(BusState *qbus)
232{
233 pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus));
234
235 /* topology traverse is done by pci_bus_reset().
236 Tell qbus/qdev walker not to traverse the tree */
237 return 1;
238}
239
e822a52a
IY
240static void pci_host_bus_register(int domain, PCIBus *bus)
241{
242 struct PCIHostBus *host;
7267c094 243 host = g_malloc0(sizeof(*host));
e822a52a
IY
244 host->domain = domain;
245 host->bus = bus;
246 QLIST_INSERT_HEAD(&host_buses, host, next);
247}
248
c469e1dd 249PCIBus *pci_find_root_bus(int domain)
e822a52a
IY
250{
251 struct PCIHostBus *host;
252
253 QLIST_FOREACH(host, &host_buses, next) {
254 if (host->domain == domain) {
255 return host->bus;
256 }
257 }
258
259 return NULL;
260}
261
e075e788
IY
262int pci_find_domain(const PCIBus *bus)
263{
264 PCIDevice *d;
265 struct PCIHostBus *host;
266
267 /* obtain root bus */
268 while ((d = bus->parent_dev) != NULL) {
269 bus = d->bus;
270 }
271
272 QLIST_FOREACH(host, &host_buses, next) {
273 if (host->bus == bus) {
274 return host->domain;
275 }
276 }
277
278 abort(); /* should not be reached */
279 return -1;
280}
281
4fec6404 282static void pci_bus_init(PCIBus *bus, DeviceState *parent,
1e39101c 283 const char *name,
aee97b84
AK
284 MemoryRegion *address_space_mem,
285 MemoryRegion *address_space_io,
1e39101c 286 uint8_t devfn_min)
30468f78 287{
6fa84913 288 assert(PCI_FUNC(devfn_min) == 0);
502a5395 289 bus->devfn_min = devfn_min;
5968eca3
AK
290 bus->address_space_mem = address_space_mem;
291 bus->address_space_io = address_space_io;
e822a52a
IY
292
293 /* host bridge */
294 QLIST_INIT(&bus->child);
295 pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */
296
0be71e32 297 vmstate_register(NULL, -1, &vmstate_pcibus, bus);
21eea4b3
GH
298}
299
8c0bf9e2
AW
300bool pci_bus_is_express(PCIBus *bus)
301{
302 return object_dynamic_cast(OBJECT(bus), TYPE_PCIE_BUS);
303}
304
4fec6404
PB
305void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
306 const char *name,
307 MemoryRegion *address_space_mem,
308 MemoryRegion *address_space_io,
60a0e443 309 uint8_t devfn_min, const char *typename)
4fec6404 310{
60a0e443 311 qbus_create_inplace(bus, typename, parent, name);
4fec6404
PB
312 pci_bus_init(bus, parent, name, address_space_mem,
313 address_space_io, devfn_min);
314}
315
1e39101c 316PCIBus *pci_bus_new(DeviceState *parent, const char *name,
aee97b84
AK
317 MemoryRegion *address_space_mem,
318 MemoryRegion *address_space_io,
60a0e443 319 uint8_t devfn_min, const char *typename)
21eea4b3
GH
320{
321 PCIBus *bus;
322
60a0e443 323 bus = PCI_BUS(qbus_create(typename, parent, name));
4fec6404
PB
324 pci_bus_init(bus, parent, name, address_space_mem,
325 address_space_io, devfn_min);
21eea4b3
GH
326 return bus;
327}
328
329void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
330 void *irq_opaque, int nirq)
331{
332 bus->set_irq = set_irq;
333 bus->map_irq = map_irq;
334 bus->irq_opaque = irq_opaque;
335 bus->nirq = nirq;
7267c094 336 bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0]));
21eea4b3
GH
337}
338
87c30546 339void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *qdev)
ee995ffb
GH
340{
341 bus->qbus.allow_hotplug = 1;
342 bus->hotplug = hotplug;
87c30546 343 bus->hotplug_qdev = qdev;
ee995ffb
GH
344}
345
21eea4b3
GH
346PCIBus *pci_register_bus(DeviceState *parent, const char *name,
347 pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
1e39101c 348 void *irq_opaque,
aee97b84
AK
349 MemoryRegion *address_space_mem,
350 MemoryRegion *address_space_io,
60a0e443 351 uint8_t devfn_min, int nirq, const char *typename)
21eea4b3
GH
352{
353 PCIBus *bus;
354
aee97b84 355 bus = pci_bus_new(parent, name, address_space_mem,
60a0e443 356 address_space_io, devfn_min, typename);
21eea4b3 357 pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq);
30468f78
FB
358 return bus;
359}
69b91039 360
502a5395
PB
361int pci_bus_num(PCIBus *s)
362{
e94ff650
IY
363 if (!s->parent_dev)
364 return 0; /* pci host bridge */
365 return s->parent_dev->config[PCI_SECONDARY_BUS];
502a5395
PB
366}
367
73534f2f 368static int get_pci_config_device(QEMUFile *f, void *pv, size_t size)
30ca2aab 369{
73534f2f 370 PCIDevice *s = container_of(pv, PCIDevice, config);
a9f49946 371 uint8_t *config;
52fc1d83
AZ
372 int i;
373
a9f49946 374 assert(size == pci_config_size(s));
7267c094 375 config = g_malloc(size);
a9f49946
IY
376
377 qemu_get_buffer(f, config, size);
378 for (i = 0; i < size; ++i) {
f9aebe2e
MT
379 if ((config[i] ^ s->config[i]) &
380 s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) {
7267c094 381 g_free(config);
bd4b65ee 382 return -EINVAL;
a9f49946
IY
383 }
384 }
385 memcpy(s->config, config, size);
bd4b65ee 386
1941d19c 387 pci_update_mappings(s);
52fc1d83 388
4ea375bf
GH
389 memory_region_set_enabled(&s->bus_master_enable_region,
390 pci_get_word(s->config + PCI_COMMAND)
391 & PCI_COMMAND_MASTER);
392
7267c094 393 g_free(config);
30ca2aab
FB
394 return 0;
395}
396
73534f2f 397/* just put buffer */
84e2e3eb 398static void put_pci_config_device(QEMUFile *f, void *pv, size_t size)
73534f2f 399{
dbe73d7f 400 const uint8_t **v = pv;
a9f49946 401 assert(size == pci_config_size(container_of(pv, PCIDevice, config)));
dbe73d7f 402 qemu_put_buffer(f, *v, size);
73534f2f
JQ
403}
404
405static VMStateInfo vmstate_info_pci_config = {
406 .name = "pci config",
407 .get = get_pci_config_device,
408 .put = put_pci_config_device,
409};
410
d036bb21
MT
411static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size)
412{
c3f8f611 413 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
d036bb21
MT
414 uint32_t irq_state[PCI_NUM_PINS];
415 int i;
416 for (i = 0; i < PCI_NUM_PINS; ++i) {
417 irq_state[i] = qemu_get_be32(f);
418 if (irq_state[i] != 0x1 && irq_state[i] != 0) {
419 fprintf(stderr, "irq state %d: must be 0 or 1.\n",
420 irq_state[i]);
421 return -EINVAL;
422 }
423 }
424
425 for (i = 0; i < PCI_NUM_PINS; ++i) {
426 pci_set_irq_state(s, i, irq_state[i]);
427 }
428
429 return 0;
430}
431
432static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size)
433{
434 int i;
c3f8f611 435 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
d036bb21
MT
436
437 for (i = 0; i < PCI_NUM_PINS; ++i) {
438 qemu_put_be32(f, pci_irq_state(s, i));
439 }
440}
441
442static VMStateInfo vmstate_info_pci_irq_state = {
443 .name = "pci irq state",
444 .get = get_pci_irq_state,
445 .put = put_pci_irq_state,
446};
447
73534f2f
JQ
448const VMStateDescription vmstate_pci_device = {
449 .name = "PCIDevice",
450 .version_id = 2,
451 .minimum_version_id = 1,
452 .minimum_version_id_old = 1,
453 .fields = (VMStateField []) {
454 VMSTATE_INT32_LE(version_id, PCIDevice),
a9f49946
IY
455 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
456 vmstate_info_pci_config,
457 PCI_CONFIG_SPACE_SIZE),
d036bb21
MT
458 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
459 vmstate_info_pci_irq_state,
460 PCI_NUM_PINS * sizeof(int32_t)),
a9f49946
IY
461 VMSTATE_END_OF_LIST()
462 }
463};
464
465const VMStateDescription vmstate_pcie_device = {
1de53459 466 .name = "PCIEDevice",
a9f49946
IY
467 .version_id = 2,
468 .minimum_version_id = 1,
469 .minimum_version_id_old = 1,
470 .fields = (VMStateField []) {
471 VMSTATE_INT32_LE(version_id, PCIDevice),
472 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
473 vmstate_info_pci_config,
474 PCIE_CONFIG_SPACE_SIZE),
d036bb21
MT
475 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
476 vmstate_info_pci_irq_state,
477 PCI_NUM_PINS * sizeof(int32_t)),
73534f2f
JQ
478 VMSTATE_END_OF_LIST()
479 }
480};
481
a9f49946
IY
482static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s)
483{
484 return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device;
485}
486
73534f2f
JQ
487void pci_device_save(PCIDevice *s, QEMUFile *f)
488{
f9bf77dd
MT
489 /* Clear interrupt status bit: it is implicit
490 * in irq_state which we are saving.
491 * This makes us compatible with old devices
492 * which never set or clear this bit. */
493 s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
a9f49946 494 vmstate_save_state(f, pci_get_vmstate(s), s);
f9bf77dd
MT
495 /* Restore the interrupt status bit. */
496 pci_update_irq_status(s);
73534f2f
JQ
497}
498
499int pci_device_load(PCIDevice *s, QEMUFile *f)
500{
f9bf77dd
MT
501 int ret;
502 ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id);
503 /* Restore the interrupt status bit. */
504 pci_update_irq_status(s);
505 return ret;
73534f2f
JQ
506}
507
5e434f4e 508static void pci_set_default_subsystem_id(PCIDevice *pci_dev)
d350d97d 509{
5e434f4e
IY
510 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
511 pci_default_sub_vendor_id);
512 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
513 pci_default_sub_device_id);
d350d97d
AL
514}
515
880345c4 516/*
43c945f1
IY
517 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL
518 * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error
880345c4 519 */
94a09e2c 520static int pci_parse_devaddr(const char *addr, int *domp, int *busp,
43c945f1 521 unsigned int *slotp, unsigned int *funcp)
880345c4
AL
522{
523 const char *p;
524 char *e;
525 unsigned long val;
526 unsigned long dom = 0, bus = 0;
43c945f1
IY
527 unsigned int slot = 0;
528 unsigned int func = 0;
880345c4
AL
529
530 p = addr;
531 val = strtoul(p, &e, 16);
532 if (e == p)
533 return -1;
534 if (*e == ':') {
535 bus = val;
536 p = e + 1;
537 val = strtoul(p, &e, 16);
538 if (e == p)
539 return -1;
540 if (*e == ':') {
541 dom = bus;
542 bus = val;
543 p = e + 1;
544 val = strtoul(p, &e, 16);
545 if (e == p)
546 return -1;
547 }
548 }
549
880345c4
AL
550 slot = val;
551
43c945f1
IY
552 if (funcp != NULL) {
553 if (*e != '.')
554 return -1;
555
556 p = e + 1;
557 val = strtoul(p, &e, 16);
558 if (e == p)
559 return -1;
560
561 func = val;
562 }
563
564 /* if funcp == NULL func is 0 */
565 if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7)
566 return -1;
567
880345c4
AL
568 if (*e)
569 return -1;
570
880345c4
AL
571 *domp = dom;
572 *busp = bus;
573 *slotp = slot;
43c945f1
IY
574 if (funcp != NULL)
575 *funcp = func;
880345c4
AL
576 return 0;
577}
578
e9283f8b
JK
579int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
580 unsigned *slotp)
880345c4 581{
e9283f8b
JK
582 /* strip legacy tag */
583 if (!strncmp(addr, "pci_addr=", 9)) {
584 addr += 9;
585 }
43c945f1 586 if (pci_parse_devaddr(addr, domp, busp, slotp, NULL)) {
e9283f8b 587 monitor_printf(mon, "Invalid pci address\n");
880345c4 588 return -1;
e9283f8b
JK
589 }
590 return 0;
880345c4
AL
591}
592
49bd1458 593PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr)
5607c388
MA
594{
595 int dom, bus;
596 unsigned slot;
597
598 if (!devaddr) {
599 *devfnp = -1;
d662210a 600 return pci_find_bus_nr(pci_find_root_bus(0), 0);
5607c388
MA
601 }
602
43c945f1 603 if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) {
5607c388
MA
604 return NULL;
605 }
606
6ff534b6 607 *devfnp = PCI_DEVFN(slot, 0);
d662210a 608 return pci_find_bus_nr(pci_find_root_bus(dom), bus);
5607c388
MA
609}
610
bd4b65ee
MT
611static void pci_init_cmask(PCIDevice *dev)
612{
613 pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff);
614 pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff);
615 dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST;
616 dev->cmask[PCI_REVISION_ID] = 0xff;
617 dev->cmask[PCI_CLASS_PROG] = 0xff;
618 pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff);
619 dev->cmask[PCI_HEADER_TYPE] = 0xff;
620 dev->cmask[PCI_CAPABILITY_LIST] = 0xff;
621}
622
b7ee1603
MT
623static void pci_init_wmask(PCIDevice *dev)
624{
a9f49946
IY
625 int config_size = pci_config_size(dev);
626
b7ee1603
MT
627 dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff;
628 dev->wmask[PCI_INTERRUPT_LINE] = 0xff;
67a51b48 629 pci_set_word(dev->wmask + PCI_COMMAND,
a7b15a5c
MT
630 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
631 PCI_COMMAND_INTX_DISABLE);
b1aeb926
IY
632 if (dev->cap_present & QEMU_PCI_CAP_SERR) {
633 pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR);
634 }
3e21ffc9
IY
635
636 memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff,
637 config_size - PCI_CONFIG_HEADER_SIZE);
b7ee1603
MT
638}
639
89d437df
IY
640static void pci_init_w1cmask(PCIDevice *dev)
641{
642 /*
f6bdfcc9 643 * Note: It's okay to set w1cmask even for readonly bits as
89d437df
IY
644 * long as their value is hardwired to 0.
645 */
646 pci_set_word(dev->w1cmask + PCI_STATUS,
647 PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT |
648 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT |
649 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY);
650}
651
d5f27e88 652static void pci_init_mask_bridge(PCIDevice *d)
fb231628
IY
653{
654 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and
655 PCI_SEC_LETENCY_TIMER */
656 memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4);
657
658 /* base and limit */
659 d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff;
660 d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff;
661 pci_set_word(d->wmask + PCI_MEMORY_BASE,
662 PCI_MEMORY_RANGE_MASK & 0xffff);
663 pci_set_word(d->wmask + PCI_MEMORY_LIMIT,
664 PCI_MEMORY_RANGE_MASK & 0xffff);
665 pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE,
666 PCI_PREF_RANGE_MASK & 0xffff);
667 pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT,
668 PCI_PREF_RANGE_MASK & 0xffff);
669
670 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */
671 memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8);
672
d5f27e88 673 /* Supported memory and i/o types */
68917102
MT
674 d->config[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_16;
675 d->config[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_16;
d5f27e88
MT
676 pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_BASE,
677 PCI_PREF_RANGE_TYPE_64);
678 pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_LIMIT,
679 PCI_PREF_RANGE_TYPE_64);
680
45eb768c
MT
681 /*
682 * TODO: Bridges default to 10-bit VGA decoding but we currently only
683 * implement 16-bit decoding (no alias support).
684 */
f6bdfcc9
MT
685 pci_set_word(d->wmask + PCI_BRIDGE_CONTROL,
686 PCI_BRIDGE_CTL_PARITY |
687 PCI_BRIDGE_CTL_SERR |
688 PCI_BRIDGE_CTL_ISA |
689 PCI_BRIDGE_CTL_VGA |
690 PCI_BRIDGE_CTL_VGA_16BIT |
691 PCI_BRIDGE_CTL_MASTER_ABORT |
692 PCI_BRIDGE_CTL_BUS_RESET |
693 PCI_BRIDGE_CTL_FAST_BACK |
694 PCI_BRIDGE_CTL_DISCARD |
695 PCI_BRIDGE_CTL_SEC_DISCARD |
f6bdfcc9
MT
696 PCI_BRIDGE_CTL_DISCARD_SERR);
697 /* Below does not do anything as we never set this bit, put here for
698 * completeness. */
699 pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL,
700 PCI_BRIDGE_CTL_DISCARD_STATUS);
d5f27e88 701 d->cmask[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_MASK;
15ab7a75 702 d->cmask[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_MASK;
d5f27e88
MT
703 pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_BASE,
704 PCI_PREF_RANGE_TYPE_MASK);
15ab7a75
MT
705 pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_LIMIT,
706 PCI_PREF_RANGE_TYPE_MASK);
fb231628
IY
707}
708
6eab3de1
IY
709static int pci_init_multifunction(PCIBus *bus, PCIDevice *dev)
710{
711 uint8_t slot = PCI_SLOT(dev->devfn);
712 uint8_t func;
713
714 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
715 dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
716 }
717
718 /*
b0cd712c 719 * multifunction bit is interpreted in two ways as follows.
6eab3de1
IY
720 * - all functions must set the bit to 1.
721 * Example: Intel X53
722 * - function 0 must set the bit, but the rest function (> 0)
723 * is allowed to leave the bit to 0.
724 * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10,
725 *
726 * So OS (at least Linux) checks the bit of only function 0,
727 * and doesn't see the bit of function > 0.
728 *
729 * The below check allows both interpretation.
730 */
731 if (PCI_FUNC(dev->devfn)) {
732 PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)];
733 if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) {
734 /* function 0 should set multifunction bit */
735 error_report("PCI: single function device can't be populated "
736 "in function %x.%x", slot, PCI_FUNC(dev->devfn));
737 return -1;
738 }
739 return 0;
740 }
741
742 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
743 return 0;
744 }
745 /* function 0 indicates single function, so function > 0 must be NULL */
746 for (func = 1; func < PCI_FUNC_MAX; ++func) {
747 if (bus->devices[PCI_DEVFN(slot, func)]) {
748 error_report("PCI: %x.0 indicates single function, "
749 "but %x.%x is already populated.",
750 slot, slot, func);
751 return -1;
752 }
753 }
754 return 0;
755}
756
a9f49946
IY
757static void pci_config_alloc(PCIDevice *pci_dev)
758{
759 int config_size = pci_config_size(pci_dev);
760
7267c094
AL
761 pci_dev->config = g_malloc0(config_size);
762 pci_dev->cmask = g_malloc0(config_size);
763 pci_dev->wmask = g_malloc0(config_size);
764 pci_dev->w1cmask = g_malloc0(config_size);
765 pci_dev->used = g_malloc0(config_size);
a9f49946
IY
766}
767
768static void pci_config_free(PCIDevice *pci_dev)
769{
7267c094
AL
770 g_free(pci_dev->config);
771 g_free(pci_dev->cmask);
772 g_free(pci_dev->wmask);
773 g_free(pci_dev->w1cmask);
774 g_free(pci_dev->used);
a9f49946
IY
775}
776
69b91039 777/* -1 for devfn means auto assign */
6b1b92d3 778static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
40021f08 779 const char *name, int devfn)
69b91039 780{
40021f08
AL
781 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev);
782 PCIConfigReadFunc *config_read = pc->config_read;
783 PCIConfigWriteFunc *config_write = pc->config_write;
113f89df 784
69b91039 785 if (devfn < 0) {
b47b0706 786 for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices);
6fa84913 787 devfn += PCI_FUNC_MAX) {
30468f78 788 if (!bus->devices[devfn])
69b91039
FB
789 goto found;
790 }
3709c1b7 791 error_report("PCI: no slot/function available for %s, all in use", name);
09e3acc6 792 return NULL;
69b91039 793 found: ;
07b7d053 794 } else if (bus->devices[devfn]) {
3709c1b7
DB
795 error_report("PCI: slot %d function %d not available for %s, in use by %s",
796 PCI_SLOT(devfn), PCI_FUNC(devfn), name, bus->devices[devfn]->name);
09e3acc6 797 return NULL;
69b91039 798 }
30468f78 799 pci_dev->bus = bus;
5fa45de5
DG
800 if (bus->dma_context_fn) {
801 pci_dev->dma = bus->dma_context_fn(bus, bus->dma_context_opaque, devfn);
817dcc53
AK
802 } else {
803 /* FIXME: Make dma_context_fn use MemoryRegions instead, so this path is
804 * taken unconditionally */
805 /* FIXME: inherit memory region from bus creator */
1c380f94
AK
806 memory_region_init_alias(&pci_dev->bus_master_enable_region, "bus master",
807 get_system_memory(), 0,
808 memory_region_size(get_system_memory()));
809 memory_region_set_enabled(&pci_dev->bus_master_enable_region, false);
810 address_space_init(&pci_dev->bus_master_as, &pci_dev->bus_master_enable_region);
817dcc53
AK
811 pci_dev->dma = g_new(DMAContext, 1);
812 dma_context_init(pci_dev->dma, &pci_dev->bus_master_as, NULL, NULL, NULL);
5fa45de5 813 }
69b91039
FB
814 pci_dev->devfn = devfn;
815 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
d036bb21 816 pci_dev->irq_state = 0;
a9f49946 817 pci_config_alloc(pci_dev);
fb231628 818
40021f08
AL
819 pci_config_set_vendor_id(pci_dev->config, pc->vendor_id);
820 pci_config_set_device_id(pci_dev->config, pc->device_id);
821 pci_config_set_revision(pci_dev->config, pc->revision);
822 pci_config_set_class(pci_dev->config, pc->class_id);
113f89df 823
40021f08
AL
824 if (!pc->is_bridge) {
825 if (pc->subsystem_vendor_id || pc->subsystem_id) {
113f89df 826 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
40021f08 827 pc->subsystem_vendor_id);
113f89df 828 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
40021f08 829 pc->subsystem_id);
113f89df
IY
830 } else {
831 pci_set_default_subsystem_id(pci_dev);
832 }
833 } else {
834 /* subsystem_vendor_id/subsystem_id are only for header type 0 */
40021f08
AL
835 assert(!pc->subsystem_vendor_id);
836 assert(!pc->subsystem_id);
fb231628 837 }
bd4b65ee 838 pci_init_cmask(pci_dev);
b7ee1603 839 pci_init_wmask(pci_dev);
89d437df 840 pci_init_w1cmask(pci_dev);
40021f08 841 if (pc->is_bridge) {
d5f27e88 842 pci_init_mask_bridge(pci_dev);
fb231628 843 }
6eab3de1
IY
844 if (pci_init_multifunction(bus, pci_dev)) {
845 pci_config_free(pci_dev);
846 return NULL;
847 }
0ac32c83
FB
848
849 if (!config_read)
850 config_read = pci_default_read_config;
851 if (!config_write)
852 config_write = pci_default_write_config;
69b91039
FB
853 pci_dev->config_read = config_read;
854 pci_dev->config_write = config_write;
30468f78 855 bus->devices[devfn] = pci_dev;
e369cad7 856 pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS);
f16c4abf 857 pci_dev->version_id = 2; /* Current pci device vmstate version */
69b91039
FB
858 return pci_dev;
859}
860
925fe64a
AW
861static void do_pci_unregister_device(PCIDevice *pci_dev)
862{
863 qemu_free_irqs(pci_dev->irq);
864 pci_dev->bus->devices[pci_dev->devfn] = NULL;
865 pci_config_free(pci_dev);
817dcc53
AK
866
867 if (!pci_dev->bus->dma_context_fn) {
868 address_space_destroy(&pci_dev->bus_master_as);
1c380f94 869 memory_region_destroy(&pci_dev->bus_master_enable_region);
817dcc53
AK
870 g_free(pci_dev->dma);
871 pci_dev->dma = NULL;
872 }
925fe64a
AW
873}
874
5851e08c
AL
875static void pci_unregister_io_regions(PCIDevice *pci_dev)
876{
877 PCIIORegion *r;
878 int i;
879
880 for(i = 0; i < PCI_NUM_REGIONS; i++) {
881 r = &pci_dev->io_regions[i];
182f9c8a 882 if (!r->size || r->addr == PCI_BAR_UNMAPPED)
5851e08c 883 continue;
03952339 884 memory_region_del_subregion(r->address_space, r->memory);
5851e08c 885 }
e01fd687
AW
886
887 pci_unregister_vga(pci_dev);
5851e08c
AL
888}
889
a36a344d 890static int pci_unregister_device(DeviceState *dev)
5851e08c 891{
40021f08
AL
892 PCIDevice *pci_dev = PCI_DEVICE(dev);
893 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev);
5851e08c
AL
894
895 pci_unregister_io_regions(pci_dev);
230741dc 896 pci_del_option_rom(pci_dev);
7cf1b0fd 897
f90c2bcd
AW
898 if (pc->exit) {
899 pc->exit(pci_dev);
900 }
5851e08c 901
925fe64a 902 do_pci_unregister_device(pci_dev);
5851e08c
AL
903 return 0;
904}
905
e824b2cc
AK
906void pci_register_bar(PCIDevice *pci_dev, int region_num,
907 uint8_t type, MemoryRegion *memory)
69b91039
FB
908{
909 PCIIORegion *r;
d7ce493a 910 uint32_t addr;
5a9ff381 911 uint64_t wmask;
cfc0be25 912 pcibus_t size = memory_region_size(memory);
a4c20c6a 913
2bbb9c2f
IY
914 assert(region_num >= 0);
915 assert(region_num < PCI_NUM_REGIONS);
a4c20c6a
AL
916 if (size & (size-1)) {
917 fprintf(stderr, "ERROR: PCI region size must be pow2 "
89e8b13c 918 "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size);
a4c20c6a
AL
919 exit(1);
920 }
921
69b91039 922 r = &pci_dev->io_regions[region_num];
182f9c8a 923 r->addr = PCI_BAR_UNMAPPED;
69b91039
FB
924 r->size = size;
925 r->type = type;
79ff8cb0 926 r->memory = NULL;
b7ee1603
MT
927
928 wmask = ~(size - 1);
b3b11697 929 addr = pci_bar(pci_dev, region_num);
d7ce493a 930 if (region_num == PCI_ROM_SLOT) {
ebabb67a 931 /* ROM enable bit is writable */
5330de09 932 wmask |= PCI_ROM_ADDRESS_ENABLE;
d7ce493a 933 }
b0ff8eb2 934 pci_set_long(pci_dev->config + addr, type);
14421258
IY
935 if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) &&
936 r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
937 pci_set_quad(pci_dev->wmask + addr, wmask);
938 pci_set_quad(pci_dev->cmask + addr, ~0ULL);
939 } else {
940 pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff);
941 pci_set_long(pci_dev->cmask + addr, 0xffffffff);
942 }
79ff8cb0 943 pci_dev->io_regions[region_num].memory = memory;
5968eca3 944 pci_dev->io_regions[region_num].address_space
cfc0be25 945 = type & PCI_BASE_ADDRESS_SPACE_IO
5968eca3
AK
946 ? pci_dev->bus->address_space_io
947 : pci_dev->bus->address_space_mem;
79ff8cb0
AK
948}
949
e01fd687
AW
950static void pci_update_vga(PCIDevice *pci_dev)
951{
952 uint16_t cmd;
953
954 if (!pci_dev->has_vga) {
955 return;
956 }
957
958 cmd = pci_get_word(pci_dev->config + PCI_COMMAND);
959
960 memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_MEM],
961 cmd & PCI_COMMAND_MEMORY);
962 memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO],
963 cmd & PCI_COMMAND_IO);
964 memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI],
965 cmd & PCI_COMMAND_IO);
966}
967
968void pci_register_vga(PCIDevice *pci_dev, MemoryRegion *mem,
969 MemoryRegion *io_lo, MemoryRegion *io_hi)
970{
971 assert(!pci_dev->has_vga);
972
973 assert(memory_region_size(mem) == QEMU_PCI_VGA_MEM_SIZE);
974 pci_dev->vga_regions[QEMU_PCI_VGA_MEM] = mem;
975 memory_region_add_subregion_overlap(pci_dev->bus->address_space_mem,
976 QEMU_PCI_VGA_MEM_BASE, mem, 1);
977
978 assert(memory_region_size(io_lo) == QEMU_PCI_VGA_IO_LO_SIZE);
979 pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO] = io_lo;
980 memory_region_add_subregion_overlap(pci_dev->bus->address_space_io,
981 QEMU_PCI_VGA_IO_LO_BASE, io_lo, 1);
982
983 assert(memory_region_size(io_hi) == QEMU_PCI_VGA_IO_HI_SIZE);
984 pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI] = io_hi;
985 memory_region_add_subregion_overlap(pci_dev->bus->address_space_io,
986 QEMU_PCI_VGA_IO_HI_BASE, io_hi, 1);
987 pci_dev->has_vga = true;
988
989 pci_update_vga(pci_dev);
990}
991
992void pci_unregister_vga(PCIDevice *pci_dev)
993{
994 if (!pci_dev->has_vga) {
995 return;
996 }
997
998 memory_region_del_subregion(pci_dev->bus->address_space_mem,
999 pci_dev->vga_regions[QEMU_PCI_VGA_MEM]);
1000 memory_region_del_subregion(pci_dev->bus->address_space_io,
1001 pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO]);
1002 memory_region_del_subregion(pci_dev->bus->address_space_io,
1003 pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI]);
1004 pci_dev->has_vga = false;
1005}
1006
16a96f28
AK
1007pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num)
1008{
1009 return pci_dev->io_regions[region_num].addr;
1010}
1011
876a350d
MT
1012static pcibus_t pci_bar_address(PCIDevice *d,
1013 int reg, uint8_t type, pcibus_t size)
1014{
1015 pcibus_t new_addr, last_addr;
1016 int bar = pci_bar(d, reg);
1017 uint16_t cmd = pci_get_word(d->config + PCI_COMMAND);
1018
1019 if (type & PCI_BASE_ADDRESS_SPACE_IO) {
1020 if (!(cmd & PCI_COMMAND_IO)) {
1021 return PCI_BAR_UNMAPPED;
1022 }
1023 new_addr = pci_get_long(d->config + bar) & ~(size - 1);
1024 last_addr = new_addr + size - 1;
1025 /* NOTE: we have only 64K ioports on PC */
1026 if (last_addr <= new_addr || new_addr == 0 || last_addr > UINT16_MAX) {
1027 return PCI_BAR_UNMAPPED;
1028 }
1029 return new_addr;
1030 }
1031
1032 if (!(cmd & PCI_COMMAND_MEMORY)) {
1033 return PCI_BAR_UNMAPPED;
1034 }
1035 if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
1036 new_addr = pci_get_quad(d->config + bar);
1037 } else {
1038 new_addr = pci_get_long(d->config + bar);
1039 }
1040 /* the ROM slot has a specific enable bit */
1041 if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) {
1042 return PCI_BAR_UNMAPPED;
1043 }
1044 new_addr &= ~(size - 1);
1045 last_addr = new_addr + size - 1;
1046 /* NOTE: we do not support wrapping */
1047 /* XXX: as we cannot support really dynamic
1048 mappings, we handle specific values as invalid
1049 mappings. */
1050 if (last_addr <= new_addr || new_addr == 0 ||
1051 last_addr == PCI_BAR_UNMAPPED) {
1052 return PCI_BAR_UNMAPPED;
1053 }
1054
1055 /* Now pcibus_t is 64bit.
1056 * Check if 32 bit BAR wraps around explicitly.
1057 * Without this, PC ide doesn't work well.
1058 * TODO: remove this work around.
1059 */
1060 if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) {
1061 return PCI_BAR_UNMAPPED;
1062 }
1063
1064 /*
1065 * OS is allowed to set BAR beyond its addressable
1066 * bits. For example, 32 bit OS can set 64bit bar
1067 * to >4G. Check it. TODO: we might need to support
1068 * it in the future for e.g. PAE.
1069 */
a8170e5e 1070 if (last_addr >= HWADDR_MAX) {
876a350d
MT
1071 return PCI_BAR_UNMAPPED;
1072 }
1073
1074 return new_addr;
1075}
1076
0ac32c83
FB
1077static void pci_update_mappings(PCIDevice *d)
1078{
1079 PCIIORegion *r;
876a350d 1080 int i;
7df32ca0 1081 pcibus_t new_addr;
3b46e624 1082
8a8696a3 1083 for(i = 0; i < PCI_NUM_REGIONS; i++) {
0ac32c83 1084 r = &d->io_regions[i];
a9688570
IY
1085
1086 /* this region isn't registered */
ec503442 1087 if (!r->size)
a9688570
IY
1088 continue;
1089
876a350d 1090 new_addr = pci_bar_address(d, i, r->type, r->size);
a9688570
IY
1091
1092 /* This bar isn't changed */
7df32ca0 1093 if (new_addr == r->addr)
a9688570
IY
1094 continue;
1095
1096 /* now do the real mapping */
1097 if (r->addr != PCI_BAR_UNMAPPED) {
03952339 1098 memory_region_del_subregion(r->address_space, r->memory);
0ac32c83 1099 }
a9688570
IY
1100 r->addr = new_addr;
1101 if (r->addr != PCI_BAR_UNMAPPED) {
8b881e77
AK
1102 memory_region_add_subregion_overlap(r->address_space,
1103 r->addr, r->memory, 1);
a9688570 1104 }
0ac32c83 1105 }
e01fd687
AW
1106
1107 pci_update_vga(d);
0ac32c83
FB
1108}
1109
a7b15a5c
MT
1110static inline int pci_irq_disabled(PCIDevice *d)
1111{
1112 return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE;
1113}
1114
1115/* Called after interrupt disabled field update in config space,
1116 * assert/deassert interrupts if necessary.
1117 * Gets original interrupt disable bit value (before update). */
1118static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled)
1119{
1120 int i, disabled = pci_irq_disabled(d);
1121 if (disabled == was_irq_disabled)
1122 return;
1123 for (i = 0; i < PCI_NUM_PINS; ++i) {
1124 int state = pci_irq_state(d, i);
1125 pci_change_irq_level(d, i, disabled ? -state : state);
1126 }
1127}
1128
5fafdf24 1129uint32_t pci_default_read_config(PCIDevice *d,
0ac32c83 1130 uint32_t address, int len)
69b91039 1131{
5029fe12 1132 uint32_t val = 0;
42e4126b 1133
5029fe12
IY
1134 memcpy(&val, d->config + address, len);
1135 return le32_to_cpu(val);
0ac32c83
FB
1136}
1137
b7ee1603 1138void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l)
0ac32c83 1139{
a7b15a5c 1140 int i, was_irq_disabled = pci_irq_disabled(d);
0ac32c83 1141
42e4126b 1142 for (i = 0; i < l; val >>= 8, ++i) {
91011d4f 1143 uint8_t wmask = d->wmask[addr + i];
92ba5f51
IY
1144 uint8_t w1cmask = d->w1cmask[addr + i];
1145 assert(!(wmask & w1cmask));
91011d4f 1146 d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask);
92ba5f51 1147 d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */
0ac32c83 1148 }
260c0cd3 1149 if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) ||
edb00035
IY
1150 ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) ||
1151 ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) ||
260c0cd3 1152 range_covers_byte(addr, l, PCI_COMMAND))
0ac32c83 1153 pci_update_mappings(d);
a7b15a5c 1154
1c380f94 1155 if (range_covers_byte(addr, l, PCI_COMMAND)) {
a7b15a5c 1156 pci_update_irq_disabled(d, was_irq_disabled);
1c380f94
AK
1157 memory_region_set_enabled(&d->bus_master_enable_region,
1158 pci_get_word(d->config + PCI_COMMAND)
1159 & PCI_COMMAND_MASTER);
1160 }
95d65800
JK
1161
1162 msi_write_config(d, addr, val, l);
1163 msix_write_config(d, addr, val, l);
69b91039
FB
1164}
1165
502a5395
PB
1166/***********************************************************/
1167/* generic PCI irq support */
30468f78 1168
502a5395 1169/* 0 <= irq_num <= 3. level must be 0 or 1 */
d537cf6c 1170static void pci_set_irq(void *opaque, int irq_num, int level)
69b91039 1171{
a60380a5 1172 PCIDevice *pci_dev = opaque;
80b3ada7 1173 int change;
3b46e624 1174
d036bb21 1175 change = level - pci_irq_state(pci_dev, irq_num);
80b3ada7
PB
1176 if (!change)
1177 return;
d2b59317 1178
d036bb21 1179 pci_set_irq_state(pci_dev, irq_num, level);
f9bf77dd 1180 pci_update_irq_status(pci_dev);
a7b15a5c
MT
1181 if (pci_irq_disabled(pci_dev))
1182 return;
d036bb21 1183 pci_change_irq_level(pci_dev, irq_num, change);
69b91039
FB
1184}
1185
3afa9bb4
MT
1186/* Special hooks used by device assignment */
1187void pci_bus_set_route_irq_fn(PCIBus *bus, pci_route_irq_fn route_intx_to_irq)
1188{
1189 assert(!bus->parent_dev);
1190 bus->route_intx_to_irq = route_intx_to_irq;
1191}
1192
1193PCIINTxRoute pci_device_route_intx_to_irq(PCIDevice *dev, int pin)
1194{
1195 PCIBus *bus;
1196
1197 do {
1198 bus = dev->bus;
1199 pin = bus->map_irq(dev, pin);
1200 dev = bus->parent_dev;
1201 } while (dev);
05c0621e
AW
1202
1203 if (!bus->route_intx_to_irq) {
312fd5f2 1204 error_report("PCI: Bug - unimplemented PCI INTx routing (%s)",
05c0621e
AW
1205 object_get_typename(OBJECT(bus->qbus.parent)));
1206 return (PCIINTxRoute) { PCI_INTX_DISABLED, -1 };
1207 }
1208
3afa9bb4 1209 return bus->route_intx_to_irq(bus->irq_opaque, pin);
0ae16251
JK
1210}
1211
d6e65d54
AW
1212bool pci_intx_route_changed(PCIINTxRoute *old, PCIINTxRoute *new)
1213{
1214 return old->mode != new->mode || old->irq != new->irq;
1215}
1216
0ae16251
JK
1217void pci_bus_fire_intx_routing_notifier(PCIBus *bus)
1218{
1219 PCIDevice *dev;
1220 PCIBus *sec;
1221 int i;
1222
1223 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
1224 dev = bus->devices[i];
1225 if (dev && dev->intx_routing_notifier) {
1226 dev->intx_routing_notifier(dev);
1227 }
e5368f0d
AW
1228 }
1229
1230 QLIST_FOREACH(sec, &bus->child, sibling) {
1231 pci_bus_fire_intx_routing_notifier(sec);
0ae16251
JK
1232 }
1233}
1234
1235void pci_device_set_intx_routing_notifier(PCIDevice *dev,
1236 PCIINTxRoutingNotifier notifier)
1237{
1238 dev->intx_routing_notifier = notifier;
69b91039
FB
1239}
1240
91e56159
IY
1241/*
1242 * PCI-to-PCI bridge specification
1243 * 9.1: Interrupt routing. Table 9-1
1244 *
1245 * the PCI Express Base Specification, Revision 2.1
1246 * 2.2.8.1: INTx interrutp signaling - Rules
1247 * the Implementation Note
1248 * Table 2-20
1249 */
1250/*
1251 * 0 <= pin <= 3 0 = INTA, 1 = INTB, 2 = INTC, 3 = INTD
1252 * 0-origin unlike PCI interrupt pin register.
1253 */
1254int pci_swizzle_map_irq_fn(PCIDevice *pci_dev, int pin)
1255{
1256 return (pin + PCI_SLOT(pci_dev->devfn)) % PCI_NUM_PINS;
1257}
1258
502a5395
PB
1259/***********************************************************/
1260/* monitor info on PCI */
0ac32c83 1261
6650ee6d
PB
1262typedef struct {
1263 uint16_t class;
1264 const char *desc;
5e0259e7
GN
1265 const char *fw_name;
1266 uint16_t fw_ign_bits;
6650ee6d
PB
1267} pci_class_desc;
1268
09bc878a 1269static const pci_class_desc pci_class_descriptions[] =
6650ee6d 1270{
5e0259e7
GN
1271 { 0x0001, "VGA controller", "display"},
1272 { 0x0100, "SCSI controller", "scsi"},
1273 { 0x0101, "IDE controller", "ide"},
1274 { 0x0102, "Floppy controller", "fdc"},
1275 { 0x0103, "IPI controller", "ipi"},
1276 { 0x0104, "RAID controller", "raid"},
dcb5b19a
TS
1277 { 0x0106, "SATA controller"},
1278 { 0x0107, "SAS controller"},
1279 { 0x0180, "Storage controller"},
5e0259e7
GN
1280 { 0x0200, "Ethernet controller", "ethernet"},
1281 { 0x0201, "Token Ring controller", "token-ring"},
1282 { 0x0202, "FDDI controller", "fddi"},
1283 { 0x0203, "ATM controller", "atm"},
dcb5b19a 1284 { 0x0280, "Network controller"},
5e0259e7 1285 { 0x0300, "VGA controller", "display", 0x00ff},
dcb5b19a
TS
1286 { 0x0301, "XGA controller"},
1287 { 0x0302, "3D controller"},
1288 { 0x0380, "Display controller"},
5e0259e7
GN
1289 { 0x0400, "Video controller", "video"},
1290 { 0x0401, "Audio controller", "sound"},
dcb5b19a 1291 { 0x0402, "Phone"},
602ef4d9 1292 { 0x0403, "Audio controller", "sound"},
dcb5b19a 1293 { 0x0480, "Multimedia controller"},
5e0259e7
GN
1294 { 0x0500, "RAM controller", "memory"},
1295 { 0x0501, "Flash controller", "flash"},
dcb5b19a 1296 { 0x0580, "Memory controller"},
5e0259e7
GN
1297 { 0x0600, "Host bridge", "host"},
1298 { 0x0601, "ISA bridge", "isa"},
1299 { 0x0602, "EISA bridge", "eisa"},
1300 { 0x0603, "MC bridge", "mca"},
1301 { 0x0604, "PCI bridge", "pci"},
1302 { 0x0605, "PCMCIA bridge", "pcmcia"},
1303 { 0x0606, "NUBUS bridge", "nubus"},
1304 { 0x0607, "CARDBUS bridge", "cardbus"},
dcb5b19a
TS
1305 { 0x0608, "RACEWAY bridge"},
1306 { 0x0680, "Bridge"},
5e0259e7
GN
1307 { 0x0700, "Serial port", "serial"},
1308 { 0x0701, "Parallel port", "parallel"},
1309 { 0x0800, "Interrupt controller", "interrupt-controller"},
1310 { 0x0801, "DMA controller", "dma-controller"},
1311 { 0x0802, "Timer", "timer"},
1312 { 0x0803, "RTC", "rtc"},
1313 { 0x0900, "Keyboard", "keyboard"},
1314 { 0x0901, "Pen", "pen"},
1315 { 0x0902, "Mouse", "mouse"},
1316 { 0x0A00, "Dock station", "dock", 0x00ff},
1317 { 0x0B00, "i386 cpu", "cpu", 0x00ff},
1318 { 0x0c00, "Fireware contorller", "fireware"},
1319 { 0x0c01, "Access bus controller", "access-bus"},
1320 { 0x0c02, "SSA controller", "ssa"},
1321 { 0x0c03, "USB controller", "usb"},
1322 { 0x0c04, "Fibre channel controller", "fibre-channel"},
f7748569 1323 { 0x0c05, "SMBus"},
6650ee6d
PB
1324 { 0, NULL}
1325};
1326
163c8a59 1327static void pci_for_each_device_under_bus(PCIBus *bus,
7aa8cbb9
AP
1328 void (*fn)(PCIBus *b, PCIDevice *d,
1329 void *opaque),
1330 void *opaque)
30468f78 1331{
163c8a59
LC
1332 PCIDevice *d;
1333 int devfn;
30468f78 1334
163c8a59
LC
1335 for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1336 d = bus->devices[devfn];
1337 if (d) {
7aa8cbb9 1338 fn(bus, d, opaque);
163c8a59
LC
1339 }
1340 }
1341}
1342
1343void pci_for_each_device(PCIBus *bus, int bus_num,
7aa8cbb9
AP
1344 void (*fn)(PCIBus *b, PCIDevice *d, void *opaque),
1345 void *opaque)
163c8a59 1346{
d662210a 1347 bus = pci_find_bus_nr(bus, bus_num);
163c8a59
LC
1348
1349 if (bus) {
7aa8cbb9 1350 pci_for_each_device_under_bus(bus, fn, opaque);
163c8a59
LC
1351 }
1352}
1353
79627472 1354static const pci_class_desc *get_class_desc(int class)
163c8a59 1355{
79627472 1356 const pci_class_desc *desc;
163c8a59 1357
79627472
LC
1358 desc = pci_class_descriptions;
1359 while (desc->desc && class != desc->class) {
1360 desc++;
30468f78 1361 }
b4dccd8d 1362
79627472
LC
1363 return desc;
1364}
14421258 1365
79627472 1366static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num);
163c8a59 1367
79627472
LC
1368static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev)
1369{
1370 PciMemoryRegionList *head = NULL, *cur_item = NULL;
1371 int i;
163c8a59 1372
79627472
LC
1373 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1374 const PCIIORegion *r = &dev->io_regions[i];
1375 PciMemoryRegionList *region;
1376
1377 if (!r->size) {
1378 continue;
502a5395 1379 }
163c8a59 1380
79627472
LC
1381 region = g_malloc0(sizeof(*region));
1382 region->value = g_malloc0(sizeof(*region->value));
163c8a59 1383
79627472
LC
1384 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
1385 region->value->type = g_strdup("io");
1386 } else {
1387 region->value->type = g_strdup("memory");
1388 region->value->has_prefetch = true;
1389 region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH);
1390 region->value->has_mem_type_64 = true;
1391 region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64);
d5e4acf7 1392 }
163c8a59 1393
79627472
LC
1394 region->value->bar = i;
1395 region->value->address = r->addr;
1396 region->value->size = r->size;
163c8a59 1397
79627472
LC
1398 /* XXX: waiting for the qapi to support GSList */
1399 if (!cur_item) {
1400 head = cur_item = region;
1401 } else {
1402 cur_item->next = region;
1403 cur_item = region;
163c8a59 1404 }
80b3ada7 1405 }
384d8876 1406
79627472 1407 return head;
163c8a59
LC
1408}
1409
79627472
LC
1410static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus,
1411 int bus_num)
163c8a59 1412{
79627472 1413 PciBridgeInfo *info;
163c8a59 1414
79627472 1415 info = g_malloc0(sizeof(*info));
163c8a59 1416
79627472
LC
1417 info->bus.number = dev->config[PCI_PRIMARY_BUS];
1418 info->bus.secondary = dev->config[PCI_SECONDARY_BUS];
1419 info->bus.subordinate = dev->config[PCI_SUBORDINATE_BUS];
163c8a59 1420
79627472
LC
1421 info->bus.io_range = g_malloc0(sizeof(*info->bus.io_range));
1422 info->bus.io_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO);
1423 info->bus.io_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO);
163c8a59 1424
79627472
LC
1425 info->bus.memory_range = g_malloc0(sizeof(*info->bus.memory_range));
1426 info->bus.memory_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY);
1427 info->bus.memory_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY);
163c8a59 1428
79627472
LC
1429 info->bus.prefetchable_range = g_malloc0(sizeof(*info->bus.prefetchable_range));
1430 info->bus.prefetchable_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
1431 info->bus.prefetchable_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
163c8a59 1432
79627472 1433 if (dev->config[PCI_SECONDARY_BUS] != 0) {
d662210a 1434 PCIBus *child_bus = pci_find_bus_nr(bus, dev->config[PCI_SECONDARY_BUS]);
79627472
LC
1435 if (child_bus) {
1436 info->has_devices = true;
1437 info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]);
1438 }
163c8a59
LC
1439 }
1440
79627472 1441 return info;
163c8a59
LC
1442}
1443
79627472
LC
1444static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus,
1445 int bus_num)
163c8a59 1446{
79627472
LC
1447 const pci_class_desc *desc;
1448 PciDeviceInfo *info;
b5937f29 1449 uint8_t type;
79627472 1450 int class;
163c8a59 1451
79627472
LC
1452 info = g_malloc0(sizeof(*info));
1453 info->bus = bus_num;
1454 info->slot = PCI_SLOT(dev->devfn);
1455 info->function = PCI_FUNC(dev->devfn);
1456
1457 class = pci_get_word(dev->config + PCI_CLASS_DEVICE);
1458 info->class_info.class = class;
1459 desc = get_class_desc(class);
1460 if (desc->desc) {
1461 info->class_info.has_desc = true;
1462 info->class_info.desc = g_strdup(desc->desc);
1463 }
1464
1465 info->id.vendor = pci_get_word(dev->config + PCI_VENDOR_ID);
1466 info->id.device = pci_get_word(dev->config + PCI_DEVICE_ID);
1467 info->regions = qmp_query_pci_regions(dev);
1468 info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : "");
163c8a59
LC
1469
1470 if (dev->config[PCI_INTERRUPT_PIN] != 0) {
79627472
LC
1471 info->has_irq = true;
1472 info->irq = dev->config[PCI_INTERRUPT_LINE];
163c8a59
LC
1473 }
1474
b5937f29
IY
1475 type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
1476 if (type == PCI_HEADER_TYPE_BRIDGE) {
79627472
LC
1477 info->has_pci_bridge = true;
1478 info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num);
163c8a59
LC
1479 }
1480
79627472 1481 return info;
163c8a59
LC
1482}
1483
79627472 1484static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num)
384d8876 1485{
79627472 1486 PciDeviceInfoList *info, *head = NULL, *cur_item = NULL;
163c8a59 1487 PCIDevice *dev;
79627472 1488 int devfn;
163c8a59
LC
1489
1490 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1491 dev = bus->devices[devfn];
1492 if (dev) {
79627472
LC
1493 info = g_malloc0(sizeof(*info));
1494 info->value = qmp_query_pci_device(dev, bus, bus_num);
1495
1496 /* XXX: waiting for the qapi to support GSList */
1497 if (!cur_item) {
1498 head = cur_item = info;
1499 } else {
1500 cur_item->next = info;
1501 cur_item = info;
1502 }
163c8a59 1503 }
1074df4f 1504 }
163c8a59 1505
79627472 1506 return head;
1074df4f
IY
1507}
1508
79627472 1509static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num)
1074df4f 1510{
79627472
LC
1511 PciInfo *info = NULL;
1512
d662210a 1513 bus = pci_find_bus_nr(bus, bus_num);
502a5395 1514 if (bus) {
79627472
LC
1515 info = g_malloc0(sizeof(*info));
1516 info->bus = bus_num;
1517 info->devices = qmp_query_pci_devices(bus, bus_num);
f2aa58c6 1518 }
163c8a59 1519
79627472 1520 return info;
f2aa58c6
FB
1521}
1522
79627472 1523PciInfoList *qmp_query_pci(Error **errp)
f2aa58c6 1524{
79627472 1525 PciInfoList *info, *head = NULL, *cur_item = NULL;
e822a52a 1526 struct PCIHostBus *host;
163c8a59 1527
e822a52a 1528 QLIST_FOREACH(host, &host_buses, next) {
79627472
LC
1529 info = g_malloc0(sizeof(*info));
1530 info->value = qmp_query_pci_bus(host->bus, 0);
1531
1532 /* XXX: waiting for the qapi to support GSList */
1533 if (!cur_item) {
1534 head = cur_item = info;
1535 } else {
1536 cur_item->next = info;
1537 cur_item = info;
163c8a59 1538 }
e822a52a 1539 }
163c8a59 1540
79627472 1541 return head;
77d4bc34 1542}
a41b2ff2 1543
cb457d76
AL
1544static const char * const pci_nic_models[] = {
1545 "ne2k_pci",
1546 "i82551",
1547 "i82557b",
1548 "i82559er",
1549 "rtl8139",
1550 "e1000",
1551 "pcnet",
1552 "virtio",
1553 NULL
1554};
1555
9d07d757
PB
1556static const char * const pci_nic_names[] = {
1557 "ne2k_pci",
1558 "i82551",
1559 "i82557b",
1560 "i82559er",
1561 "rtl8139",
1562 "e1000",
1563 "pcnet",
53c25cea 1564 "virtio-net-pci",
cb457d76
AL
1565 NULL
1566};
1567
a41b2ff2 1568/* Initialize a PCI NIC. */
33e66b86 1569/* FIXME callers should check for failure, but don't */
5607c388
MA
1570PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
1571 const char *default_devaddr)
a41b2ff2 1572{
5607c388 1573 const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr;
07caea31
MA
1574 PCIBus *bus;
1575 int devfn;
5607c388 1576 PCIDevice *pci_dev;
9d07d757 1577 DeviceState *dev;
cb457d76
AL
1578 int i;
1579
07caea31
MA
1580 i = qemu_find_nic_model(nd, pci_nic_models, default_model);
1581 if (i < 0)
1582 return NULL;
1583
1584 bus = pci_get_bus_devfn(&devfn, devaddr);
1585 if (!bus) {
1ecda02b
MA
1586 error_report("Invalid PCI device address %s for device %s",
1587 devaddr, pci_nic_names[i]);
07caea31
MA
1588 return NULL;
1589 }
1590
499cf102 1591 pci_dev = pci_create(bus, devfn, pci_nic_names[i]);
9ee05825 1592 dev = &pci_dev->qdev;
1cc33683 1593 qdev_set_nic_properties(dev, nd);
07caea31
MA
1594 if (qdev_init(dev) < 0)
1595 return NULL;
9ee05825 1596 return pci_dev;
a41b2ff2
PB
1597}
1598
07caea31
MA
1599PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
1600 const char *default_devaddr)
1601{
1602 PCIDevice *res;
1603
1604 if (qemu_show_nic_models(nd->model, pci_nic_models))
1605 exit(0);
1606
1607 res = pci_nic_init(nd, default_model, default_devaddr);
1608 if (!res)
1609 exit(1);
1610 return res;
1611}
1612
129d42fb
AJ
1613PCIDevice *pci_vga_init(PCIBus *bus)
1614{
1615 switch (vga_interface_type) {
1616 case VGA_CIRRUS:
1617 return pci_create_simple(bus, -1, "cirrus-vga");
1618 case VGA_QXL:
1619 return pci_create_simple(bus, -1, "qxl-vga");
1620 case VGA_STD:
1621 return pci_create_simple(bus, -1, "VGA");
1622 case VGA_VMWARE:
1623 return pci_create_simple(bus, -1, "vmware-svga");
1624 case VGA_NONE:
1625 default: /* Other non-PCI types. Checking for unsupported types is already
1626 done in vl.c. */
1627 return NULL;
1628 }
1629}
1630
929176c3
MT
1631/* Whether a given bus number is in range of the secondary
1632 * bus of the given bridge device. */
1633static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num)
1634{
1635 return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) &
1636 PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ &&
1637 dev->config[PCI_SECONDARY_BUS] < bus_num &&
1638 bus_num <= dev->config[PCI_SUBORDINATE_BUS];
1639}
1640
d662210a 1641static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num)
3ae80618 1642{
470e6363 1643 PCIBus *sec;
3ae80618 1644
470e6363 1645 if (!bus) {
e822a52a 1646 return NULL;
470e6363 1647 }
3ae80618 1648
e822a52a
IY
1649 if (pci_bus_num(bus) == bus_num) {
1650 return bus;
1651 }
1652
929176c3
MT
1653 /* Consider all bus numbers in range for the host pci bridge. */
1654 if (bus->parent_dev &&
1655 !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) {
1656 return NULL;
1657 }
1658
e822a52a 1659 /* try child bus */
929176c3
MT
1660 for (; bus; bus = sec) {
1661 QLIST_FOREACH(sec, &bus->child, sibling) {
1662 assert(sec->parent_dev);
1663 if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) {
1664 return sec;
1665 }
1666 if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) {
1667 break;
c021f8e6 1668 }
e822a52a
IY
1669 }
1670 }
1671
1672 return NULL;
3ae80618
AL
1673}
1674
5256d8bf 1675PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn)
3ae80618 1676{
d662210a 1677 bus = pci_find_bus_nr(bus, bus_num);
3ae80618
AL
1678
1679 if (!bus)
1680 return NULL;
1681
5256d8bf 1682 return bus->devices[devfn];
3ae80618
AL
1683}
1684
d307af79 1685static int pci_qdev_init(DeviceState *qdev)
6b1b92d3
PB
1686{
1687 PCIDevice *pci_dev = (PCIDevice *)qdev;
40021f08 1688 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev);
6b1b92d3 1689 PCIBus *bus;
113f89df 1690 int rc;
ab85ceb1 1691 bool is_default_rom;
6b1b92d3 1692
a9f49946 1693 /* initialize cap_present for pci_is_express() and pci_config_size() */
40021f08 1694 if (pc->is_express) {
a9f49946
IY
1695 pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS;
1696 }
1697
02e2da45 1698 bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev));
6e008585
AL
1699 pci_dev = do_pci_register_device(pci_dev, bus,
1700 object_get_typename(OBJECT(qdev)),
1701 pci_dev->devfn);
09e3acc6
GH
1702 if (pci_dev == NULL)
1703 return -1;
40021f08 1704 if (qdev->hotplugged && pc->no_hotplug) {
f79f2bfc 1705 qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(pci_dev)));
180c22e1
GH
1706 do_pci_unregister_device(pci_dev);
1707 return -1;
1708 }
40021f08
AL
1709 if (pc->init) {
1710 rc = pc->init(pci_dev);
c2afc922
IY
1711 if (rc != 0) {
1712 do_pci_unregister_device(pci_dev);
1713 return rc;
1714 }
925fe64a 1715 }
8c52c8f3
GH
1716
1717 /* rom loading */
ab85ceb1 1718 is_default_rom = false;
40021f08
AL
1719 if (pci_dev->romfile == NULL && pc->romfile != NULL) {
1720 pci_dev->romfile = g_strdup(pc->romfile);
ab85ceb1
SW
1721 is_default_rom = true;
1722 }
1723 pci_add_option_rom(pci_dev, is_default_rom);
8c52c8f3 1724
5beb8ad5 1725 if (bus->hotplug) {
e927d487
MT
1726 /* Let buses differentiate between hotplug and when device is
1727 * enabled during qemu machine creation. */
1728 rc = bus->hotplug(bus->hotplug_qdev, pci_dev,
1729 qdev->hotplugged ? PCI_HOTPLUG_ENABLED:
1730 PCI_COLDPLUG_ENABLED);
a213ff63
IY
1731 if (rc != 0) {
1732 int r = pci_unregister_device(&pci_dev->qdev);
1733 assert(!r);
1734 return rc;
1735 }
1736 }
ee995ffb
GH
1737 return 0;
1738}
1739
1740static int pci_unplug_device(DeviceState *qdev)
1741{
40021f08
AL
1742 PCIDevice *dev = PCI_DEVICE(qdev);
1743 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
ee995ffb 1744
40021f08 1745 if (pc->no_hotplug) {
f79f2bfc 1746 qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(dev)));
180c22e1
GH
1747 return -1;
1748 }
e927d487
MT
1749 return dev->bus->hotplug(dev->bus->hotplug_qdev, dev,
1750 PCI_HOTPLUG_DISABLED);
6b1b92d3
PB
1751}
1752
49823868
IY
1753PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction,
1754 const char *name)
6b1b92d3
PB
1755{
1756 DeviceState *dev;
1757
02e2da45 1758 dev = qdev_create(&bus->qbus, name);
09f1bbcd 1759 qdev_prop_set_int32(dev, "addr", devfn);
49823868 1760 qdev_prop_set_bit(dev, "multifunction", multifunction);
40021f08 1761 return PCI_DEVICE(dev);
71077c1c 1762}
6b1b92d3 1763
49823868
IY
1764PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn,
1765 bool multifunction,
1766 const char *name)
71077c1c 1767{
49823868 1768 PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name);
e23a1b33 1769 qdev_init_nofail(&dev->qdev);
71077c1c 1770 return dev;
6b1b92d3 1771}
6f4cbd39 1772
49823868
IY
1773PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name)
1774{
1775 return pci_create_multifunction(bus, devfn, false, name);
1776}
1777
1778PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
1779{
1780 return pci_create_simple_multifunction(bus, devfn, false, name);
1781}
1782
b56d701f 1783static uint8_t pci_find_space(PCIDevice *pdev, uint8_t size)
6f4cbd39
MT
1784{
1785 int offset = PCI_CONFIG_HEADER_SIZE;
1786 int i;
b56d701f 1787 for (i = PCI_CONFIG_HEADER_SIZE; i < PCI_CONFIG_SPACE_SIZE; ++i) {
6f4cbd39
MT
1788 if (pdev->used[i])
1789 offset = i + 1;
1790 else if (i - offset + 1 == size)
1791 return offset;
b56d701f 1792 }
6f4cbd39
MT
1793 return 0;
1794}
1795
1796static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id,
1797 uint8_t *prev_p)
1798{
1799 uint8_t next, prev;
1800
1801 if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST))
1802 return 0;
1803
1804 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1805 prev = next + PCI_CAP_LIST_NEXT)
1806 if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id)
1807 break;
1808
1809 if (prev_p)
1810 *prev_p = prev;
1811 return next;
1812}
1813
c9abe111
JK
1814static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset)
1815{
1816 uint8_t next, prev, found = 0;
1817
1818 if (!(pdev->used[offset])) {
1819 return 0;
1820 }
1821
1822 assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST);
1823
1824 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1825 prev = next + PCI_CAP_LIST_NEXT) {
1826 if (next <= offset && next > found) {
1827 found = next;
1828 }
1829 }
1830 return found;
1831}
1832
ab85ceb1
SW
1833/* Patch the PCI vendor and device ids in a PCI rom image if necessary.
1834 This is needed for an option rom which is used for more than one device. */
1835static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size)
1836{
1837 uint16_t vendor_id;
1838 uint16_t device_id;
1839 uint16_t rom_vendor_id;
1840 uint16_t rom_device_id;
1841 uint16_t rom_magic;
1842 uint16_t pcir_offset;
1843 uint8_t checksum;
1844
1845 /* Words in rom data are little endian (like in PCI configuration),
1846 so they can be read / written with pci_get_word / pci_set_word. */
1847
1848 /* Only a valid rom will be patched. */
1849 rom_magic = pci_get_word(ptr);
1850 if (rom_magic != 0xaa55) {
1851 PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic);
1852 return;
1853 }
1854 pcir_offset = pci_get_word(ptr + 0x18);
1855 if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) {
1856 PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset);
1857 return;
1858 }
1859
1860 vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID);
1861 device_id = pci_get_word(pdev->config + PCI_DEVICE_ID);
1862 rom_vendor_id = pci_get_word(ptr + pcir_offset + 4);
1863 rom_device_id = pci_get_word(ptr + pcir_offset + 6);
1864
1865 PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile,
1866 vendor_id, device_id, rom_vendor_id, rom_device_id);
1867
1868 checksum = ptr[6];
1869
1870 if (vendor_id != rom_vendor_id) {
1871 /* Patch vendor id and checksum (at offset 6 for etherboot roms). */
1872 checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8);
1873 checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8);
1874 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1875 ptr[6] = checksum;
1876 pci_set_word(ptr + pcir_offset + 4, vendor_id);
1877 }
1878
1879 if (device_id != rom_device_id) {
1880 /* Patch device id and checksum (at offset 6 for etherboot roms). */
1881 checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8);
1882 checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8);
1883 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1884 ptr[6] = checksum;
1885 pci_set_word(ptr + pcir_offset + 6, device_id);
1886 }
1887}
1888
c2039bd0 1889/* Add an option rom for the device */
ab85ceb1 1890static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom)
c2039bd0
AL
1891{
1892 int size;
1893 char *path;
1894 void *ptr;
1724f049 1895 char name[32];
4be9f0d1 1896 const VMStateDescription *vmsd;
c2039bd0 1897
8c52c8f3
GH
1898 if (!pdev->romfile)
1899 return 0;
1900 if (strlen(pdev->romfile) == 0)
1901 return 0;
1902
88169ddf
GH
1903 if (!pdev->rom_bar) {
1904 /*
1905 * Load rom via fw_cfg instead of creating a rom bar,
1906 * for 0.11 compatibility.
1907 */
1908 int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE);
1909 if (class == 0x0300) {
1910 rom_add_vga(pdev->romfile);
1911 } else {
2e55e842 1912 rom_add_option(pdev->romfile, -1);
88169ddf
GH
1913 }
1914 return 0;
1915 }
1916
8c52c8f3 1917 path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile);
c2039bd0 1918 if (path == NULL) {
7267c094 1919 path = g_strdup(pdev->romfile);
c2039bd0
AL
1920 }
1921
1922 size = get_image_size(path);
8c52c8f3 1923 if (size < 0) {
1ecda02b 1924 error_report("%s: failed to find romfile \"%s\"",
8c7f3dd0
SH
1925 __func__, pdev->romfile);
1926 g_free(path);
1927 return -1;
1928 } else if (size == 0) {
1929 error_report("%s: ignoring empty romfile \"%s\"",
1930 __func__, pdev->romfile);
7267c094 1931 g_free(path);
8c52c8f3
GH
1932 return -1;
1933 }
c2039bd0
AL
1934 if (size & (size - 1)) {
1935 size = 1 << qemu_fls(size);
1936 }
1937
4be9f0d1
AL
1938 vmsd = qdev_get_vmsd(DEVICE(pdev));
1939
1940 if (vmsd) {
1941 snprintf(name, sizeof(name), "%s.rom", vmsd->name);
1942 } else {
f79f2bfc 1943 snprintf(name, sizeof(name), "%s.rom", object_get_typename(OBJECT(pdev)));
4be9f0d1 1944 }
14caaf7f 1945 pdev->has_rom = true;
c5705a77
AK
1946 memory_region_init_ram(&pdev->rom, name, size);
1947 vmstate_register_ram(&pdev->rom, &pdev->qdev);
14caaf7f 1948 ptr = memory_region_get_ram_ptr(&pdev->rom);
c2039bd0 1949 load_image(path, ptr);
7267c094 1950 g_free(path);
c2039bd0 1951
ab85ceb1
SW
1952 if (is_default_rom) {
1953 /* Only the default rom images will be patched (if needed). */
1954 pci_patch_ids(pdev, ptr, size);
1955 }
1956
8c12f191
JB
1957 qemu_put_ram_ptr(ptr);
1958
e824b2cc 1959 pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom);
c2039bd0
AL
1960
1961 return 0;
1962}
1963
230741dc
AW
1964static void pci_del_option_rom(PCIDevice *pdev)
1965{
14caaf7f 1966 if (!pdev->has_rom)
230741dc
AW
1967 return;
1968
c5705a77 1969 vmstate_unregister_ram(&pdev->rom, &pdev->qdev);
14caaf7f
AK
1970 memory_region_destroy(&pdev->rom);
1971 pdev->has_rom = false;
230741dc
AW
1972}
1973
ca77089d
IY
1974/*
1975 * if !offset
1976 * Reserve space and add capability to the linked list in pci config space
1977 *
1978 * if offset = 0,
1979 * Find and reserve space and add capability to the linked list
1980 * in pci config space */
1981int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
1982 uint8_t offset, uint8_t size)
6f4cbd39 1983{
ca77089d 1984 uint8_t *config;
c9abe111
JK
1985 int i, overlapping_cap;
1986
ca77089d
IY
1987 if (!offset) {
1988 offset = pci_find_space(pdev, size);
1989 if (!offset) {
1990 return -ENOSPC;
1991 }
c9abe111
JK
1992 } else {
1993 /* Verify that capabilities don't overlap. Note: device assignment
1994 * depends on this check to verify that the device is not broken.
1995 * Should never trigger for emulated devices, but it's helpful
1996 * for debugging these. */
1997 for (i = offset; i < offset + size; i++) {
1998 overlapping_cap = pci_find_capability_at_offset(pdev, i);
1999 if (overlapping_cap) {
2000 fprintf(stderr, "ERROR: %04x:%02x:%02x.%x "
2001 "Attempt to add PCI capability %x at offset "
2002 "%x overlaps existing capability %x at offset %x\n",
2003 pci_find_domain(pdev->bus), pci_bus_num(pdev->bus),
2004 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
2005 cap_id, offset, overlapping_cap, i);
2006 return -EINVAL;
2007 }
2008 }
ca77089d
IY
2009 }
2010
2011 config = pdev->config + offset;
6f4cbd39
MT
2012 config[PCI_CAP_LIST_ID] = cap_id;
2013 config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST];
2014 pdev->config[PCI_CAPABILITY_LIST] = offset;
2015 pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
e26631b7 2016 memset(pdev->used + offset, 0xFF, QEMU_ALIGN_UP(size, 4));
6f4cbd39
MT
2017 /* Make capability read-only by default */
2018 memset(pdev->wmask + offset, 0, size);
bd4b65ee
MT
2019 /* Check capability by default */
2020 memset(pdev->cmask + offset, 0xFF, size);
6f4cbd39
MT
2021 return offset;
2022}
2023
2024/* Unlink capability from the pci config space. */
2025void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
2026{
2027 uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev);
2028 if (!offset)
2029 return;
2030 pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT];
ebabb67a 2031 /* Make capability writable again */
6f4cbd39 2032 memset(pdev->wmask + offset, 0xff, size);
1a4f5971 2033 memset(pdev->w1cmask + offset, 0, size);
bd4b65ee
MT
2034 /* Clear cmask as device-specific registers can't be checked */
2035 memset(pdev->cmask + offset, 0, size);
e26631b7 2036 memset(pdev->used + offset, 0, QEMU_ALIGN_UP(size, 4));
6f4cbd39
MT
2037
2038 if (!pdev->config[PCI_CAPABILITY_LIST])
2039 pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST;
2040}
2041
6f4cbd39
MT
2042uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id)
2043{
2044 return pci_find_capability_list(pdev, cap_id, NULL);
2045}
10c4c98a
GH
2046
2047static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent)
2048{
2049 PCIDevice *d = (PCIDevice *)dev;
2050 const pci_class_desc *desc;
2051 char ctxt[64];
2052 PCIIORegion *r;
2053 int i, class;
2054
b0ff8eb2 2055 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
10c4c98a
GH
2056 desc = pci_class_descriptions;
2057 while (desc->desc && class != desc->class)
2058 desc++;
2059 if (desc->desc) {
2060 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc);
2061 } else {
2062 snprintf(ctxt, sizeof(ctxt), "Class %04x", class);
2063 }
2064
2065 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, "
2066 "pci id %04x:%04x (sub %04x:%04x)\n",
7f5feab4 2067 indent, "", ctxt, pci_bus_num(d->bus),
e822a52a 2068 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn),
b0ff8eb2
IY
2069 pci_get_word(d->config + PCI_VENDOR_ID),
2070 pci_get_word(d->config + PCI_DEVICE_ID),
2071 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID),
2072 pci_get_word(d->config + PCI_SUBSYSTEM_ID));
10c4c98a
GH
2073 for (i = 0; i < PCI_NUM_REGIONS; i++) {
2074 r = &d->io_regions[i];
2075 if (!r->size)
2076 continue;
89e8b13c
IY
2077 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS
2078 " [0x%"FMT_PCIBUS"]\n",
2079 indent, "",
0392a017 2080 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem",
10c4c98a
GH
2081 r->addr, r->addr + r->size - 1);
2082 }
2083}
03587182 2084
5e0259e7
GN
2085static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len)
2086{
2087 PCIDevice *d = (PCIDevice *)dev;
2088 const char *name = NULL;
2089 const pci_class_desc *desc = pci_class_descriptions;
2090 int class = pci_get_word(d->config + PCI_CLASS_DEVICE);
2091
2092 while (desc->desc &&
2093 (class & ~desc->fw_ign_bits) !=
2094 (desc->class & ~desc->fw_ign_bits)) {
2095 desc++;
2096 }
2097
2098 if (desc->desc) {
2099 name = desc->fw_name;
2100 }
2101
2102 if (name) {
2103 pstrcpy(buf, len, name);
2104 } else {
2105 snprintf(buf, len, "pci%04x,%04x",
2106 pci_get_word(d->config + PCI_VENDOR_ID),
2107 pci_get_word(d->config + PCI_DEVICE_ID));
2108 }
2109
2110 return buf;
2111}
2112
2113static char *pcibus_get_fw_dev_path(DeviceState *dev)
2114{
2115 PCIDevice *d = (PCIDevice *)dev;
2116 char path[50], name[33];
2117 int off;
2118
2119 off = snprintf(path, sizeof(path), "%s@%x",
2120 pci_dev_fw_name(dev, name, sizeof name),
2121 PCI_SLOT(d->devfn));
2122 if (PCI_FUNC(d->devfn))
2123 snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn));
a5cf8262 2124 return g_strdup(path);
5e0259e7
GN
2125}
2126
4f43c1ff
AW
2127static char *pcibus_get_dev_path(DeviceState *dev)
2128{
a6a7005d
MT
2129 PCIDevice *d = container_of(dev, PCIDevice, qdev);
2130 PCIDevice *t;
2131 int slot_depth;
2132 /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function.
2133 * 00 is added here to make this format compatible with
2134 * domain:Bus:Slot.Func for systems without nested PCI bridges.
2135 * Slot.Function list specifies the slot and function numbers for all
2136 * devices on the path from root to the specific device. */
2991181a
MT
2137 char domain[] = "DDDD:00";
2138 char slot[] = ":SS.F";
2139 int domain_len = sizeof domain - 1 /* For '\0' */;
2140 int slot_len = sizeof slot - 1 /* For '\0' */;
a6a7005d
MT
2141 int path_len;
2142 char *path, *p;
2991181a 2143 int s;
a6a7005d
MT
2144
2145 /* Calculate # of slots on path between device and root. */;
2146 slot_depth = 0;
2147 for (t = d; t; t = t->bus->parent_dev) {
2148 ++slot_depth;
2149 }
2150
2151 path_len = domain_len + slot_len * slot_depth;
2152
2153 /* Allocate memory, fill in the terminating null byte. */
7267c094 2154 path = g_malloc(path_len + 1 /* For '\0' */);
a6a7005d
MT
2155 path[path_len] = '\0';
2156
2157 /* First field is the domain. */
2991181a
MT
2158 s = snprintf(domain, sizeof domain, "%04x:00", pci_find_domain(d->bus));
2159 assert(s == domain_len);
2160 memcpy(path, domain, domain_len);
a6a7005d
MT
2161
2162 /* Fill in slot numbers. We walk up from device to root, so need to print
2163 * them in the reverse order, last to first. */
2164 p = path + path_len;
2165 for (t = d; t; t = t->bus->parent_dev) {
2166 p -= slot_len;
2991181a 2167 s = snprintf(slot, sizeof slot, ":%02x.%x",
4c900518 2168 PCI_SLOT(t->devfn), PCI_FUNC(t->devfn));
2991181a
MT
2169 assert(s == slot_len);
2170 memcpy(p, slot, slot_len);
a6a7005d
MT
2171 }
2172
2173 return path;
4f43c1ff
AW
2174}
2175
f3006dd1
IY
2176static int pci_qdev_find_recursive(PCIBus *bus,
2177 const char *id, PCIDevice **pdev)
2178{
2179 DeviceState *qdev = qdev_find_recursive(&bus->qbus, id);
2180 if (!qdev) {
2181 return -ENODEV;
2182 }
2183
2184 /* roughly check if given qdev is pci device */
4be9f0d1 2185 if (object_dynamic_cast(OBJECT(qdev), TYPE_PCI_DEVICE)) {
40021f08 2186 *pdev = PCI_DEVICE(qdev);
f3006dd1
IY
2187 return 0;
2188 }
2189 return -EINVAL;
2190}
2191
2192int pci_qdev_find_device(const char *id, PCIDevice **pdev)
2193{
2194 struct PCIHostBus *host;
2195 int rc = -ENODEV;
2196
2197 QLIST_FOREACH(host, &host_buses, next) {
2198 int tmp = pci_qdev_find_recursive(host->bus, id, pdev);
2199 if (!tmp) {
2200 rc = 0;
2201 break;
2202 }
2203 if (tmp != -ENODEV) {
2204 rc = tmp;
2205 }
2206 }
2207
2208 return rc;
2209}
f5e6fed8
AK
2210
2211MemoryRegion *pci_address_space(PCIDevice *dev)
2212{
2213 return dev->bus->address_space_mem;
2214}
e11d6439
RH
2215
2216MemoryRegion *pci_address_space_io(PCIDevice *dev)
2217{
2218 return dev->bus->address_space_io;
2219}
40021f08 2220
39bffca2
AL
2221static void pci_device_class_init(ObjectClass *klass, void *data)
2222{
2223 DeviceClass *k = DEVICE_CLASS(klass);
2224 k->init = pci_qdev_init;
2225 k->unplug = pci_unplug_device;
2226 k->exit = pci_unregister_device;
0d936928 2227 k->bus_type = TYPE_PCI_BUS;
bce54474 2228 k->props = pci_props;
39bffca2
AL
2229}
2230
5fa45de5
DG
2231void pci_setup_iommu(PCIBus *bus, PCIDMAContextFunc fn, void *opaque)
2232{
2233 bus->dma_context_fn = fn;
2234 bus->dma_context_opaque = opaque;
2235}
2236
8c43a6f0 2237static const TypeInfo pci_device_type_info = {
40021f08
AL
2238 .name = TYPE_PCI_DEVICE,
2239 .parent = TYPE_DEVICE,
2240 .instance_size = sizeof(PCIDevice),
2241 .abstract = true,
2242 .class_size = sizeof(PCIDeviceClass),
39bffca2 2243 .class_init = pci_device_class_init,
40021f08
AL
2244};
2245
83f7d43a 2246static void pci_register_types(void)
40021f08 2247{
0d936928 2248 type_register_static(&pci_bus_info);
3a861c46 2249 type_register_static(&pcie_bus_info);
40021f08
AL
2250 type_register_static(&pci_device_type_info);
2251}
2252
83f7d43a 2253type_init(pci_register_types)