4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include "qemu-objects.h"
34 # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
36 # define PCI_DPRINTF(format, ...) do { } while (0)
42 pci_set_irq_fn set_irq
;
43 pci_map_irq_fn map_irq
;
44 pci_hotplug_fn hotplug
;
46 PCIDevice
*devices
[256];
47 PCIDevice
*parent_dev
;
48 target_phys_addr_t mem_base
;
50 QLIST_HEAD(, PCIBus
) child
; /* this will be replaced by qdev later */
51 QLIST_ENTRY(PCIBus
) sibling
;/* this will be replaced by qdev later */
53 /* The bus IRQ state is the logical OR of the connected devices.
54 Keep a count of the number of devices with raised IRQs. */
59 static void pcibus_dev_print(Monitor
*mon
, DeviceState
*dev
, int indent
);
61 static struct BusInfo pci_bus_info
= {
63 .size
= sizeof(PCIBus
),
64 .print_dev
= pcibus_dev_print
,
65 .props
= (Property
[]) {
66 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice
, devfn
, -1),
67 DEFINE_PROP_STRING("romfile", PCIDevice
, romfile
),
68 DEFINE_PROP_UINT32("rombar", PCIDevice
, rom_bar
, 1),
69 DEFINE_PROP_END_OF_LIST()
73 static void pci_update_mappings(PCIDevice
*d
);
74 static void pci_set_irq(void *opaque
, int irq_num
, int level
);
75 static int pci_add_option_rom(PCIDevice
*pdev
);
77 static uint16_t pci_default_sub_vendor_id
= PCI_SUBVENDOR_ID_REDHAT_QUMRANET
;
78 static uint16_t pci_default_sub_device_id
= PCI_SUBDEVICE_ID_QEMU
;
83 QLIST_ENTRY(PCIHostBus
) next
;
85 static QLIST_HEAD(, PCIHostBus
) host_buses
;
87 static const VMStateDescription vmstate_pcibus
= {
90 .minimum_version_id
= 1,
91 .minimum_version_id_old
= 1,
92 .fields
= (VMStateField
[]) {
93 VMSTATE_INT32_EQUAL(nirq
, PCIBus
),
94 VMSTATE_VARRAY_INT32(irq_count
, PCIBus
, nirq
, 0, vmstate_info_int32
, int32_t),
99 static int pci_bar(PCIDevice
*d
, int reg
)
103 if (reg
!= PCI_ROM_SLOT
)
104 return PCI_BASE_ADDRESS_0
+ reg
* 4;
106 type
= d
->config
[PCI_HEADER_TYPE
] & ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
107 return type
== PCI_HEADER_TYPE_BRIDGE
? PCI_ROM_ADDRESS1
: PCI_ROM_ADDRESS
;
110 static inline int pci_irq_state(PCIDevice
*d
, int irq_num
)
112 return (d
->irq_state
>> irq_num
) & 0x1;
115 static inline void pci_set_irq_state(PCIDevice
*d
, int irq_num
, int level
)
117 d
->irq_state
&= ~(0x1 << irq_num
);
118 d
->irq_state
|= level
<< irq_num
;
121 static void pci_change_irq_level(PCIDevice
*pci_dev
, int irq_num
, int change
)
126 irq_num
= bus
->map_irq(pci_dev
, irq_num
);
129 pci_dev
= bus
->parent_dev
;
131 bus
->irq_count
[irq_num
] += change
;
132 bus
->set_irq(bus
->irq_opaque
, irq_num
, bus
->irq_count
[irq_num
] != 0);
135 /* Update interrupt status bit in config space on interrupt
137 static void pci_update_irq_status(PCIDevice
*dev
)
139 if (dev
->irq_state
) {
140 dev
->config
[PCI_STATUS
] |= PCI_STATUS_INTERRUPT
;
142 dev
->config
[PCI_STATUS
] &= ~PCI_STATUS_INTERRUPT
;
146 static void pci_device_reset(PCIDevice
*dev
)
151 pci_update_irq_status(dev
);
152 dev
->config
[PCI_COMMAND
] &= ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
|
154 dev
->config
[PCI_CACHE_LINE_SIZE
] = 0x0;
155 dev
->config
[PCI_INTERRUPT_LINE
] = 0x0;
156 for (r
= 0; r
< PCI_NUM_REGIONS
; ++r
) {
157 if (!dev
->io_regions
[r
].size
) {
160 pci_set_long(dev
->config
+ pci_bar(dev
, r
), dev
->io_regions
[r
].type
);
162 pci_update_mappings(dev
);
165 static void pci_bus_reset(void *opaque
)
167 PCIBus
*bus
= opaque
;
170 for (i
= 0; i
< bus
->nirq
; i
++) {
171 bus
->irq_count
[i
] = 0;
173 for (i
= 0; i
< ARRAY_SIZE(bus
->devices
); ++i
) {
174 if (bus
->devices
[i
]) {
175 pci_device_reset(bus
->devices
[i
]);
180 static void pci_host_bus_register(int domain
, PCIBus
*bus
)
182 struct PCIHostBus
*host
;
183 host
= qemu_mallocz(sizeof(*host
));
184 host
->domain
= domain
;
186 QLIST_INSERT_HEAD(&host_buses
, host
, next
);
189 PCIBus
*pci_find_root_bus(int domain
)
191 struct PCIHostBus
*host
;
193 QLIST_FOREACH(host
, &host_buses
, next
) {
194 if (host
->domain
== domain
) {
202 void pci_bus_new_inplace(PCIBus
*bus
, DeviceState
*parent
,
203 const char *name
, int devfn_min
)
205 qbus_create_inplace(&bus
->qbus
, &pci_bus_info
, parent
, name
);
206 bus
->devfn_min
= devfn_min
;
209 QLIST_INIT(&bus
->child
);
210 pci_host_bus_register(0, bus
); /* for now only pci domain 0 is supported */
212 vmstate_register(-1, &vmstate_pcibus
, bus
);
213 qemu_register_reset(pci_bus_reset
, bus
);
216 PCIBus
*pci_bus_new(DeviceState
*parent
, const char *name
, int devfn_min
)
220 bus
= qemu_mallocz(sizeof(*bus
));
221 bus
->qbus
.qdev_allocated
= 1;
222 pci_bus_new_inplace(bus
, parent
, name
, devfn_min
);
226 void pci_bus_irqs(PCIBus
*bus
, pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
227 void *irq_opaque
, int nirq
)
229 bus
->set_irq
= set_irq
;
230 bus
->map_irq
= map_irq
;
231 bus
->irq_opaque
= irq_opaque
;
233 bus
->irq_count
= qemu_mallocz(nirq
* sizeof(bus
->irq_count
[0]));
236 void pci_bus_hotplug(PCIBus
*bus
, pci_hotplug_fn hotplug
)
238 bus
->qbus
.allow_hotplug
= 1;
239 bus
->hotplug
= hotplug
;
242 void pci_bus_set_mem_base(PCIBus
*bus
, target_phys_addr_t base
)
244 bus
->mem_base
= base
;
247 PCIBus
*pci_register_bus(DeviceState
*parent
, const char *name
,
248 pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
249 void *irq_opaque
, int devfn_min
, int nirq
)
253 bus
= pci_bus_new(parent
, name
, devfn_min
);
254 pci_bus_irqs(bus
, set_irq
, map_irq
, irq_opaque
, nirq
);
258 static void pci_register_secondary_bus(PCIBus
*parent
,
261 pci_map_irq_fn map_irq
,
264 qbus_create_inplace(&bus
->qbus
, &pci_bus_info
, &dev
->qdev
, name
);
265 bus
->map_irq
= map_irq
;
266 bus
->parent_dev
= dev
;
268 QLIST_INIT(&bus
->child
);
269 QLIST_INSERT_HEAD(&parent
->child
, bus
, sibling
);
272 static void pci_unregister_secondary_bus(PCIBus
*bus
)
274 assert(QLIST_EMPTY(&bus
->child
));
275 QLIST_REMOVE(bus
, sibling
);
278 int pci_bus_num(PCIBus
*s
)
281 return 0; /* pci host bridge */
282 return s
->parent_dev
->config
[PCI_SECONDARY_BUS
];
285 static int get_pci_config_device(QEMUFile
*f
, void *pv
, size_t size
)
287 PCIDevice
*s
= container_of(pv
, PCIDevice
, config
);
291 assert(size
== pci_config_size(s
));
292 config
= qemu_malloc(size
);
294 qemu_get_buffer(f
, config
, size
);
295 for (i
= 0; i
< size
; ++i
) {
296 if ((config
[i
] ^ s
->config
[i
]) & s
->cmask
[i
] & ~s
->wmask
[i
]) {
301 memcpy(s
->config
, config
, size
);
303 pci_update_mappings(s
);
309 /* just put buffer */
310 static void put_pci_config_device(QEMUFile
*f
, void *pv
, size_t size
)
312 const uint8_t **v
= pv
;
313 assert(size
== pci_config_size(container_of(pv
, PCIDevice
, config
)));
314 qemu_put_buffer(f
, *v
, size
);
317 static VMStateInfo vmstate_info_pci_config
= {
318 .name
= "pci config",
319 .get
= get_pci_config_device
,
320 .put
= put_pci_config_device
,
323 static int get_pci_irq_state(QEMUFile
*f
, void *pv
, size_t size
)
325 PCIDevice
*s
= container_of(pv
, PCIDevice
, config
);
326 uint32_t irq_state
[PCI_NUM_PINS
];
328 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
329 irq_state
[i
] = qemu_get_be32(f
);
330 if (irq_state
[i
] != 0x1 && irq_state
[i
] != 0) {
331 fprintf(stderr
, "irq state %d: must be 0 or 1.\n",
337 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
338 pci_set_irq_state(s
, i
, irq_state
[i
]);
344 static void put_pci_irq_state(QEMUFile
*f
, void *pv
, size_t size
)
347 PCIDevice
*s
= container_of(pv
, PCIDevice
, config
);
349 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
350 qemu_put_be32(f
, pci_irq_state(s
, i
));
354 static VMStateInfo vmstate_info_pci_irq_state
= {
355 .name
= "pci irq state",
356 .get
= get_pci_irq_state
,
357 .put
= put_pci_irq_state
,
360 const VMStateDescription vmstate_pci_device
= {
363 .minimum_version_id
= 1,
364 .minimum_version_id_old
= 1,
365 .fields
= (VMStateField
[]) {
366 VMSTATE_INT32_LE(version_id
, PCIDevice
),
367 VMSTATE_BUFFER_UNSAFE_INFO(config
, PCIDevice
, 0,
368 vmstate_info_pci_config
,
369 PCI_CONFIG_SPACE_SIZE
),
370 VMSTATE_BUFFER_UNSAFE_INFO(irq_state
, PCIDevice
, 2,
371 vmstate_info_pci_irq_state
,
372 PCI_NUM_PINS
* sizeof(int32_t)),
373 VMSTATE_END_OF_LIST()
377 const VMStateDescription vmstate_pcie_device
= {
380 .minimum_version_id
= 1,
381 .minimum_version_id_old
= 1,
382 .fields
= (VMStateField
[]) {
383 VMSTATE_INT32_LE(version_id
, PCIDevice
),
384 VMSTATE_BUFFER_UNSAFE_INFO(config
, PCIDevice
, 0,
385 vmstate_info_pci_config
,
386 PCIE_CONFIG_SPACE_SIZE
),
387 VMSTATE_BUFFER_UNSAFE_INFO(irq_state
, PCIDevice
, 2,
388 vmstate_info_pci_irq_state
,
389 PCI_NUM_PINS
* sizeof(int32_t)),
390 VMSTATE_END_OF_LIST()
394 static inline const VMStateDescription
*pci_get_vmstate(PCIDevice
*s
)
396 return pci_is_express(s
) ? &vmstate_pcie_device
: &vmstate_pci_device
;
399 void pci_device_save(PCIDevice
*s
, QEMUFile
*f
)
401 /* Clear interrupt status bit: it is implicit
402 * in irq_state which we are saving.
403 * This makes us compatible with old devices
404 * which never set or clear this bit. */
405 s
->config
[PCI_STATUS
] &= ~PCI_STATUS_INTERRUPT
;
406 vmstate_save_state(f
, pci_get_vmstate(s
), s
);
407 /* Restore the interrupt status bit. */
408 pci_update_irq_status(s
);
411 int pci_device_load(PCIDevice
*s
, QEMUFile
*f
)
414 ret
= vmstate_load_state(f
, pci_get_vmstate(s
), s
, s
->version_id
);
415 /* Restore the interrupt status bit. */
416 pci_update_irq_status(s
);
420 static int pci_set_default_subsystem_id(PCIDevice
*pci_dev
)
424 id
= (void*)(&pci_dev
->config
[PCI_SUBSYSTEM_VENDOR_ID
]);
425 id
[0] = cpu_to_le16(pci_default_sub_vendor_id
);
426 id
[1] = cpu_to_le16(pci_default_sub_device_id
);
431 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error
433 static int pci_parse_devaddr(const char *addr
, int *domp
, int *busp
, unsigned *slotp
)
438 unsigned long dom
= 0, bus
= 0;
442 val
= strtoul(p
, &e
, 16);
448 val
= strtoul(p
, &e
, 16);
455 val
= strtoul(p
, &e
, 16);
461 if (dom
> 0xffff || bus
> 0xff || val
> 0x1f)
469 /* Note: QEMU doesn't implement domains other than 0 */
470 if (!pci_find_bus(pci_find_root_bus(dom
), bus
))
479 int pci_read_devaddr(Monitor
*mon
, const char *addr
, int *domp
, int *busp
,
482 /* strip legacy tag */
483 if (!strncmp(addr
, "pci_addr=", 9)) {
486 if (pci_parse_devaddr(addr
, domp
, busp
, slotp
)) {
487 monitor_printf(mon
, "Invalid pci address\n");
493 PCIBus
*pci_get_bus_devfn(int *devfnp
, const char *devaddr
)
500 return pci_find_bus(pci_find_root_bus(0), 0);
503 if (pci_parse_devaddr(devaddr
, &dom
, &bus
, &slot
) < 0) {
508 return pci_find_bus(pci_find_root_bus(0), bus
);
511 static void pci_init_cmask(PCIDevice
*dev
)
513 pci_set_word(dev
->cmask
+ PCI_VENDOR_ID
, 0xffff);
514 pci_set_word(dev
->cmask
+ PCI_DEVICE_ID
, 0xffff);
515 dev
->cmask
[PCI_STATUS
] = PCI_STATUS_CAP_LIST
;
516 dev
->cmask
[PCI_REVISION_ID
] = 0xff;
517 dev
->cmask
[PCI_CLASS_PROG
] = 0xff;
518 pci_set_word(dev
->cmask
+ PCI_CLASS_DEVICE
, 0xffff);
519 dev
->cmask
[PCI_HEADER_TYPE
] = 0xff;
520 dev
->cmask
[PCI_CAPABILITY_LIST
] = 0xff;
523 static void pci_init_wmask(PCIDevice
*dev
)
525 int config_size
= pci_config_size(dev
);
527 dev
->wmask
[PCI_CACHE_LINE_SIZE
] = 0xff;
528 dev
->wmask
[PCI_INTERRUPT_LINE
] = 0xff;
529 pci_set_word(dev
->wmask
+ PCI_COMMAND
,
530 PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
531 PCI_COMMAND_INTX_DISABLE
);
533 memset(dev
->wmask
+ PCI_CONFIG_HEADER_SIZE
, 0xff,
534 config_size
- PCI_CONFIG_HEADER_SIZE
);
537 static void pci_init_wmask_bridge(PCIDevice
*d
)
539 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and
540 PCI_SEC_LETENCY_TIMER */
541 memset(d
->wmask
+ PCI_PRIMARY_BUS
, 0xff, 4);
544 d
->wmask
[PCI_IO_BASE
] = PCI_IO_RANGE_MASK
& 0xff;
545 d
->wmask
[PCI_IO_LIMIT
] = PCI_IO_RANGE_MASK
& 0xff;
546 pci_set_word(d
->wmask
+ PCI_MEMORY_BASE
,
547 PCI_MEMORY_RANGE_MASK
& 0xffff);
548 pci_set_word(d
->wmask
+ PCI_MEMORY_LIMIT
,
549 PCI_MEMORY_RANGE_MASK
& 0xffff);
550 pci_set_word(d
->wmask
+ PCI_PREF_MEMORY_BASE
,
551 PCI_PREF_RANGE_MASK
& 0xffff);
552 pci_set_word(d
->wmask
+ PCI_PREF_MEMORY_LIMIT
,
553 PCI_PREF_RANGE_MASK
& 0xffff);
555 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */
556 memset(d
->wmask
+ PCI_PREF_BASE_UPPER32
, 0xff, 8);
558 pci_set_word(d
->wmask
+ PCI_BRIDGE_CONTROL
, 0xffff);
561 static void pci_config_alloc(PCIDevice
*pci_dev
)
563 int config_size
= pci_config_size(pci_dev
);
565 pci_dev
->config
= qemu_mallocz(config_size
);
566 pci_dev
->cmask
= qemu_mallocz(config_size
);
567 pci_dev
->wmask
= qemu_mallocz(config_size
);
568 pci_dev
->used
= qemu_mallocz(config_size
);
571 static void pci_config_free(PCIDevice
*pci_dev
)
573 qemu_free(pci_dev
->config
);
574 qemu_free(pci_dev
->cmask
);
575 qemu_free(pci_dev
->wmask
);
576 qemu_free(pci_dev
->used
);
579 /* -1 for devfn means auto assign */
580 static PCIDevice
*do_pci_register_device(PCIDevice
*pci_dev
, PCIBus
*bus
,
581 const char *name
, int devfn
,
582 PCIConfigReadFunc
*config_read
,
583 PCIConfigWriteFunc
*config_write
,
587 for(devfn
= bus
->devfn_min
; devfn
< ARRAY_SIZE(bus
->devices
);
589 if (!bus
->devices
[devfn
])
592 error_report("PCI: no devfn available for %s, all in use", name
);
595 } else if (bus
->devices
[devfn
]) {
596 error_report("PCI: devfn %d not available for %s, in use by %s",
597 devfn
, name
, bus
->devices
[devfn
]->name
);
601 pci_dev
->devfn
= devfn
;
602 pstrcpy(pci_dev
->name
, sizeof(pci_dev
->name
), name
);
603 pci_dev
->irq_state
= 0;
604 pci_config_alloc(pci_dev
);
606 header_type
&= ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
607 if (header_type
== PCI_HEADER_TYPE_NORMAL
) {
608 pci_set_default_subsystem_id(pci_dev
);
610 pci_init_cmask(pci_dev
);
611 pci_init_wmask(pci_dev
);
612 if (header_type
== PCI_HEADER_TYPE_BRIDGE
) {
613 pci_init_wmask_bridge(pci_dev
);
617 config_read
= pci_default_read_config
;
619 config_write
= pci_default_write_config
;
620 pci_dev
->config_read
= config_read
;
621 pci_dev
->config_write
= config_write
;
622 bus
->devices
[devfn
] = pci_dev
;
623 pci_dev
->irq
= qemu_allocate_irqs(pci_set_irq
, pci_dev
, PCI_NUM_PINS
);
624 pci_dev
->version_id
= 2; /* Current pci device vmstate version */
628 PCIDevice
*pci_register_device(PCIBus
*bus
, const char *name
,
629 int instance_size
, int devfn
,
630 PCIConfigReadFunc
*config_read
,
631 PCIConfigWriteFunc
*config_write
)
635 pci_dev
= qemu_mallocz(instance_size
);
636 pci_dev
= do_pci_register_device(pci_dev
, bus
, name
, devfn
,
637 config_read
, config_write
,
638 PCI_HEADER_TYPE_NORMAL
);
639 if (pci_dev
== NULL
) {
640 hw_error("PCI: can't register device\n");
645 static target_phys_addr_t
pci_to_cpu_addr(PCIBus
*bus
,
646 target_phys_addr_t addr
)
648 return addr
+ bus
->mem_base
;
651 static void pci_unregister_io_regions(PCIDevice
*pci_dev
)
656 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
657 r
= &pci_dev
->io_regions
[i
];
658 if (!r
->size
|| r
->addr
== PCI_BAR_UNMAPPED
)
660 if (r
->type
== PCI_BASE_ADDRESS_SPACE_IO
) {
661 isa_unassign_ioport(r
->addr
, r
->filtered_size
);
663 cpu_register_physical_memory(pci_to_cpu_addr(pci_dev
->bus
,
671 static int pci_unregister_device(DeviceState
*dev
)
673 PCIDevice
*pci_dev
= DO_UPCAST(PCIDevice
, qdev
, dev
);
674 PCIDeviceInfo
*info
= DO_UPCAST(PCIDeviceInfo
, qdev
, dev
->info
);
678 ret
= info
->exit(pci_dev
);
682 pci_unregister_io_regions(pci_dev
);
684 qemu_free_irqs(pci_dev
->irq
);
685 pci_dev
->bus
->devices
[pci_dev
->devfn
] = NULL
;
686 pci_config_free(pci_dev
);
690 void pci_register_bar(PCIDevice
*pci_dev
, int region_num
,
691 pcibus_t size
, int type
,
692 PCIMapIORegionFunc
*map_func
)
698 if ((unsigned int)region_num
>= PCI_NUM_REGIONS
)
701 if (size
& (size
-1)) {
702 fprintf(stderr
, "ERROR: PCI region size must be pow2 "
703 "type=0x%x, size=0x%"FMT_PCIBUS
"\n", type
, size
);
707 r
= &pci_dev
->io_regions
[region_num
];
708 r
->addr
= PCI_BAR_UNMAPPED
;
710 r
->filtered_size
= size
;
712 r
->map_func
= map_func
;
715 addr
= pci_bar(pci_dev
, region_num
);
716 if (region_num
== PCI_ROM_SLOT
) {
717 /* ROM enable bit is writeable */
718 wmask
|= PCI_ROM_ADDRESS_ENABLE
;
720 pci_set_long(pci_dev
->config
+ addr
, type
);
721 if (!(r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) &&
722 r
->type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) {
723 pci_set_quad(pci_dev
->wmask
+ addr
, wmask
);
724 pci_set_quad(pci_dev
->cmask
+ addr
, ~0ULL);
726 pci_set_long(pci_dev
->wmask
+ addr
, wmask
& 0xffffffff);
727 pci_set_long(pci_dev
->cmask
+ addr
, 0xffffffff);
731 static uint32_t pci_config_get_io_base(PCIDevice
*d
,
732 uint32_t base
, uint32_t base_upper16
)
736 val
= ((uint32_t)d
->config
[base
] & PCI_IO_RANGE_MASK
) << 8;
737 if (d
->config
[base
] & PCI_IO_RANGE_TYPE_32
) {
738 val
|= (uint32_t)pci_get_word(d
->config
+ base_upper16
) << 16;
743 static pcibus_t
pci_config_get_memory_base(PCIDevice
*d
, uint32_t base
)
745 return ((pcibus_t
)pci_get_word(d
->config
+ base
) & PCI_MEMORY_RANGE_MASK
)
749 static pcibus_t
pci_config_get_pref_base(PCIDevice
*d
,
750 uint32_t base
, uint32_t upper
)
755 tmp
= (pcibus_t
)pci_get_word(d
->config
+ base
);
756 val
= (tmp
& PCI_PREF_RANGE_MASK
) << 16;
757 if (tmp
& PCI_PREF_RANGE_TYPE_64
) {
758 val
|= (pcibus_t
)pci_get_long(d
->config
+ upper
) << 32;
763 static pcibus_t
pci_bridge_get_base(PCIDevice
*bridge
, uint8_t type
)
766 if (type
& PCI_BASE_ADDRESS_SPACE_IO
) {
767 base
= pci_config_get_io_base(bridge
,
768 PCI_IO_BASE
, PCI_IO_BASE_UPPER16
);
770 if (type
& PCI_BASE_ADDRESS_MEM_PREFETCH
) {
771 base
= pci_config_get_pref_base(
772 bridge
, PCI_PREF_MEMORY_BASE
, PCI_PREF_BASE_UPPER32
);
774 base
= pci_config_get_memory_base(bridge
, PCI_MEMORY_BASE
);
781 static pcibus_t
pci_bridge_get_limit(PCIDevice
*bridge
, uint8_t type
)
784 if (type
& PCI_BASE_ADDRESS_SPACE_IO
) {
785 limit
= pci_config_get_io_base(bridge
,
786 PCI_IO_LIMIT
, PCI_IO_LIMIT_UPPER16
);
787 limit
|= 0xfff; /* PCI bridge spec 3.2.5.6. */
789 if (type
& PCI_BASE_ADDRESS_MEM_PREFETCH
) {
790 limit
= pci_config_get_pref_base(
791 bridge
, PCI_PREF_MEMORY_LIMIT
, PCI_PREF_LIMIT_UPPER32
);
793 limit
= pci_config_get_memory_base(bridge
, PCI_MEMORY_LIMIT
);
795 limit
|= 0xfffff; /* PCI bridge spec 3.2.5.{1, 8}. */
800 static void pci_bridge_filter(PCIDevice
*d
, pcibus_t
*addr
, pcibus_t
*size
,
803 pcibus_t base
= *addr
;
804 pcibus_t limit
= *addr
+ *size
- 1;
807 for (br
= d
->bus
->parent_dev
; br
; br
= br
->bus
->parent_dev
) {
808 uint16_t cmd
= pci_get_word(d
->config
+ PCI_COMMAND
);
810 if (type
& PCI_BASE_ADDRESS_SPACE_IO
) {
811 if (!(cmd
& PCI_COMMAND_IO
)) {
815 if (!(cmd
& PCI_COMMAND_MEMORY
)) {
820 base
= MAX(base
, pci_bridge_get_base(br
, type
));
821 limit
= MIN(limit
, pci_bridge_get_limit(br
, type
));
828 *size
= limit
- base
+ 1;
831 *addr
= PCI_BAR_UNMAPPED
;
835 static pcibus_t
pci_bar_address(PCIDevice
*d
,
836 int reg
, uint8_t type
, pcibus_t size
)
838 pcibus_t new_addr
, last_addr
;
839 int bar
= pci_bar(d
, reg
);
840 uint16_t cmd
= pci_get_word(d
->config
+ PCI_COMMAND
);
842 if (type
& PCI_BASE_ADDRESS_SPACE_IO
) {
843 if (!(cmd
& PCI_COMMAND_IO
)) {
844 return PCI_BAR_UNMAPPED
;
846 new_addr
= pci_get_long(d
->config
+ bar
) & ~(size
- 1);
847 last_addr
= new_addr
+ size
- 1;
848 /* NOTE: we have only 64K ioports on PC */
849 if (last_addr
<= new_addr
|| new_addr
== 0 || last_addr
> UINT16_MAX
) {
850 return PCI_BAR_UNMAPPED
;
855 if (!(cmd
& PCI_COMMAND_MEMORY
)) {
856 return PCI_BAR_UNMAPPED
;
858 if (type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) {
859 new_addr
= pci_get_quad(d
->config
+ bar
);
861 new_addr
= pci_get_long(d
->config
+ bar
);
863 /* the ROM slot has a specific enable bit */
864 if (reg
== PCI_ROM_SLOT
&& !(new_addr
& PCI_ROM_ADDRESS_ENABLE
)) {
865 return PCI_BAR_UNMAPPED
;
867 new_addr
&= ~(size
- 1);
868 last_addr
= new_addr
+ size
- 1;
869 /* NOTE: we do not support wrapping */
870 /* XXX: as we cannot support really dynamic
871 mappings, we handle specific values as invalid
873 if (last_addr
<= new_addr
|| new_addr
== 0 ||
874 last_addr
== PCI_BAR_UNMAPPED
) {
875 return PCI_BAR_UNMAPPED
;
878 /* Now pcibus_t is 64bit.
879 * Check if 32 bit BAR wraps around explicitly.
880 * Without this, PC ide doesn't work well.
881 * TODO: remove this work around.
883 if (!(type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) && last_addr
>= UINT32_MAX
) {
884 return PCI_BAR_UNMAPPED
;
888 * OS is allowed to set BAR beyond its addressable
889 * bits. For example, 32 bit OS can set 64bit bar
890 * to >4G. Check it. TODO: we might need to support
891 * it in the future for e.g. PAE.
893 if (last_addr
>= TARGET_PHYS_ADDR_MAX
) {
894 return PCI_BAR_UNMAPPED
;
900 static void pci_update_mappings(PCIDevice
*d
)
904 pcibus_t new_addr
, filtered_size
;
906 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
907 r
= &d
->io_regions
[i
];
909 /* this region isn't registered */
913 new_addr
= pci_bar_address(d
, i
, r
->type
, r
->size
);
915 /* bridge filtering */
916 filtered_size
= r
->size
;
917 if (new_addr
!= PCI_BAR_UNMAPPED
) {
918 pci_bridge_filter(d
, &new_addr
, &filtered_size
, r
->type
);
921 /* This bar isn't changed */
922 if (new_addr
== r
->addr
&& filtered_size
== r
->filtered_size
)
925 /* now do the real mapping */
926 if (r
->addr
!= PCI_BAR_UNMAPPED
) {
927 if (r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) {
929 /* NOTE: specific hack for IDE in PC case:
930 only one byte must be mapped. */
931 class = pci_get_word(d
->config
+ PCI_CLASS_DEVICE
);
932 if (class == 0x0101 && r
->size
== 4) {
933 isa_unassign_ioport(r
->addr
+ 2, 1);
935 isa_unassign_ioport(r
->addr
, r
->filtered_size
);
938 cpu_register_physical_memory(pci_to_cpu_addr(d
->bus
, r
->addr
),
941 qemu_unregister_coalesced_mmio(r
->addr
, r
->filtered_size
);
945 r
->filtered_size
= filtered_size
;
946 if (r
->addr
!= PCI_BAR_UNMAPPED
) {
948 * TODO: currently almost all the map funcions assumes
949 * filtered_size == size and addr & ~(size - 1) == addr.
950 * However with bridge filtering, they aren't always true.
951 * Teach them such cases, such that filtered_size < size and
952 * addr & (size - 1) != 0.
954 if (r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) {
955 r
->map_func(d
, i
, r
->addr
, r
->filtered_size
, r
->type
);
957 r
->map_func(d
, i
, pci_to_cpu_addr(d
->bus
, r
->addr
),
958 r
->filtered_size
, r
->type
);
964 static inline int pci_irq_disabled(PCIDevice
*d
)
966 return pci_get_word(d
->config
+ PCI_COMMAND
) & PCI_COMMAND_INTX_DISABLE
;
969 /* Called after interrupt disabled field update in config space,
970 * assert/deassert interrupts if necessary.
971 * Gets original interrupt disable bit value (before update). */
972 static void pci_update_irq_disabled(PCIDevice
*d
, int was_irq_disabled
)
974 int i
, disabled
= pci_irq_disabled(d
);
975 if (disabled
== was_irq_disabled
)
977 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
978 int state
= pci_irq_state(d
, i
);
979 pci_change_irq_level(d
, i
, disabled
? -state
: state
);
983 uint32_t pci_default_read_config(PCIDevice
*d
,
984 uint32_t address
, int len
)
987 assert(len
== 1 || len
== 2 || len
== 4);
988 len
= MIN(len
, pci_config_size(d
) - address
);
989 memcpy(&val
, d
->config
+ address
, len
);
990 return le32_to_cpu(val
);
993 void pci_default_write_config(PCIDevice
*d
, uint32_t addr
, uint32_t val
, int l
)
995 int i
, was_irq_disabled
= pci_irq_disabled(d
);
996 uint32_t config_size
= pci_config_size(d
);
998 for (i
= 0; i
< l
&& addr
+ i
< config_size
; val
>>= 8, ++i
) {
999 uint8_t wmask
= d
->wmask
[addr
+ i
];
1000 d
->config
[addr
+ i
] = (d
->config
[addr
+ i
] & ~wmask
) | (val
& wmask
);
1002 if (ranges_overlap(addr
, l
, PCI_BASE_ADDRESS_0
, 24) ||
1003 ranges_overlap(addr
, l
, PCI_ROM_ADDRESS
, 4) ||
1004 ranges_overlap(addr
, l
, PCI_ROM_ADDRESS1
, 4) ||
1005 range_covers_byte(addr
, l
, PCI_COMMAND
))
1006 pci_update_mappings(d
);
1008 if (range_covers_byte(addr
, l
, PCI_COMMAND
))
1009 pci_update_irq_disabled(d
, was_irq_disabled
);
1012 /***********************************************************/
1013 /* generic PCI irq support */
1015 /* 0 <= irq_num <= 3. level must be 0 or 1 */
1016 static void pci_set_irq(void *opaque
, int irq_num
, int level
)
1018 PCIDevice
*pci_dev
= opaque
;
1021 change
= level
- pci_irq_state(pci_dev
, irq_num
);
1025 pci_set_irq_state(pci_dev
, irq_num
, level
);
1026 pci_update_irq_status(pci_dev
);
1027 if (pci_irq_disabled(pci_dev
))
1029 pci_change_irq_level(pci_dev
, irq_num
, change
);
1032 /***********************************************************/
1033 /* monitor info on PCI */
1040 static const pci_class_desc pci_class_descriptions
[] =
1042 { 0x0100, "SCSI controller"},
1043 { 0x0101, "IDE controller"},
1044 { 0x0102, "Floppy controller"},
1045 { 0x0103, "IPI controller"},
1046 { 0x0104, "RAID controller"},
1047 { 0x0106, "SATA controller"},
1048 { 0x0107, "SAS controller"},
1049 { 0x0180, "Storage controller"},
1050 { 0x0200, "Ethernet controller"},
1051 { 0x0201, "Token Ring controller"},
1052 { 0x0202, "FDDI controller"},
1053 { 0x0203, "ATM controller"},
1054 { 0x0280, "Network controller"},
1055 { 0x0300, "VGA controller"},
1056 { 0x0301, "XGA controller"},
1057 { 0x0302, "3D controller"},
1058 { 0x0380, "Display controller"},
1059 { 0x0400, "Video controller"},
1060 { 0x0401, "Audio controller"},
1062 { 0x0480, "Multimedia controller"},
1063 { 0x0500, "RAM controller"},
1064 { 0x0501, "Flash controller"},
1065 { 0x0580, "Memory controller"},
1066 { 0x0600, "Host bridge"},
1067 { 0x0601, "ISA bridge"},
1068 { 0x0602, "EISA bridge"},
1069 { 0x0603, "MC bridge"},
1070 { 0x0604, "PCI bridge"},
1071 { 0x0605, "PCMCIA bridge"},
1072 { 0x0606, "NUBUS bridge"},
1073 { 0x0607, "CARDBUS bridge"},
1074 { 0x0608, "RACEWAY bridge"},
1075 { 0x0680, "Bridge"},
1076 { 0x0c03, "USB controller"},
1080 static void pci_for_each_device_under_bus(PCIBus
*bus
,
1081 void (*fn
)(PCIBus
*b
, PCIDevice
*d
))
1086 for(devfn
= 0; devfn
< ARRAY_SIZE(bus
->devices
); devfn
++) {
1087 d
= bus
->devices
[devfn
];
1094 void pci_for_each_device(PCIBus
*bus
, int bus_num
,
1095 void (*fn
)(PCIBus
*b
, PCIDevice
*d
))
1097 bus
= pci_find_bus(bus
, bus_num
);
1100 pci_for_each_device_under_bus(bus
, fn
);
1104 static void pci_device_print(Monitor
*mon
, QDict
*device
)
1108 uint64_t addr
, size
;
1110 monitor_printf(mon
, " Bus %2" PRId64
", ", qdict_get_int(device
, "bus"));
1111 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
1112 qdict_get_int(device
, "slot"),
1113 qdict_get_int(device
, "function"));
1114 monitor_printf(mon
, " ");
1116 qdict
= qdict_get_qdict(device
, "class_info");
1117 if (qdict_haskey(qdict
, "desc")) {
1118 monitor_printf(mon
, "%s", qdict_get_str(qdict
, "desc"));
1120 monitor_printf(mon
, "Class %04" PRId64
, qdict_get_int(qdict
, "class"));
1123 qdict
= qdict_get_qdict(device
, "id");
1124 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
1125 qdict_get_int(qdict
, "device"),
1126 qdict_get_int(qdict
, "vendor"));
1128 if (qdict_haskey(device
, "irq")) {
1129 monitor_printf(mon
, " IRQ %" PRId64
".\n",
1130 qdict_get_int(device
, "irq"));
1133 if (qdict_haskey(device
, "pci_bridge")) {
1136 qdict
= qdict_get_qdict(device
, "pci_bridge");
1138 info
= qdict_get_qdict(qdict
, "bus");
1139 monitor_printf(mon
, " BUS %" PRId64
".\n",
1140 qdict_get_int(info
, "number"));
1141 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
1142 qdict_get_int(info
, "secondary"));
1143 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
1144 qdict_get_int(info
, "subordinate"));
1146 info
= qdict_get_qdict(qdict
, "io_range");
1147 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
1148 qdict_get_int(info
, "base"),
1149 qdict_get_int(info
, "limit"));
1151 info
= qdict_get_qdict(qdict
, "memory_range");
1153 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
1154 qdict_get_int(info
, "base"),
1155 qdict_get_int(info
, "limit"));
1157 info
= qdict_get_qdict(qdict
, "prefetchable_range");
1158 monitor_printf(mon
, " prefetchable memory range "
1159 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
1160 qdict_get_int(info
, "base"),
1161 qdict_get_int(info
, "limit"));
1164 QLIST_FOREACH_ENTRY(qdict_get_qlist(device
, "regions"), entry
) {
1165 qdict
= qobject_to_qdict(qlist_entry_obj(entry
));
1166 monitor_printf(mon
, " BAR%d: ", (int) qdict_get_int(qdict
, "bar"));
1168 addr
= qdict_get_int(qdict
, "address");
1169 size
= qdict_get_int(qdict
, "size");
1171 if (!strcmp(qdict_get_str(qdict
, "type"), "io")) {
1172 monitor_printf(mon
, "I/O at 0x%04"FMT_PCIBUS
1173 " [0x%04"FMT_PCIBUS
"].\n",
1174 addr
, addr
+ size
- 1);
1176 monitor_printf(mon
, "%d bit%s memory at 0x%08"FMT_PCIBUS
1177 " [0x%08"FMT_PCIBUS
"].\n",
1178 qdict_get_bool(qdict
, "mem_type_64") ? 64 : 32,
1179 qdict_get_bool(qdict
, "prefetch") ?
1180 " prefetchable" : "", addr
, addr
+ size
- 1);
1184 monitor_printf(mon
, " id \"%s\"\n", qdict_get_str(device
, "qdev_id"));
1186 if (qdict_haskey(device
, "pci_bridge")) {
1187 qdict
= qdict_get_qdict(device
, "pci_bridge");
1188 if (qdict_haskey(qdict
, "devices")) {
1190 QLIST_FOREACH_ENTRY(qdict_get_qlist(qdict
, "devices"), dev
) {
1191 pci_device_print(mon
, qobject_to_qdict(qlist_entry_obj(dev
)));
1197 void do_pci_info_print(Monitor
*mon
, const QObject
*data
)
1199 QListEntry
*bus
, *dev
;
1201 QLIST_FOREACH_ENTRY(qobject_to_qlist(data
), bus
) {
1202 QDict
*qdict
= qobject_to_qdict(qlist_entry_obj(bus
));
1203 QLIST_FOREACH_ENTRY(qdict_get_qlist(qdict
, "devices"), dev
) {
1204 pci_device_print(mon
, qobject_to_qdict(qlist_entry_obj(dev
)));
1209 static QObject
*pci_get_dev_class(const PCIDevice
*dev
)
1212 const pci_class_desc
*desc
;
1214 class = pci_get_word(dev
->config
+ PCI_CLASS_DEVICE
);
1215 desc
= pci_class_descriptions
;
1216 while (desc
->desc
&& class != desc
->class)
1220 return qobject_from_jsonf("{ 'desc': %s, 'class': %d }",
1223 return qobject_from_jsonf("{ 'class': %d }", class);
1227 static QObject
*pci_get_dev_id(const PCIDevice
*dev
)
1229 return qobject_from_jsonf("{ 'device': %d, 'vendor': %d }",
1230 pci_get_word(dev
->config
+ PCI_VENDOR_ID
),
1231 pci_get_word(dev
->config
+ PCI_DEVICE_ID
));
1234 static QObject
*pci_get_regions_list(const PCIDevice
*dev
)
1237 QList
*regions_list
;
1239 regions_list
= qlist_new();
1241 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
1243 const PCIIORegion
*r
= &dev
->io_regions
[i
];
1249 if (r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) {
1250 obj
= qobject_from_jsonf("{ 'bar': %d, 'type': 'io', "
1251 "'address': %" PRId64
", "
1252 "'size': %" PRId64
" }",
1253 i
, r
->addr
, r
->size
);
1255 int mem_type_64
= r
->type
& PCI_BASE_ADDRESS_MEM_TYPE_64
;
1257 obj
= qobject_from_jsonf("{ 'bar': %d, 'type': 'memory', "
1258 "'mem_type_64': %i, 'prefetch': %i, "
1259 "'address': %" PRId64
", "
1260 "'size': %" PRId64
" }",
1262 r
->type
& PCI_BASE_ADDRESS_MEM_PREFETCH
,
1266 qlist_append_obj(regions_list
, obj
);
1269 return QOBJECT(regions_list
);
1272 static QObject
*pci_get_devices_list(PCIBus
*bus
, int bus_num
);
1274 static QObject
*pci_get_dev_dict(PCIDevice
*dev
, PCIBus
*bus
, int bus_num
)
1279 obj
= qobject_from_jsonf("{ 'bus': %d, 'slot': %d, 'function': %d," "'class_info': %p, 'id': %p, 'regions': %p,"
1282 PCI_SLOT(dev
->devfn
), PCI_FUNC(dev
->devfn
),
1283 pci_get_dev_class(dev
), pci_get_dev_id(dev
),
1284 pci_get_regions_list(dev
),
1285 dev
->qdev
.id
? dev
->qdev
.id
: "");
1287 if (dev
->config
[PCI_INTERRUPT_PIN
] != 0) {
1288 QDict
*qdict
= qobject_to_qdict(obj
);
1289 qdict_put(qdict
, "irq", qint_from_int(dev
->config
[PCI_INTERRUPT_LINE
]));
1292 type
= dev
->config
[PCI_HEADER_TYPE
] & ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
1293 if (type
== PCI_HEADER_TYPE_BRIDGE
) {
1295 QObject
*pci_bridge
;
1297 pci_bridge
= qobject_from_jsonf("{ 'bus': "
1298 "{ 'number': %d, 'secondary': %d, 'subordinate': %d }, "
1299 "'io_range': { 'base': %" PRId64
", 'limit': %" PRId64
"}, "
1300 "'memory_range': { 'base': %" PRId64
", 'limit': %" PRId64
"}, "
1301 "'prefetchable_range': { 'base': %" PRId64
", 'limit': %" PRId64
"} }",
1302 dev
->config
[PCI_PRIMARY_BUS
], dev
->config
[PCI_SECONDARY_BUS
],
1303 dev
->config
[PCI_SUBORDINATE_BUS
],
1304 pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_IO
),
1305 pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_IO
),
1306 pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
),
1307 pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
),
1308 pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
|
1309 PCI_BASE_ADDRESS_MEM_PREFETCH
),
1310 pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
|
1311 PCI_BASE_ADDRESS_MEM_PREFETCH
));
1313 if (dev
->config
[PCI_SECONDARY_BUS
] != 0) {
1314 PCIBus
*child_bus
= pci_find_bus(bus
, dev
->config
[PCI_SECONDARY_BUS
]);
1317 qdict
= qobject_to_qdict(pci_bridge
);
1318 qdict_put_obj(qdict
, "devices",
1319 pci_get_devices_list(child_bus
,
1320 dev
->config
[PCI_SECONDARY_BUS
]));
1323 qdict
= qobject_to_qdict(obj
);
1324 qdict_put_obj(qdict
, "pci_bridge", pci_bridge
);
1330 static QObject
*pci_get_devices_list(PCIBus
*bus
, int bus_num
)
1336 dev_list
= qlist_new();
1338 for (devfn
= 0; devfn
< ARRAY_SIZE(bus
->devices
); devfn
++) {
1339 dev
= bus
->devices
[devfn
];
1341 qlist_append_obj(dev_list
, pci_get_dev_dict(dev
, bus
, bus_num
));
1345 return QOBJECT(dev_list
);
1348 static QObject
*pci_get_bus_dict(PCIBus
*bus
, int bus_num
)
1350 bus
= pci_find_bus(bus
, bus_num
);
1352 return qobject_from_jsonf("{ 'bus': %d, 'devices': %p }",
1353 bus_num
, pci_get_devices_list(bus
, bus_num
));
1360 * do_pci_info(): PCI buses and devices information
1362 * The returned QObject is a QList of all buses. Each bus is
1363 * represented by a QDict, which has a key with a QList of all
1364 * PCI devices attached to it. Each device is represented by
1367 * The bus QDict contains the following:
1369 * - "bus": bus number
1370 * - "devices": a QList of QDicts, each QDict represents a PCI
1373 * The PCI device QDict contains the following:
1375 * - "bus": identical to the parent's bus number
1376 * - "slot": slot number
1377 * - "function": function number
1378 * - "class_info": a QDict containing:
1379 * - "desc": device class description (optional)
1380 * - "class": device class number
1381 * - "id": a QDict containing:
1382 * - "device": device ID
1383 * - "vendor": vendor ID
1384 * - "irq": device's IRQ if assigned (optional)
1385 * - "qdev_id": qdev id string
1386 * - "pci_bridge": It's a QDict, only present if this device is a
1387 * PCI bridge, contains:
1388 * - "bus": bus number
1389 * - "secondary": secondary bus number
1390 * - "subordinate": subordinate bus number
1391 * - "io_range": a QDict with memory range information
1392 * - "memory_range": a QDict with memory range information
1393 * - "prefetchable_range": a QDict with memory range information
1394 * - "devices": a QList of PCI devices if there's any attached (optional)
1395 * - "regions": a QList of QDicts, each QDict represents a
1396 * memory region of this device
1398 * The memory range QDict contains the following:
1400 * - "base": base memory address
1401 * - "limit": limit value
1403 * The region QDict can be an I/O region or a memory region,
1404 * an I/O region QDict contains the following:
1407 * - "bar": BAR number
1408 * - "address": memory address
1409 * - "size": memory size
1411 * A memory region QDict contains the following:
1413 * - "type": "memory"
1414 * - "bar": BAR number
1415 * - "address": memory address
1416 * - "size": memory size
1417 * - "mem_type_64": true or false
1418 * - "prefetch": true or false
1420 void do_pci_info(Monitor
*mon
, QObject
**ret_data
)
1423 struct PCIHostBus
*host
;
1425 bus_list
= qlist_new();
1427 QLIST_FOREACH(host
, &host_buses
, next
) {
1428 QObject
*obj
= pci_get_bus_dict(host
->bus
, 0);
1430 qlist_append_obj(bus_list
, obj
);
1434 *ret_data
= QOBJECT(bus_list
);
1437 static const char * const pci_nic_models
[] = {
1449 static const char * const pci_nic_names
[] = {
1461 /* Initialize a PCI NIC. */
1462 /* FIXME callers should check for failure, but don't */
1463 PCIDevice
*pci_nic_init(NICInfo
*nd
, const char *default_model
,
1464 const char *default_devaddr
)
1466 const char *devaddr
= nd
->devaddr
? nd
->devaddr
: default_devaddr
;
1473 i
= qemu_find_nic_model(nd
, pci_nic_models
, default_model
);
1477 bus
= pci_get_bus_devfn(&devfn
, devaddr
);
1479 error_report("Invalid PCI device address %s for device %s",
1480 devaddr
, pci_nic_names
[i
]);
1484 pci_dev
= pci_create(bus
, devfn
, pci_nic_names
[i
]);
1485 dev
= &pci_dev
->qdev
;
1487 dev
->id
= qemu_strdup(nd
->name
);
1488 qdev_set_nic_properties(dev
, nd
);
1489 if (qdev_init(dev
) < 0)
1494 PCIDevice
*pci_nic_init_nofail(NICInfo
*nd
, const char *default_model
,
1495 const char *default_devaddr
)
1499 if (qemu_show_nic_models(nd
->model
, pci_nic_models
))
1502 res
= pci_nic_init(nd
, default_model
, default_devaddr
);
1516 static void pci_bridge_update_mappings_fn(PCIBus
*b
, PCIDevice
*d
)
1518 pci_update_mappings(d
);
1521 static void pci_bridge_update_mappings(PCIBus
*b
)
1525 pci_for_each_device_under_bus(b
, pci_bridge_update_mappings_fn
);
1527 QLIST_FOREACH(child
, &b
->child
, sibling
) {
1528 pci_bridge_update_mappings(child
);
1532 static void pci_bridge_write_config(PCIDevice
*d
,
1533 uint32_t address
, uint32_t val
, int len
)
1535 pci_default_write_config(d
, address
, val
, len
);
1537 if (/* io base/limit */
1538 ranges_overlap(address
, len
, PCI_IO_BASE
, 2) ||
1540 /* memory base/limit, prefetchable base/limit and
1541 io base/limit upper 16 */
1542 ranges_overlap(address
, len
, PCI_MEMORY_BASE
, 20)) {
1543 pci_bridge_update_mappings(d
->bus
);
1547 PCIBus
*pci_find_bus(PCIBus
*bus
, int bus_num
)
1555 if (pci_bus_num(bus
) == bus_num
) {
1560 if (!bus
->parent_dev
/* host pci bridge */ ||
1561 (bus
->parent_dev
->config
[PCI_SECONDARY_BUS
] < bus_num
&&
1562 bus_num
<= bus
->parent_dev
->config
[PCI_SUBORDINATE_BUS
])) {
1563 for (; bus
; bus
= sec
) {
1564 QLIST_FOREACH(sec
, &bus
->child
, sibling
) {
1565 assert(sec
->parent_dev
);
1566 if (sec
->parent_dev
->config
[PCI_SECONDARY_BUS
] == bus_num
) {
1569 if (sec
->parent_dev
->config
[PCI_SECONDARY_BUS
] < bus_num
&&
1570 bus_num
<= sec
->parent_dev
->config
[PCI_SUBORDINATE_BUS
]) {
1580 PCIDevice
*pci_find_device(PCIBus
*bus
, int bus_num
, int slot
, int function
)
1582 bus
= pci_find_bus(bus
, bus_num
);
1587 return bus
->devices
[PCI_DEVFN(slot
, function
)];
1590 static int pci_bridge_initfn(PCIDevice
*dev
)
1592 PCIBridge
*s
= DO_UPCAST(PCIBridge
, dev
, dev
);
1594 pci_config_set_vendor_id(s
->dev
.config
, s
->vid
);
1595 pci_config_set_device_id(s
->dev
.config
, s
->did
);
1597 pci_set_word(dev
->config
+ PCI_STATUS
,
1598 PCI_STATUS_66MHZ
| PCI_STATUS_FAST_BACK
);
1599 pci_config_set_class(dev
->config
, PCI_CLASS_BRIDGE_PCI
);
1600 dev
->config
[PCI_HEADER_TYPE
] = PCI_HEADER_TYPE_BRIDGE
;
1601 pci_set_word(dev
->config
+ PCI_SEC_STATUS
,
1602 PCI_STATUS_66MHZ
| PCI_STATUS_FAST_BACK
);
1606 static int pci_bridge_exitfn(PCIDevice
*pci_dev
)
1608 PCIBridge
*s
= DO_UPCAST(PCIBridge
, dev
, pci_dev
);
1609 PCIBus
*bus
= &s
->bus
;
1610 pci_unregister_secondary_bus(bus
);
1614 PCIBus
*pci_bridge_init(PCIBus
*bus
, int devfn
, uint16_t vid
, uint16_t did
,
1615 pci_map_irq_fn map_irq
, const char *name
)
1620 dev
= pci_create(bus
, devfn
, "pci-bridge");
1621 qdev_prop_set_uint32(&dev
->qdev
, "vendorid", vid
);
1622 qdev_prop_set_uint32(&dev
->qdev
, "deviceid", did
);
1623 qdev_init_nofail(&dev
->qdev
);
1625 s
= DO_UPCAST(PCIBridge
, dev
, dev
);
1626 pci_register_secondary_bus(bus
, &s
->bus
, &s
->dev
, map_irq
, name
);
1630 PCIDevice
*pci_bridge_get_device(PCIBus
*bus
)
1632 return bus
->parent_dev
;
1635 static int pci_qdev_init(DeviceState
*qdev
, DeviceInfo
*base
)
1637 PCIDevice
*pci_dev
= (PCIDevice
*)qdev
;
1638 PCIDeviceInfo
*info
= container_of(base
, PCIDeviceInfo
, qdev
);
1642 /* initialize cap_present for pci_is_express() and pci_config_size() */
1643 if (info
->is_express
) {
1644 pci_dev
->cap_present
|= QEMU_PCI_CAP_EXPRESS
;
1647 bus
= FROM_QBUS(PCIBus
, qdev_get_parent_bus(qdev
));
1648 devfn
= pci_dev
->devfn
;
1649 pci_dev
= do_pci_register_device(pci_dev
, bus
, base
->name
, devfn
,
1650 info
->config_read
, info
->config_write
,
1652 if (pci_dev
== NULL
)
1654 rc
= info
->init(pci_dev
);
1659 if (pci_dev
->romfile
== NULL
&& info
->romfile
!= NULL
)
1660 pci_dev
->romfile
= qemu_strdup(info
->romfile
);
1661 pci_add_option_rom(pci_dev
);
1663 if (qdev
->hotplugged
)
1664 bus
->hotplug(pci_dev
, 1);
1668 static int pci_unplug_device(DeviceState
*qdev
)
1670 PCIDevice
*dev
= DO_UPCAST(PCIDevice
, qdev
, qdev
);
1672 dev
->bus
->hotplug(dev
, 0);
1676 void pci_qdev_register(PCIDeviceInfo
*info
)
1678 info
->qdev
.init
= pci_qdev_init
;
1679 info
->qdev
.unplug
= pci_unplug_device
;
1680 info
->qdev
.exit
= pci_unregister_device
;
1681 info
->qdev
.bus_info
= &pci_bus_info
;
1682 qdev_register(&info
->qdev
);
1685 void pci_qdev_register_many(PCIDeviceInfo
*info
)
1687 while (info
->qdev
.name
) {
1688 pci_qdev_register(info
);
1693 PCIDevice
*pci_create(PCIBus
*bus
, int devfn
, const char *name
)
1697 dev
= qdev_create(&bus
->qbus
, name
);
1698 qdev_prop_set_uint32(dev
, "addr", devfn
);
1699 return DO_UPCAST(PCIDevice
, qdev
, dev
);
1702 PCIDevice
*pci_create_simple(PCIBus
*bus
, int devfn
, const char *name
)
1704 PCIDevice
*dev
= pci_create(bus
, devfn
, name
);
1705 qdev_init_nofail(&dev
->qdev
);
1709 static int pci_find_space(PCIDevice
*pdev
, uint8_t size
)
1711 int config_size
= pci_config_size(pdev
);
1712 int offset
= PCI_CONFIG_HEADER_SIZE
;
1714 for (i
= PCI_CONFIG_HEADER_SIZE
; i
< config_size
; ++i
)
1717 else if (i
- offset
+ 1 == size
)
1722 static uint8_t pci_find_capability_list(PCIDevice
*pdev
, uint8_t cap_id
,
1727 if (!(pdev
->config
[PCI_STATUS
] & PCI_STATUS_CAP_LIST
))
1730 for (prev
= PCI_CAPABILITY_LIST
; (next
= pdev
->config
[prev
]);
1731 prev
= next
+ PCI_CAP_LIST_NEXT
)
1732 if (pdev
->config
[next
+ PCI_CAP_LIST_ID
] == cap_id
)
1740 static void pci_map_option_rom(PCIDevice
*pdev
, int region_num
, pcibus_t addr
, pcibus_t size
, int type
)
1742 cpu_register_physical_memory(addr
, size
, pdev
->rom_offset
);
1745 /* Add an option rom for the device */
1746 static int pci_add_option_rom(PCIDevice
*pdev
)
1754 if (strlen(pdev
->romfile
) == 0)
1757 if (!pdev
->rom_bar
) {
1759 * Load rom via fw_cfg instead of creating a rom bar,
1760 * for 0.11 compatibility.
1762 int class = pci_get_word(pdev
->config
+ PCI_CLASS_DEVICE
);
1763 if (class == 0x0300) {
1764 rom_add_vga(pdev
->romfile
);
1766 rom_add_option(pdev
->romfile
);
1771 path
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, pdev
->romfile
);
1773 path
= qemu_strdup(pdev
->romfile
);
1776 size
= get_image_size(path
);
1778 error_report("%s: failed to find romfile \"%s\"",
1779 __FUNCTION__
, pdev
->romfile
);
1782 if (size
& (size
- 1)) {
1783 size
= 1 << qemu_fls(size
);
1786 pdev
->rom_offset
= qemu_ram_alloc(size
);
1788 ptr
= qemu_get_ram_ptr(pdev
->rom_offset
);
1789 load_image(path
, ptr
);
1792 pci_register_bar(pdev
, PCI_ROM_SLOT
, size
,
1793 0, pci_map_option_rom
);
1798 /* Reserve space and add capability to the linked list in pci config space */
1799 int pci_add_capability_at_offset(PCIDevice
*pdev
, uint8_t cap_id
,
1800 uint8_t offset
, uint8_t size
)
1802 uint8_t *config
= pdev
->config
+ offset
;
1803 config
[PCI_CAP_LIST_ID
] = cap_id
;
1804 config
[PCI_CAP_LIST_NEXT
] = pdev
->config
[PCI_CAPABILITY_LIST
];
1805 pdev
->config
[PCI_CAPABILITY_LIST
] = offset
;
1806 pdev
->config
[PCI_STATUS
] |= PCI_STATUS_CAP_LIST
;
1807 memset(pdev
->used
+ offset
, 0xFF, size
);
1808 /* Make capability read-only by default */
1809 memset(pdev
->wmask
+ offset
, 0, size
);
1810 /* Check capability by default */
1811 memset(pdev
->cmask
+ offset
, 0xFF, size
);
1815 /* Find and reserve space and add capability to the linked list
1816 * in pci config space */
1817 int pci_add_capability(PCIDevice
*pdev
, uint8_t cap_id
, uint8_t size
)
1819 uint8_t offset
= pci_find_space(pdev
, size
);
1823 return pci_add_capability_at_offset(pdev
, cap_id
, offset
, size
);
1826 /* Unlink capability from the pci config space. */
1827 void pci_del_capability(PCIDevice
*pdev
, uint8_t cap_id
, uint8_t size
)
1829 uint8_t prev
, offset
= pci_find_capability_list(pdev
, cap_id
, &prev
);
1832 pdev
->config
[prev
] = pdev
->config
[offset
+ PCI_CAP_LIST_NEXT
];
1833 /* Make capability writeable again */
1834 memset(pdev
->wmask
+ offset
, 0xff, size
);
1835 /* Clear cmask as device-specific registers can't be checked */
1836 memset(pdev
->cmask
+ offset
, 0, size
);
1837 memset(pdev
->used
+ offset
, 0, size
);
1839 if (!pdev
->config
[PCI_CAPABILITY_LIST
])
1840 pdev
->config
[PCI_STATUS
] &= ~PCI_STATUS_CAP_LIST
;
1843 /* Reserve space for capability at a known offset (to call after load). */
1844 void pci_reserve_capability(PCIDevice
*pdev
, uint8_t offset
, uint8_t size
)
1846 memset(pdev
->used
+ offset
, 0xff, size
);
1849 uint8_t pci_find_capability(PCIDevice
*pdev
, uint8_t cap_id
)
1851 return pci_find_capability_list(pdev
, cap_id
, NULL
);
1854 static void pcibus_dev_print(Monitor
*mon
, DeviceState
*dev
, int indent
)
1856 PCIDevice
*d
= (PCIDevice
*)dev
;
1857 const pci_class_desc
*desc
;
1862 class = pci_get_word(d
->config
+ PCI_CLASS_DEVICE
);
1863 desc
= pci_class_descriptions
;
1864 while (desc
->desc
&& class != desc
->class)
1867 snprintf(ctxt
, sizeof(ctxt
), "%s", desc
->desc
);
1869 snprintf(ctxt
, sizeof(ctxt
), "Class %04x", class);
1872 monitor_printf(mon
, "%*sclass %s, addr %02x:%02x.%x, "
1873 "pci id %04x:%04x (sub %04x:%04x)\n",
1875 d
->config
[PCI_SECONDARY_BUS
],
1876 PCI_SLOT(d
->devfn
), PCI_FUNC(d
->devfn
),
1877 pci_get_word(d
->config
+ PCI_VENDOR_ID
),
1878 pci_get_word(d
->config
+ PCI_DEVICE_ID
),
1879 pci_get_word(d
->config
+ PCI_SUBSYSTEM_VENDOR_ID
),
1880 pci_get_word(d
->config
+ PCI_SUBSYSTEM_ID
));
1881 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
1882 r
= &d
->io_regions
[i
];
1885 monitor_printf(mon
, "%*sbar %d: %s at 0x%"FMT_PCIBUS
1886 " [0x%"FMT_PCIBUS
"]\n",
1888 i
, r
->type
& PCI_BASE_ADDRESS_SPACE_IO
? "i/o" : "mem",
1889 r
->addr
, r
->addr
+ r
->size
- 1);
1893 static PCIDeviceInfo bridge_info
= {
1894 .qdev
.name
= "pci-bridge",
1895 .qdev
.size
= sizeof(PCIBridge
),
1896 .init
= pci_bridge_initfn
,
1897 .exit
= pci_bridge_exitfn
,
1898 .config_write
= pci_bridge_write_config
,
1899 .header_type
= PCI_HEADER_TYPE_BRIDGE
,
1900 .qdev
.props
= (Property
[]) {
1901 DEFINE_PROP_HEX32("vendorid", PCIBridge
, vid
, 0),
1902 DEFINE_PROP_HEX32("deviceid", PCIBridge
, did
, 0),
1903 DEFINE_PROP_END_OF_LIST(),
1907 static void pci_register_devices(void)
1909 pci_qdev_register(&bridge_info
);
1912 device_init(pci_register_devices
)