]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci.c
vmstate: introduce VMSTATE_BUFFER_UNSAFE_INFO.
[mirror_qemu.git] / hw / 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 */
87ecb68b
PB
24#include "hw.h"
25#include "pci.h"
376253ec 26#include "monitor.h"
87ecb68b 27#include "net.h"
880345c4 28#include "sysemu.h"
69b91039
FB
29
30//#define DEBUG_PCI
d8d2e079 31#ifdef DEBUG_PCI
2e49d64a 32# define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
d8d2e079
IY
33#else
34# define PCI_DPRINTF(format, ...) do { } while (0)
35#endif
69b91039 36
30468f78 37struct PCIBus {
02e2da45 38 BusState qbus;
30468f78 39 int devfn_min;
502a5395 40 pci_set_irq_fn set_irq;
d2b59317 41 pci_map_irq_fn map_irq;
ee995ffb 42 pci_hotplug_fn hotplug;
30468f78 43 uint32_t config_reg; /* XXX: suppress */
5d4e84c8 44 void *irq_opaque;
30468f78 45 PCIDevice *devices[256];
80b3ada7 46 PCIDevice *parent_dev;
e822a52a
IY
47
48 QLIST_HEAD(, PCIBus) child; /* this will be replaced by qdev later */
49 QLIST_ENTRY(PCIBus) sibling;/* this will be replaced by qdev later */
50
d2b59317
PB
51 /* The bus IRQ state is the logical OR of the connected devices.
52 Keep a count of the number of devices with raised IRQs. */
52fc1d83 53 int nirq;
10c4c98a
GH
54 int *irq_count;
55};
56
57static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent);
58
59static struct BusInfo pci_bus_info = {
60 .name = "PCI",
61 .size = sizeof(PCIBus),
62 .print_dev = pcibus_dev_print,
ee6847d1 63 .props = (Property[]) {
54586bd1
GH
64 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1),
65 DEFINE_PROP_END_OF_LIST()
ee6847d1 66 }
30468f78 67};
69b91039 68
1941d19c 69static void pci_update_mappings(PCIDevice *d);
d537cf6c 70static void pci_set_irq(void *opaque, int irq_num, int level);
1941d19c 71
c227f099 72target_phys_addr_t pci_mem_base;
d350d97d
AL
73static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET;
74static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU;
e822a52a
IY
75
76struct PCIHostBus {
77 int domain;
78 struct PCIBus *bus;
79 QLIST_ENTRY(PCIHostBus) next;
80};
81static QLIST_HEAD(, PCIHostBus) host_buses;
30468f78 82
2d1e9f96
JQ
83static const VMStateDescription vmstate_pcibus = {
84 .name = "PCIBUS",
85 .version_id = 1,
86 .minimum_version_id = 1,
87 .minimum_version_id_old = 1,
88 .fields = (VMStateField []) {
89 VMSTATE_INT32_EQUAL(nirq, PCIBus),
c7bde572 90 VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t),
2d1e9f96 91 VMSTATE_END_OF_LIST()
52fc1d83 92 }
2d1e9f96 93};
52fc1d83 94
b3b11697 95static int pci_bar(PCIDevice *d, int reg)
5330de09 96{
b3b11697
IY
97 uint8_t type;
98
99 if (reg != PCI_ROM_SLOT)
100 return PCI_BASE_ADDRESS_0 + reg * 4;
101
102 type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
103 return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS;
5330de09
MT
104}
105
106static void pci_device_reset(PCIDevice *dev)
107{
c0b1905b
MT
108 int r;
109
5330de09 110 memset(dev->irq_state, 0, sizeof dev->irq_state);
c0b1905b
MT
111 dev->config[PCI_COMMAND] &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
112 PCI_COMMAND_MASTER);
113 dev->config[PCI_CACHE_LINE_SIZE] = 0x0;
114 dev->config[PCI_INTERRUPT_LINE] = 0x0;
115 for (r = 0; r < PCI_NUM_REGIONS; ++r) {
116 if (!dev->io_regions[r].size) {
117 continue;
118 }
b3b11697 119 pci_set_long(dev->config + pci_bar(dev, r), dev->io_regions[r].type);
c0b1905b
MT
120 }
121 pci_update_mappings(dev);
5330de09
MT
122}
123
6eaa6847
GN
124static void pci_bus_reset(void *opaque)
125{
a60380a5 126 PCIBus *bus = opaque;
6eaa6847
GN
127 int i;
128
129 for (i = 0; i < bus->nirq; i++) {
130 bus->irq_count[i] = 0;
131 }
5330de09
MT
132 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
133 if (bus->devices[i]) {
134 pci_device_reset(bus->devices[i]);
135 }
6eaa6847
GN
136 }
137}
138
e822a52a
IY
139static void pci_host_bus_register(int domain, PCIBus *bus)
140{
141 struct PCIHostBus *host;
142 host = qemu_mallocz(sizeof(*host));
143 host->domain = domain;
144 host->bus = bus;
145 QLIST_INSERT_HEAD(&host_buses, host, next);
146}
147
148PCIBus *pci_find_host_bus(int domain)
149{
150 struct PCIHostBus *host;
151
152 QLIST_FOREACH(host, &host_buses, next) {
153 if (host->domain == domain) {
154 return host->bus;
155 }
156 }
157
158 return NULL;
159}
160
21eea4b3
GH
161void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
162 const char *name, int devfn_min)
30468f78 163{
52fc1d83
AZ
164 static int nbus = 0;
165
21eea4b3 166 qbus_create_inplace(&bus->qbus, &pci_bus_info, parent, name);
502a5395 167 bus->devfn_min = devfn_min;
e822a52a
IY
168
169 /* host bridge */
170 QLIST_INIT(&bus->child);
171 pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */
172
2d1e9f96 173 vmstate_register(nbus++, &vmstate_pcibus, bus);
a08d4367 174 qemu_register_reset(pci_bus_reset, bus);
21eea4b3
GH
175}
176
177PCIBus *pci_bus_new(DeviceState *parent, const char *name, int devfn_min)
178{
179 PCIBus *bus;
180
181 bus = qemu_mallocz(sizeof(*bus));
182 bus->qbus.qdev_allocated = 1;
183 pci_bus_new_inplace(bus, parent, name, devfn_min);
184 return bus;
185}
186
187void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
188 void *irq_opaque, int nirq)
189{
190 bus->set_irq = set_irq;
191 bus->map_irq = map_irq;
192 bus->irq_opaque = irq_opaque;
193 bus->nirq = nirq;
194 bus->irq_count = qemu_mallocz(nirq * sizeof(bus->irq_count[0]));
195}
196
ee995ffb
GH
197void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug)
198{
199 bus->qbus.allow_hotplug = 1;
200 bus->hotplug = hotplug;
201}
202
21eea4b3
GH
203PCIBus *pci_register_bus(DeviceState *parent, const char *name,
204 pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
205 void *irq_opaque, int devfn_min, int nirq)
206{
207 PCIBus *bus;
208
209 bus = pci_bus_new(parent, name, devfn_min);
210 pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq);
30468f78
FB
211 return bus;
212}
69b91039 213
e822a52a
IY
214static void pci_register_secondary_bus(PCIBus *parent,
215 PCIBus *bus,
03587182
GH
216 PCIDevice *dev,
217 pci_map_irq_fn map_irq,
218 const char *name)
80b3ada7 219{
03587182 220 qbus_create_inplace(&bus->qbus, &pci_bus_info, &dev->qdev, name);
80b3ada7
PB
221 bus->map_irq = map_irq;
222 bus->parent_dev = dev;
e822a52a
IY
223
224 QLIST_INIT(&bus->child);
225 QLIST_INSERT_HEAD(&parent->child, bus, sibling);
226}
227
228static void pci_unregister_secondary_bus(PCIBus *bus)
229{
230 assert(QLIST_EMPTY(&bus->child));
231 QLIST_REMOVE(bus, sibling);
80b3ada7
PB
232}
233
502a5395
PB
234int pci_bus_num(PCIBus *s)
235{
e94ff650
IY
236 if (!s->parent_dev)
237 return 0; /* pci host bridge */
238 return s->parent_dev->config[PCI_SECONDARY_BUS];
502a5395
PB
239}
240
e822a52a
IY
241static uint8_t pci_sub_bus(PCIBus *s)
242{
243 if (!s->parent_dev)
244 return 255; /* pci host bridge */
245 return s->parent_dev->config[PCI_SUBORDINATE_BUS];
246}
247
73534f2f 248static int get_pci_config_device(QEMUFile *f, void *pv, size_t size)
30ca2aab 249{
73534f2f 250 PCIDevice *s = container_of(pv, PCIDevice, config);
05fcfada 251 uint8_t config[PCI_CONFIG_SPACE_SIZE];
52fc1d83
AZ
252 int i;
253
05fcfada
MT
254 assert(size == sizeof config);
255 qemu_get_buffer(f, config, sizeof config);
256 for (i = 0; i < sizeof config; ++i)
bd4b65ee
MT
257 if ((config[i] ^ s->config[i]) & s->cmask[i] & ~s->wmask[i])
258 return -EINVAL;
05fcfada 259 memcpy(s->config, config, sizeof config);
bd4b65ee 260
1941d19c 261 pci_update_mappings(s);
52fc1d83 262
30ca2aab
FB
263 return 0;
264}
265
73534f2f 266/* just put buffer */
84e2e3eb 267static void put_pci_config_device(QEMUFile *f, void *pv, size_t size)
73534f2f
JQ
268{
269 const uint8_t *v = pv;
270 qemu_put_buffer(f, v, size);
271}
272
273static VMStateInfo vmstate_info_pci_config = {
274 .name = "pci config",
275 .get = get_pci_config_device,
276 .put = put_pci_config_device,
277};
278
279const VMStateDescription vmstate_pci_device = {
280 .name = "PCIDevice",
281 .version_id = 2,
282 .minimum_version_id = 1,
283 .minimum_version_id_old = 1,
284 .fields = (VMStateField []) {
285 VMSTATE_INT32_LE(version_id, PCIDevice),
286 VMSTATE_SINGLE(config, PCIDevice, 0, vmstate_info_pci_config,
287 typeof_field(PCIDevice,config)),
e369cad7 288 VMSTATE_INT32_ARRAY_V(irq_state, PCIDevice, PCI_NUM_PINS, 2),
73534f2f
JQ
289 VMSTATE_END_OF_LIST()
290 }
291};
292
293void pci_device_save(PCIDevice *s, QEMUFile *f)
294{
295 vmstate_save_state(f, &vmstate_pci_device, s);
296}
297
298int pci_device_load(PCIDevice *s, QEMUFile *f)
299{
300 return vmstate_load_state(f, &vmstate_pci_device, s, s->version_id);
301}
302
d350d97d
AL
303static int pci_set_default_subsystem_id(PCIDevice *pci_dev)
304{
305 uint16_t *id;
306
307 id = (void*)(&pci_dev->config[PCI_SUBVENDOR_ID]);
308 id[0] = cpu_to_le16(pci_default_sub_vendor_id);
309 id[1] = cpu_to_le16(pci_default_sub_device_id);
310 return 0;
311}
312
880345c4
AL
313/*
314 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error
315 */
316static int pci_parse_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp)
317{
318 const char *p;
319 char *e;
320 unsigned long val;
321 unsigned long dom = 0, bus = 0;
322 unsigned slot = 0;
323
324 p = addr;
325 val = strtoul(p, &e, 16);
326 if (e == p)
327 return -1;
328 if (*e == ':') {
329 bus = val;
330 p = e + 1;
331 val = strtoul(p, &e, 16);
332 if (e == p)
333 return -1;
334 if (*e == ':') {
335 dom = bus;
336 bus = val;
337 p = e + 1;
338 val = strtoul(p, &e, 16);
339 if (e == p)
340 return -1;
341 }
342 }
343
344 if (dom > 0xffff || bus > 0xff || val > 0x1f)
345 return -1;
346
347 slot = val;
348
349 if (*e)
350 return -1;
351
352 /* Note: QEMU doesn't implement domains other than 0 */
e822a52a 353 if (!pci_find_bus(pci_find_host_bus(dom), bus))
880345c4
AL
354 return -1;
355
356 *domp = dom;
357 *busp = bus;
358 *slotp = slot;
359 return 0;
360}
361
e9283f8b
JK
362int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
363 unsigned *slotp)
880345c4 364{
e9283f8b
JK
365 /* strip legacy tag */
366 if (!strncmp(addr, "pci_addr=", 9)) {
367 addr += 9;
368 }
369 if (pci_parse_devaddr(addr, domp, busp, slotp)) {
370 monitor_printf(mon, "Invalid pci address\n");
880345c4 371 return -1;
e9283f8b
JK
372 }
373 return 0;
880345c4
AL
374}
375
49bd1458 376PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr)
5607c388
MA
377{
378 int dom, bus;
379 unsigned slot;
380
381 if (!devaddr) {
382 *devfnp = -1;
e822a52a 383 return pci_find_bus(pci_find_host_bus(0), 0);
5607c388
MA
384 }
385
386 if (pci_parse_devaddr(devaddr, &dom, &bus, &slot) < 0) {
387 return NULL;
388 }
389
390 *devfnp = slot << 3;
e822a52a 391 return pci_find_bus(pci_find_host_bus(0), bus);
5607c388
MA
392}
393
bd4b65ee
MT
394static void pci_init_cmask(PCIDevice *dev)
395{
396 pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff);
397 pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff);
398 dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST;
399 dev->cmask[PCI_REVISION_ID] = 0xff;
400 dev->cmask[PCI_CLASS_PROG] = 0xff;
401 pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff);
402 dev->cmask[PCI_HEADER_TYPE] = 0xff;
403 dev->cmask[PCI_CAPABILITY_LIST] = 0xff;
404}
405
b7ee1603
MT
406static void pci_init_wmask(PCIDevice *dev)
407{
408 int i;
409 dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff;
410 dev->wmask[PCI_INTERRUPT_LINE] = 0xff;
67a51b48
IY
411 pci_set_word(dev->wmask + PCI_COMMAND,
412 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
b7ee1603
MT
413 for (i = PCI_CONFIG_HEADER_SIZE; i < PCI_CONFIG_SPACE_SIZE; ++i)
414 dev->wmask[i] = 0xff;
415}
416
69b91039 417/* -1 for devfn means auto assign */
6b1b92d3
PB
418static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
419 const char *name, int devfn,
420 PCIConfigReadFunc *config_read,
421 PCIConfigWriteFunc *config_write)
69b91039 422{
69b91039 423 if (devfn < 0) {
30468f78
FB
424 for(devfn = bus->devfn_min ; devfn < 256; devfn += 8) {
425 if (!bus->devices[devfn])
69b91039
FB
426 goto found;
427 }
428 return NULL;
429 found: ;
07b7d053
MA
430 } else if (bus->devices[devfn]) {
431 return NULL;
69b91039 432 }
30468f78 433 pci_dev->bus = bus;
69b91039
FB
434 pci_dev->devfn = devfn;
435 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
d2b59317 436 memset(pci_dev->irq_state, 0, sizeof(pci_dev->irq_state));
d350d97d 437 pci_set_default_subsystem_id(pci_dev);
bd4b65ee 438 pci_init_cmask(pci_dev);
b7ee1603 439 pci_init_wmask(pci_dev);
0ac32c83
FB
440
441 if (!config_read)
442 config_read = pci_default_read_config;
443 if (!config_write)
444 config_write = pci_default_write_config;
69b91039
FB
445 pci_dev->config_read = config_read;
446 pci_dev->config_write = config_write;
30468f78 447 bus->devices[devfn] = pci_dev;
e369cad7 448 pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS);
f16c4abf 449 pci_dev->version_id = 2; /* Current pci device vmstate version */
69b91039
FB
450 return pci_dev;
451}
452
6b1b92d3
PB
453PCIDevice *pci_register_device(PCIBus *bus, const char *name,
454 int instance_size, int devfn,
455 PCIConfigReadFunc *config_read,
456 PCIConfigWriteFunc *config_write)
457{
458 PCIDevice *pci_dev;
459
460 pci_dev = qemu_mallocz(instance_size);
461 pci_dev = do_pci_register_device(pci_dev, bus, name, devfn,
462 config_read, config_write);
463 return pci_dev;
464}
c227f099 465static target_phys_addr_t pci_to_cpu_addr(target_phys_addr_t addr)
5851e08c
AL
466{
467 return addr + pci_mem_base;
468}
469
470static void pci_unregister_io_regions(PCIDevice *pci_dev)
471{
472 PCIIORegion *r;
473 int i;
474
475 for(i = 0; i < PCI_NUM_REGIONS; i++) {
476 r = &pci_dev->io_regions[i];
182f9c8a 477 if (!r->size || r->addr == PCI_BAR_UNMAPPED)
5851e08c 478 continue;
0392a017 479 if (r->type == PCI_BASE_ADDRESS_SPACE_IO) {
5851e08c
AL
480 isa_unassign_ioport(r->addr, r->size);
481 } else {
482 cpu_register_physical_memory(pci_to_cpu_addr(r->addr),
483 r->size,
484 IO_MEM_UNASSIGNED);
485 }
486 }
487}
488
a36a344d 489static int pci_unregister_device(DeviceState *dev)
5851e08c 490{
a36a344d 491 PCIDevice *pci_dev = DO_UPCAST(PCIDevice, qdev, dev);
e3936fa5 492 PCIDeviceInfo *info = DO_UPCAST(PCIDeviceInfo, qdev, dev->info);
5851e08c
AL
493 int ret = 0;
494
e3936fa5
GH
495 if (info->exit)
496 ret = info->exit(pci_dev);
5851e08c
AL
497 if (ret)
498 return ret;
499
500 pci_unregister_io_regions(pci_dev);
501
502 qemu_free_irqs(pci_dev->irq);
5851e08c 503 pci_dev->bus->devices[pci_dev->devfn] = NULL;
5851e08c
AL
504 return 0;
505}
506
28c2c264 507void pci_register_bar(PCIDevice *pci_dev, int region_num,
6e355d90 508 pcibus_t size, int type,
69b91039
FB
509 PCIMapIORegionFunc *map_func)
510{
511 PCIIORegion *r;
d7ce493a 512 uint32_t addr;
6e355d90 513 pcibus_t wmask;
69b91039 514
8a8696a3 515 if ((unsigned int)region_num >= PCI_NUM_REGIONS)
69b91039 516 return;
a4c20c6a
AL
517
518 if (size & (size-1)) {
519 fprintf(stderr, "ERROR: PCI region size must be pow2 "
89e8b13c 520 "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size);
a4c20c6a
AL
521 exit(1);
522 }
523
69b91039 524 r = &pci_dev->io_regions[region_num];
182f9c8a 525 r->addr = PCI_BAR_UNMAPPED;
69b91039
FB
526 r->size = size;
527 r->type = type;
528 r->map_func = map_func;
b7ee1603
MT
529
530 wmask = ~(size - 1);
b3b11697 531 addr = pci_bar(pci_dev, region_num);
d7ce493a 532 if (region_num == PCI_ROM_SLOT) {
b7ee1603 533 /* ROM enable bit is writeable */
5330de09 534 wmask |= PCI_ROM_ADDRESS_ENABLE;
d7ce493a 535 }
b0ff8eb2 536 pci_set_long(pci_dev->config + addr, type);
14421258
IY
537 if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) &&
538 r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
539 pci_set_quad(pci_dev->wmask + addr, wmask);
540 pci_set_quad(pci_dev->cmask + addr, ~0ULL);
541 } else {
542 pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff);
543 pci_set_long(pci_dev->cmask + addr, 0xffffffff);
544 }
69b91039
FB
545}
546
0ac32c83
FB
547static void pci_update_mappings(PCIDevice *d)
548{
549 PCIIORegion *r;
550 int cmd, i;
6e355d90 551 pcibus_t last_addr, new_addr;
3b46e624 552
b0ff8eb2 553 cmd = pci_get_word(d->config + PCI_COMMAND);
8a8696a3 554 for(i = 0; i < PCI_NUM_REGIONS; i++) {
0ac32c83
FB
555 r = &d->io_regions[i];
556 if (r->size != 0) {
0392a017 557 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
0ac32c83 558 if (cmd & PCI_COMMAND_IO) {
b3b11697 559 new_addr = pci_get_long(d->config + pci_bar(d, i));
0ac32c83
FB
560 new_addr = new_addr & ~(r->size - 1);
561 last_addr = new_addr + r->size - 1;
562 /* NOTE: we have only 64K ioports on PC */
563 if (last_addr <= new_addr || new_addr == 0 ||
564 last_addr >= 0x10000) {
182f9c8a 565 new_addr = PCI_BAR_UNMAPPED;
0ac32c83
FB
566 }
567 } else {
182f9c8a 568 new_addr = PCI_BAR_UNMAPPED;
0ac32c83
FB
569 }
570 } else {
571 if (cmd & PCI_COMMAND_MEMORY) {
14421258
IY
572 if (r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
573 new_addr = pci_get_quad(d->config + pci_bar(d, i));
574 } else {
575 new_addr = pci_get_long(d->config + pci_bar(d, i));
576 }
8a8696a3 577 /* the ROM slot has a specific enable bit */
5330de09 578 if (i == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE))
8a8696a3 579 goto no_mem_map;
0ac32c83
FB
580 new_addr = new_addr & ~(r->size - 1);
581 last_addr = new_addr + r->size - 1;
582 /* NOTE: we do not support wrapping */
583 /* XXX: as we cannot support really dynamic
584 mappings, we handle specific values as invalid
585 mappings. */
586 if (last_addr <= new_addr || new_addr == 0 ||
4f8589e1
IY
587 last_addr == PCI_BAR_UNMAPPED ||
588
589 /* Now pcibus_t is 64bit.
590 * Check if 32 bit BAR wrap around explicitly.
591 * Without this, PC ide doesn't work well.
592 * TODO: remove this work around.
593 */
14421258
IY
594 (!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) &&
595 last_addr >= UINT32_MAX) ||
596
597 /*
598 * OS is allowed to set BAR beyond its addressable
599 * bits. For example, 32 bit OS can set 64bit bar
600 * to >4G. Check it.
601 */
602 last_addr >= TARGET_PHYS_ADDR_MAX) {
182f9c8a 603 new_addr = PCI_BAR_UNMAPPED;
0ac32c83
FB
604 }
605 } else {
8a8696a3 606 no_mem_map:
182f9c8a 607 new_addr = PCI_BAR_UNMAPPED;
0ac32c83
FB
608 }
609 }
610 /* now do the real mapping */
611 if (new_addr != r->addr) {
182f9c8a 612 if (r->addr != PCI_BAR_UNMAPPED) {
0392a017 613 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
0ac32c83
FB
614 int class;
615 /* NOTE: specific hack for IDE in PC case:
616 only one byte must be mapped. */
5330de09 617 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
0ac32c83
FB
618 if (class == 0x0101 && r->size == 4) {
619 isa_unassign_ioport(r->addr + 2, 1);
620 } else {
621 isa_unassign_ioport(r->addr, r->size);
622 }
623 } else {
502a5395 624 cpu_register_physical_memory(pci_to_cpu_addr(r->addr),
5fafdf24 625 r->size,
0ac32c83 626 IO_MEM_UNASSIGNED);
f65ed4c1 627 qemu_unregister_coalesced_mmio(r->addr, r->size);
0ac32c83
FB
628 }
629 }
630 r->addr = new_addr;
182f9c8a 631 if (r->addr != PCI_BAR_UNMAPPED) {
0ac32c83
FB
632 r->map_func(d, i, r->addr, r->size, r->type);
633 }
634 }
635 }
636 }
637}
638
5fafdf24 639uint32_t pci_default_read_config(PCIDevice *d,
0ac32c83 640 uint32_t address, int len)
69b91039 641{
5029fe12
IY
642 uint32_t val = 0;
643 assert(len == 1 || len == 2 || len == 4);
644 len = MIN(len, PCI_CONFIG_SPACE_SIZE - address);
645 memcpy(&val, d->config + address, len);
646 return le32_to_cpu(val);
0ac32c83
FB
647}
648
b7ee1603 649void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l)
0ac32c83 650{
b7ee1603
MT
651 uint8_t orig[PCI_CONFIG_SPACE_SIZE];
652 int i;
0ac32c83 653
0ac32c83 654 /* not efficient, but simple */
b7ee1603
MT
655 memcpy(orig, d->config, PCI_CONFIG_SPACE_SIZE);
656 for(i = 0; i < l && addr < PCI_CONFIG_SPACE_SIZE; val >>= 8, ++i, ++addr) {
657 uint8_t wmask = d->wmask[addr];
658 d->config[addr] = (d->config[addr] & ~wmask) | (val & wmask);
0ac32c83 659 }
b7ee1603
MT
660 if (memcmp(orig + PCI_BASE_ADDRESS_0, d->config + PCI_BASE_ADDRESS_0, 24)
661 || ((orig[PCI_COMMAND] ^ d->config[PCI_COMMAND])
662 & (PCI_COMMAND_MEMORY | PCI_COMMAND_IO)))
0ac32c83 663 pci_update_mappings(d);
69b91039
FB
664}
665
502a5395
PB
666/***********************************************************/
667/* generic PCI irq support */
30468f78 668
502a5395 669/* 0 <= irq_num <= 3. level must be 0 or 1 */
d537cf6c 670static void pci_set_irq(void *opaque, int irq_num, int level)
69b91039 671{
a60380a5 672 PCIDevice *pci_dev = opaque;
80b3ada7
PB
673 PCIBus *bus;
674 int change;
3b46e624 675
80b3ada7
PB
676 change = level - pci_dev->irq_state[irq_num];
677 if (!change)
678 return;
d2b59317 679
d2b59317 680 pci_dev->irq_state[irq_num] = level;
5e966ce6
PB
681 for (;;) {
682 bus = pci_dev->bus;
80b3ada7 683 irq_num = bus->map_irq(pci_dev, irq_num);
5e966ce6
PB
684 if (bus->set_irq)
685 break;
80b3ada7 686 pci_dev = bus->parent_dev;
80b3ada7
PB
687 }
688 bus->irq_count[irq_num] += change;
d2b59317 689 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0);
69b91039
FB
690}
691
502a5395
PB
692/***********************************************************/
693/* monitor info on PCI */
0ac32c83 694
6650ee6d
PB
695typedef struct {
696 uint16_t class;
697 const char *desc;
698} pci_class_desc;
699
09bc878a 700static const pci_class_desc pci_class_descriptions[] =
6650ee6d 701{
4ca9c76f 702 { 0x0100, "SCSI controller"},
6650ee6d 703 { 0x0101, "IDE controller"},
dcb5b19a
TS
704 { 0x0102, "Floppy controller"},
705 { 0x0103, "IPI controller"},
706 { 0x0104, "RAID controller"},
707 { 0x0106, "SATA controller"},
708 { 0x0107, "SAS controller"},
709 { 0x0180, "Storage controller"},
6650ee6d 710 { 0x0200, "Ethernet controller"},
dcb5b19a
TS
711 { 0x0201, "Token Ring controller"},
712 { 0x0202, "FDDI controller"},
713 { 0x0203, "ATM controller"},
714 { 0x0280, "Network controller"},
6650ee6d 715 { 0x0300, "VGA controller"},
dcb5b19a
TS
716 { 0x0301, "XGA controller"},
717 { 0x0302, "3D controller"},
718 { 0x0380, "Display controller"},
719 { 0x0400, "Video controller"},
720 { 0x0401, "Audio controller"},
721 { 0x0402, "Phone"},
722 { 0x0480, "Multimedia controller"},
723 { 0x0500, "RAM controller"},
724 { 0x0501, "Flash controller"},
725 { 0x0580, "Memory controller"},
6650ee6d
PB
726 { 0x0600, "Host bridge"},
727 { 0x0601, "ISA bridge"},
dcb5b19a
TS
728 { 0x0602, "EISA bridge"},
729 { 0x0603, "MC bridge"},
6650ee6d 730 { 0x0604, "PCI bridge"},
dcb5b19a
TS
731 { 0x0605, "PCMCIA bridge"},
732 { 0x0606, "NUBUS bridge"},
733 { 0x0607, "CARDBUS bridge"},
734 { 0x0608, "RACEWAY bridge"},
735 { 0x0680, "Bridge"},
6650ee6d
PB
736 { 0x0c03, "USB controller"},
737 { 0, NULL}
738};
739
e822a52a 740static void pci_info_device(PCIBus *bus, PCIDevice *d)
30468f78 741{
376253ec 742 Monitor *mon = cur_mon;
502a5395
PB
743 int i, class;
744 PCIIORegion *r;
09bc878a 745 const pci_class_desc *desc;
30468f78 746
376253ec 747 monitor_printf(mon, " Bus %2d, device %3d, function %d:\n",
e94ff650
IY
748 pci_bus_num(d->bus),
749 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn));
b0ff8eb2 750 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
376253ec 751 monitor_printf(mon, " ");
6650ee6d
PB
752 desc = pci_class_descriptions;
753 while (desc->desc && class != desc->class)
754 desc++;
755 if (desc->desc) {
376253ec 756 monitor_printf(mon, "%s", desc->desc);
6650ee6d 757 } else {
376253ec 758 monitor_printf(mon, "Class %04x", class);
72cc6cfe 759 }
376253ec 760 monitor_printf(mon, ": PCI device %04x:%04x\n",
b0ff8eb2
IY
761 pci_get_word(d->config + PCI_VENDOR_ID),
762 pci_get_word(d->config + PCI_DEVICE_ID));
30468f78 763
502a5395 764 if (d->config[PCI_INTERRUPT_PIN] != 0) {
376253ec
AL
765 monitor_printf(mon, " IRQ %d.\n",
766 d->config[PCI_INTERRUPT_LINE]);
30468f78 767 }
80b3ada7 768 if (class == 0x0604) {
376253ec 769 monitor_printf(mon, " BUS %d.\n", d->config[0x19]);
80b3ada7 770 }
502a5395
PB
771 for(i = 0;i < PCI_NUM_REGIONS; i++) {
772 r = &d->io_regions[i];
773 if (r->size != 0) {
376253ec 774 monitor_printf(mon, " BAR%d: ", i);
0392a017 775 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
89e8b13c
IY
776 monitor_printf(mon, "I/O at 0x%04"FMT_PCIBUS
777 " [0x%04"FMT_PCIBUS"].\n",
376253ec 778 r->addr, r->addr + r->size - 1);
502a5395 779 } else {
14421258
IY
780 const char *type = r->type & PCI_BASE_ADDRESS_MEM_TYPE_64 ?
781 "64 bit" : "32 bit";
782 const char *prefetch =
783 r->type & PCI_BASE_ADDRESS_MEM_PREFETCH ?
784 " prefetchable" : "";
785
786 monitor_printf(mon, "%s%s memory at 0x%08"FMT_PCIBUS
89e8b13c 787 " [0x%08"FMT_PCIBUS"].\n",
14421258 788 type, prefetch,
376253ec 789 r->addr, r->addr + r->size - 1);
502a5395
PB
790 }
791 }
77d4bc34 792 }
8ad12514 793 monitor_printf(mon, " id \"%s\"\n", d->qdev.id ? d->qdev.id : "");
80b3ada7 794 if (class == 0x0604 && d->config[0x19] != 0) {
e822a52a 795 pci_for_each_device(bus, d->config[0x19], pci_info_device);
80b3ada7 796 }
384d8876
FB
797}
798
e822a52a
IY
799void pci_for_each_device(PCIBus *bus, int bus_num,
800 void (*fn)(PCIBus *b, PCIDevice *d))
384d8876 801{
384d8876 802 PCIDevice *d;
502a5395 803 int devfn;
3b46e624 804
e822a52a 805 bus = pci_find_bus(bus, bus_num);
502a5395
PB
806 if (bus) {
807 for(devfn = 0; devfn < 256; devfn++) {
808 d = bus->devices[devfn];
809 if (d)
e822a52a 810 fn(bus, d);
502a5395 811 }
f2aa58c6 812 }
f2aa58c6
FB
813}
814
376253ec 815void pci_info(Monitor *mon)
f2aa58c6 816{
e822a52a
IY
817 struct PCIHostBus *host;
818 QLIST_FOREACH(host, &host_buses, next) {
819 pci_for_each_device(host->bus, 0, pci_info_device);
820 }
77d4bc34 821}
a41b2ff2 822
cb457d76
AL
823static const char * const pci_nic_models[] = {
824 "ne2k_pci",
825 "i82551",
826 "i82557b",
827 "i82559er",
828 "rtl8139",
829 "e1000",
830 "pcnet",
831 "virtio",
832 NULL
833};
834
9d07d757
PB
835static const char * const pci_nic_names[] = {
836 "ne2k_pci",
837 "i82551",
838 "i82557b",
839 "i82559er",
840 "rtl8139",
841 "e1000",
842 "pcnet",
53c25cea 843 "virtio-net-pci",
cb457d76
AL
844 NULL
845};
846
a41b2ff2 847/* Initialize a PCI NIC. */
33e66b86 848/* FIXME callers should check for failure, but don't */
5607c388
MA
849PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
850 const char *default_devaddr)
a41b2ff2 851{
5607c388 852 const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr;
07caea31
MA
853 PCIBus *bus;
854 int devfn;
5607c388 855 PCIDevice *pci_dev;
9d07d757 856 DeviceState *dev;
cb457d76
AL
857 int i;
858
07caea31
MA
859 i = qemu_find_nic_model(nd, pci_nic_models, default_model);
860 if (i < 0)
861 return NULL;
862
863 bus = pci_get_bus_devfn(&devfn, devaddr);
864 if (!bus) {
865 qemu_error("Invalid PCI device address %s for device %s\n",
866 devaddr, pci_nic_names[i]);
867 return NULL;
868 }
869
499cf102 870 pci_dev = pci_create(bus, devfn, pci_nic_names[i]);
9ee05825 871 dev = &pci_dev->qdev;
dea7b3b9
MM
872 if (nd->name)
873 dev->id = qemu_strdup(nd->name);
1cc33683 874 qdev_set_nic_properties(dev, nd);
07caea31
MA
875 if (qdev_init(dev) < 0)
876 return NULL;
9ee05825 877 return pci_dev;
a41b2ff2
PB
878}
879
07caea31
MA
880PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
881 const char *default_devaddr)
882{
883 PCIDevice *res;
884
885 if (qemu_show_nic_models(nd->model, pci_nic_models))
886 exit(0);
887
888 res = pci_nic_init(nd, default_model, default_devaddr);
889 if (!res)
890 exit(1);
891 return res;
892}
893
80b3ada7
PB
894typedef struct {
895 PCIDevice dev;
03587182
GH
896 PCIBus bus;
897 uint32_t vid;
898 uint32_t did;
80b3ada7
PB
899} PCIBridge;
900
9596ebb7 901static void pci_bridge_write_config(PCIDevice *d,
80b3ada7
PB
902 uint32_t address, uint32_t val, int len)
903{
80b3ada7
PB
904 pci_default_write_config(d, address, val, len);
905}
906
e822a52a 907PCIBus *pci_find_bus(PCIBus *bus, int bus_num)
3ae80618 908{
e822a52a 909 PCIBus *sec;
3ae80618 910
e822a52a
IY
911 if (!bus)
912 return NULL;
3ae80618 913
e822a52a
IY
914 if (pci_bus_num(bus) == bus_num) {
915 return bus;
916 }
917
918 /* try child bus */
919 QLIST_FOREACH(sec, &bus->child, sibling) {
920 if (pci_bus_num(sec) <= bus_num && bus_num <= pci_sub_bus(sec)) {
921 return pci_find_bus(sec, bus_num);
922 }
923 }
924
925 return NULL;
3ae80618
AL
926}
927
e822a52a 928PCIDevice *pci_find_device(PCIBus *bus, int bus_num, int slot, int function)
3ae80618 929{
e822a52a 930 bus = pci_find_bus(bus, bus_num);
3ae80618
AL
931
932 if (!bus)
933 return NULL;
934
935 return bus->devices[PCI_DEVFN(slot, function)];
936}
937
03587182 938static int pci_bridge_initfn(PCIDevice *dev)
80b3ada7 939{
03587182 940 PCIBridge *s = DO_UPCAST(PCIBridge, dev, dev);
480b9f24 941
03587182
GH
942 pci_config_set_vendor_id(s->dev.config, s->vid);
943 pci_config_set_device_id(s->dev.config, s->did);
480b9f24 944
74c01823
IY
945 /* TODO: intial value
946 * command register:
947 * According to PCI bridge spec, after reset
948 * bus master bit is off
949 * memory space enable bit is off
950 * According to manual (805-1251.pdf).(See abp_pbi.c for its links.)
951 * the reset value should be zero unless the boot pin is tied high
952 * (which is tru) and thus it should be PCI_COMMAND_MEMORY.
953 *
954 * For now, don't touch the value.
955 * Later command register will be set to zero and apb_pci.c will
956 * override the value.
957 * Same for latency timer, and multi function bit of header type.
958 */
959 pci_set_word(dev->config + PCI_COMMAND,
960 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
961
962 pci_set_word(dev->config + PCI_STATUS,
963 PCI_STATUS_66MHZ | PCI_STATUS_FAST_BACK);
964 pci_config_set_class(dev->config, PCI_CLASS_BRIDGE_PCI);
965 dev->config[PCI_LATENCY_TIMER] = 0x10;
966 dev->config[PCI_HEADER_TYPE] =
967 PCI_HEADER_TYPE_MULTI_FUNCTION | PCI_HEADER_TYPE_BRIDGE;
968 pci_set_word(dev->config + PCI_SEC_STATUS,
969 PCI_STATUS_66MHZ | PCI_STATUS_FAST_BACK);
03587182
GH
970 return 0;
971}
80b3ada7 972
e822a52a
IY
973static int pci_bridge_exitfn(PCIDevice *pci_dev)
974{
975 PCIBridge *s = DO_UPCAST(PCIBridge, dev, pci_dev);
976 PCIBus *bus = &s->bus;
977 pci_unregister_secondary_bus(bus);
978 return 0;
979}
980
03587182
GH
981PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
982 pci_map_irq_fn map_irq, const char *name)
983{
984 PCIDevice *dev;
985 PCIBridge *s;
986
499cf102 987 dev = pci_create(bus, devfn, "pci-bridge");
03587182
GH
988 qdev_prop_set_uint32(&dev->qdev, "vendorid", vid);
989 qdev_prop_set_uint32(&dev->qdev, "deviceid", did);
e23a1b33 990 qdev_init_nofail(&dev->qdev);
03587182
GH
991
992 s = DO_UPCAST(PCIBridge, dev, dev);
e822a52a 993 pci_register_secondary_bus(bus, &s->bus, &s->dev, map_irq, name);
03587182 994 return &s->bus;
80b3ada7 995}
6b1b92d3 996
81a322d4 997static int pci_qdev_init(DeviceState *qdev, DeviceInfo *base)
6b1b92d3
PB
998{
999 PCIDevice *pci_dev = (PCIDevice *)qdev;
02e2da45 1000 PCIDeviceInfo *info = container_of(base, PCIDeviceInfo, qdev);
6b1b92d3 1001 PCIBus *bus;
ee995ffb 1002 int devfn, rc;
6b1b92d3 1003
02e2da45 1004 bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev));
ee6847d1 1005 devfn = pci_dev->devfn;
16eaedf2 1006 pci_dev = do_pci_register_device(pci_dev, bus, base->name, devfn,
0aab0d3a 1007 info->config_read, info->config_write);
6b1b92d3 1008 assert(pci_dev);
ee995ffb
GH
1009 rc = info->init(pci_dev);
1010 if (rc != 0)
1011 return rc;
1012 if (qdev->hotplugged)
1013 bus->hotplug(pci_dev, 1);
1014 return 0;
1015}
1016
1017static int pci_unplug_device(DeviceState *qdev)
1018{
1019 PCIDevice *dev = DO_UPCAST(PCIDevice, qdev, qdev);
1020
1021 dev->bus->hotplug(dev, 0);
1022 return 0;
6b1b92d3
PB
1023}
1024
0aab0d3a 1025void pci_qdev_register(PCIDeviceInfo *info)
6b1b92d3 1026{
02e2da45 1027 info->qdev.init = pci_qdev_init;
ee995ffb 1028 info->qdev.unplug = pci_unplug_device;
a36a344d 1029 info->qdev.exit = pci_unregister_device;
10c4c98a 1030 info->qdev.bus_info = &pci_bus_info;
074f2fff 1031 qdev_register(&info->qdev);
6b1b92d3
PB
1032}
1033
0aab0d3a
GH
1034void pci_qdev_register_many(PCIDeviceInfo *info)
1035{
1036 while (info->qdev.name) {
1037 pci_qdev_register(info);
1038 info++;
1039 }
1040}
1041
499cf102 1042PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name)
6b1b92d3
PB
1043{
1044 DeviceState *dev;
1045
02e2da45 1046 dev = qdev_create(&bus->qbus, name);
a6307b08 1047 qdev_prop_set_uint32(dev, "addr", devfn);
71077c1c
GH
1048 return DO_UPCAST(PCIDevice, qdev, dev);
1049}
6b1b92d3 1050
71077c1c
GH
1051PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
1052{
499cf102 1053 PCIDevice *dev = pci_create(bus, devfn, name);
e23a1b33 1054 qdev_init_nofail(&dev->qdev);
71077c1c 1055 return dev;
6b1b92d3 1056}
6f4cbd39
MT
1057
1058static int pci_find_space(PCIDevice *pdev, uint8_t size)
1059{
1060 int offset = PCI_CONFIG_HEADER_SIZE;
1061 int i;
1062 for (i = PCI_CONFIG_HEADER_SIZE; i < PCI_CONFIG_SPACE_SIZE; ++i)
1063 if (pdev->used[i])
1064 offset = i + 1;
1065 else if (i - offset + 1 == size)
1066 return offset;
1067 return 0;
1068}
1069
1070static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id,
1071 uint8_t *prev_p)
1072{
1073 uint8_t next, prev;
1074
1075 if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST))
1076 return 0;
1077
1078 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1079 prev = next + PCI_CAP_LIST_NEXT)
1080 if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id)
1081 break;
1082
1083 if (prev_p)
1084 *prev_p = prev;
1085 return next;
1086}
1087
1088/* Reserve space and add capability to the linked list in pci config space */
1089int pci_add_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
1090{
1091 uint8_t offset = pci_find_space(pdev, size);
1092 uint8_t *config = pdev->config + offset;
1093 if (!offset)
1094 return -ENOSPC;
1095 config[PCI_CAP_LIST_ID] = cap_id;
1096 config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST];
1097 pdev->config[PCI_CAPABILITY_LIST] = offset;
1098 pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
1099 memset(pdev->used + offset, 0xFF, size);
1100 /* Make capability read-only by default */
1101 memset(pdev->wmask + offset, 0, size);
bd4b65ee
MT
1102 /* Check capability by default */
1103 memset(pdev->cmask + offset, 0xFF, size);
6f4cbd39
MT
1104 return offset;
1105}
1106
1107/* Unlink capability from the pci config space. */
1108void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
1109{
1110 uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev);
1111 if (!offset)
1112 return;
1113 pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT];
1114 /* Make capability writeable again */
1115 memset(pdev->wmask + offset, 0xff, size);
bd4b65ee
MT
1116 /* Clear cmask as device-specific registers can't be checked */
1117 memset(pdev->cmask + offset, 0, size);
6f4cbd39
MT
1118 memset(pdev->used + offset, 0, size);
1119
1120 if (!pdev->config[PCI_CAPABILITY_LIST])
1121 pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST;
1122}
1123
1124/* Reserve space for capability at a known offset (to call after load). */
1125void pci_reserve_capability(PCIDevice *pdev, uint8_t offset, uint8_t size)
1126{
1127 memset(pdev->used + offset, 0xff, size);
1128}
1129
1130uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id)
1131{
1132 return pci_find_capability_list(pdev, cap_id, NULL);
1133}
10c4c98a
GH
1134
1135static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent)
1136{
1137 PCIDevice *d = (PCIDevice *)dev;
1138 const pci_class_desc *desc;
1139 char ctxt[64];
1140 PCIIORegion *r;
1141 int i, class;
1142
b0ff8eb2 1143 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
10c4c98a
GH
1144 desc = pci_class_descriptions;
1145 while (desc->desc && class != desc->class)
1146 desc++;
1147 if (desc->desc) {
1148 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc);
1149 } else {
1150 snprintf(ctxt, sizeof(ctxt), "Class %04x", class);
1151 }
1152
1153 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, "
1154 "pci id %04x:%04x (sub %04x:%04x)\n",
1155 indent, "", ctxt,
e822a52a
IY
1156 d->config[PCI_SECONDARY_BUS],
1157 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn),
b0ff8eb2
IY
1158 pci_get_word(d->config + PCI_VENDOR_ID),
1159 pci_get_word(d->config + PCI_DEVICE_ID),
1160 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID),
1161 pci_get_word(d->config + PCI_SUBSYSTEM_ID));
10c4c98a
GH
1162 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1163 r = &d->io_regions[i];
1164 if (!r->size)
1165 continue;
89e8b13c
IY
1166 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS
1167 " [0x%"FMT_PCIBUS"]\n",
1168 indent, "",
0392a017 1169 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem",
10c4c98a
GH
1170 r->addr, r->addr + r->size - 1);
1171 }
1172}
03587182
GH
1173
1174static PCIDeviceInfo bridge_info = {
1175 .qdev.name = "pci-bridge",
1176 .qdev.size = sizeof(PCIBridge),
1177 .init = pci_bridge_initfn,
e822a52a 1178 .exit = pci_bridge_exitfn,
03587182
GH
1179 .config_write = pci_bridge_write_config,
1180 .qdev.props = (Property[]) {
1181 DEFINE_PROP_HEX32("vendorid", PCIBridge, vid, 0),
1182 DEFINE_PROP_HEX32("deviceid", PCIBridge, did, 0),
1183 DEFINE_PROP_END_OF_LIST(),
1184 }
1185};
1186
1187static void pci_register_devices(void)
1188{
1189 pci_qdev_register(&bridge_info);
1190}
1191
1192device_init(pci_register_devices)