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
26 #include "pci_bridge.h"
27 #include "pci_internals.h"
33 #include "qmp-commands.h"
37 # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
39 # define PCI_DPRINTF(format, ...) do { } while (0)
42 static void pcibus_dev_print(Monitor
*mon
, DeviceState
*dev
, int indent
);
43 static char *pcibus_get_dev_path(DeviceState
*dev
);
44 static char *pcibus_get_fw_dev_path(DeviceState
*dev
);
45 static int pcibus_reset(BusState
*qbus
);
47 static Property pci_props
[] = {
48 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice
, devfn
, -1),
49 DEFINE_PROP_STRING("romfile", PCIDevice
, romfile
),
50 DEFINE_PROP_UINT32("rombar", PCIDevice
, rom_bar
, 1),
51 DEFINE_PROP_BIT("multifunction", PCIDevice
, cap_present
,
52 QEMU_PCI_CAP_MULTIFUNCTION_BITNR
, false),
53 DEFINE_PROP_BIT("command_serr_enable", PCIDevice
, cap_present
,
54 QEMU_PCI_CAP_SERR_BITNR
, true),
55 DEFINE_PROP_END_OF_LIST()
58 static void pci_bus_class_init(ObjectClass
*klass
, void *data
)
60 BusClass
*k
= BUS_CLASS(klass
);
62 k
->print_dev
= pcibus_dev_print
;
63 k
->get_dev_path
= pcibus_get_dev_path
;
64 k
->get_fw_dev_path
= pcibus_get_fw_dev_path
;
65 k
->reset
= pcibus_reset
;
68 static const TypeInfo pci_bus_info
= {
71 .instance_size
= sizeof(PCIBus
),
72 .class_init
= pci_bus_class_init
,
75 static PCIBus
*pci_find_bus_nr(PCIBus
*bus
, int bus_num
);
76 static void pci_update_mappings(PCIDevice
*d
);
77 static void pci_set_irq(void *opaque
, int irq_num
, int level
);
78 static int pci_add_option_rom(PCIDevice
*pdev
, bool is_default_rom
);
79 static void pci_del_option_rom(PCIDevice
*pdev
);
81 static uint16_t pci_default_sub_vendor_id
= PCI_SUBVENDOR_ID_REDHAT_QUMRANET
;
82 static uint16_t pci_default_sub_device_id
= PCI_SUBDEVICE_ID_QEMU
;
87 QLIST_ENTRY(PCIHostBus
) next
;
89 static QLIST_HEAD(, PCIHostBus
) host_buses
;
91 static const VMStateDescription vmstate_pcibus
= {
94 .minimum_version_id
= 1,
95 .minimum_version_id_old
= 1,
96 .fields
= (VMStateField
[]) {
97 VMSTATE_INT32_EQUAL(nirq
, PCIBus
),
98 VMSTATE_VARRAY_INT32(irq_count
, PCIBus
, nirq
, 0, vmstate_info_int32
, int32_t),
102 static int pci_bar(PCIDevice
*d
, int reg
)
106 if (reg
!= PCI_ROM_SLOT
)
107 return PCI_BASE_ADDRESS_0
+ reg
* 4;
109 type
= d
->config
[PCI_HEADER_TYPE
] & ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
110 return type
== PCI_HEADER_TYPE_BRIDGE
? PCI_ROM_ADDRESS1
: PCI_ROM_ADDRESS
;
113 static inline int pci_irq_state(PCIDevice
*d
, int irq_num
)
115 return (d
->irq_state
>> irq_num
) & 0x1;
118 static inline void pci_set_irq_state(PCIDevice
*d
, int irq_num
, int level
)
120 d
->irq_state
&= ~(0x1 << irq_num
);
121 d
->irq_state
|= level
<< irq_num
;
124 static void pci_change_irq_level(PCIDevice
*pci_dev
, int irq_num
, int change
)
129 irq_num
= bus
->map_irq(pci_dev
, irq_num
);
132 pci_dev
= bus
->parent_dev
;
134 bus
->irq_count
[irq_num
] += change
;
135 bus
->set_irq(bus
->irq_opaque
, irq_num
, bus
->irq_count
[irq_num
] != 0);
138 int pci_bus_get_irq_level(PCIBus
*bus
, int irq_num
)
140 assert(irq_num
>= 0);
141 assert(irq_num
< bus
->nirq
);
142 return !!bus
->irq_count
[irq_num
];
145 /* Update interrupt status bit in config space on interrupt
147 static void pci_update_irq_status(PCIDevice
*dev
)
149 if (dev
->irq_state
) {
150 dev
->config
[PCI_STATUS
] |= PCI_STATUS_INTERRUPT
;
152 dev
->config
[PCI_STATUS
] &= ~PCI_STATUS_INTERRUPT
;
156 void pci_device_deassert_intx(PCIDevice
*dev
)
159 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
160 qemu_set_irq(dev
->irq
[i
], 0);
165 * This function is called on #RST and FLR.
166 * FLR if PCI_EXP_DEVCTL_BCR_FLR is set
168 void pci_device_reset(PCIDevice
*dev
)
172 qdev_reset_all(&dev
->qdev
);
175 pci_update_irq_status(dev
);
176 pci_device_deassert_intx(dev
);
177 /* Clear all writable bits */
178 pci_word_test_and_clear_mask(dev
->config
+ PCI_COMMAND
,
179 pci_get_word(dev
->wmask
+ PCI_COMMAND
) |
180 pci_get_word(dev
->w1cmask
+ PCI_COMMAND
));
181 pci_word_test_and_clear_mask(dev
->config
+ PCI_STATUS
,
182 pci_get_word(dev
->wmask
+ PCI_STATUS
) |
183 pci_get_word(dev
->w1cmask
+ PCI_STATUS
));
184 dev
->config
[PCI_CACHE_LINE_SIZE
] = 0x0;
185 dev
->config
[PCI_INTERRUPT_LINE
] = 0x0;
186 for (r
= 0; r
< PCI_NUM_REGIONS
; ++r
) {
187 PCIIORegion
*region
= &dev
->io_regions
[r
];
192 if (!(region
->type
& PCI_BASE_ADDRESS_SPACE_IO
) &&
193 region
->type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) {
194 pci_set_quad(dev
->config
+ pci_bar(dev
, r
), region
->type
);
196 pci_set_long(dev
->config
+ pci_bar(dev
, r
), region
->type
);
199 pci_update_mappings(dev
);
203 * Trigger pci bus reset under a given bus.
204 * To be called on RST# assert.
206 void pci_bus_reset(PCIBus
*bus
)
210 for (i
= 0; i
< bus
->nirq
; i
++) {
211 bus
->irq_count
[i
] = 0;
213 for (i
= 0; i
< ARRAY_SIZE(bus
->devices
); ++i
) {
214 if (bus
->devices
[i
]) {
215 pci_device_reset(bus
->devices
[i
]);
220 static int pcibus_reset(BusState
*qbus
)
222 pci_bus_reset(DO_UPCAST(PCIBus
, qbus
, qbus
));
224 /* topology traverse is done by pci_bus_reset().
225 Tell qbus/qdev walker not to traverse the tree */
229 static void pci_host_bus_register(int domain
, PCIBus
*bus
)
231 struct PCIHostBus
*host
;
232 host
= g_malloc0(sizeof(*host
));
233 host
->domain
= domain
;
235 QLIST_INSERT_HEAD(&host_buses
, host
, next
);
238 PCIBus
*pci_find_root_bus(int domain
)
240 struct PCIHostBus
*host
;
242 QLIST_FOREACH(host
, &host_buses
, next
) {
243 if (host
->domain
== domain
) {
251 int pci_find_domain(const PCIBus
*bus
)
254 struct PCIHostBus
*host
;
256 /* obtain root bus */
257 while ((d
= bus
->parent_dev
) != NULL
) {
261 QLIST_FOREACH(host
, &host_buses
, next
) {
262 if (host
->bus
== bus
) {
267 abort(); /* should not be reached */
271 void pci_bus_new_inplace(PCIBus
*bus
, DeviceState
*parent
,
273 MemoryRegion
*address_space_mem
,
274 MemoryRegion
*address_space_io
,
277 qbus_create_inplace(&bus
->qbus
, TYPE_PCI_BUS
, parent
, name
);
278 assert(PCI_FUNC(devfn_min
) == 0);
279 bus
->devfn_min
= devfn_min
;
280 bus
->address_space_mem
= address_space_mem
;
281 bus
->address_space_io
= address_space_io
;
284 QLIST_INIT(&bus
->child
);
285 pci_host_bus_register(0, bus
); /* for now only pci domain 0 is supported */
287 vmstate_register(NULL
, -1, &vmstate_pcibus
, bus
);
290 PCIBus
*pci_bus_new(DeviceState
*parent
, const char *name
,
291 MemoryRegion
*address_space_mem
,
292 MemoryRegion
*address_space_io
,
297 bus
= g_malloc0(sizeof(*bus
));
298 bus
->qbus
.glib_allocated
= true;
299 pci_bus_new_inplace(bus
, parent
, name
, address_space_mem
,
300 address_space_io
, devfn_min
);
304 void pci_bus_irqs(PCIBus
*bus
, pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
305 void *irq_opaque
, int nirq
)
307 bus
->set_irq
= set_irq
;
308 bus
->map_irq
= map_irq
;
309 bus
->irq_opaque
= irq_opaque
;
311 bus
->irq_count
= g_malloc0(nirq
* sizeof(bus
->irq_count
[0]));
314 void pci_bus_hotplug(PCIBus
*bus
, pci_hotplug_fn hotplug
, DeviceState
*qdev
)
316 bus
->qbus
.allow_hotplug
= 1;
317 bus
->hotplug
= hotplug
;
318 bus
->hotplug_qdev
= qdev
;
321 PCIBus
*pci_register_bus(DeviceState
*parent
, const char *name
,
322 pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
324 MemoryRegion
*address_space_mem
,
325 MemoryRegion
*address_space_io
,
326 uint8_t devfn_min
, int nirq
)
330 bus
= pci_bus_new(parent
, name
, address_space_mem
,
331 address_space_io
, devfn_min
);
332 pci_bus_irqs(bus
, set_irq
, map_irq
, irq_opaque
, nirq
);
336 int pci_bus_num(PCIBus
*s
)
339 return 0; /* pci host bridge */
340 return s
->parent_dev
->config
[PCI_SECONDARY_BUS
];
343 static int get_pci_config_device(QEMUFile
*f
, void *pv
, size_t size
)
345 PCIDevice
*s
= container_of(pv
, PCIDevice
, config
);
349 assert(size
== pci_config_size(s
));
350 config
= g_malloc(size
);
352 qemu_get_buffer(f
, config
, size
);
353 for (i
= 0; i
< size
; ++i
) {
354 if ((config
[i
] ^ s
->config
[i
]) &
355 s
->cmask
[i
] & ~s
->wmask
[i
] & ~s
->w1cmask
[i
]) {
360 memcpy(s
->config
, config
, size
);
362 pci_update_mappings(s
);
368 /* just put buffer */
369 static void put_pci_config_device(QEMUFile
*f
, void *pv
, size_t size
)
371 const uint8_t **v
= pv
;
372 assert(size
== pci_config_size(container_of(pv
, PCIDevice
, config
)));
373 qemu_put_buffer(f
, *v
, size
);
376 static VMStateInfo vmstate_info_pci_config
= {
377 .name
= "pci config",
378 .get
= get_pci_config_device
,
379 .put
= put_pci_config_device
,
382 static int get_pci_irq_state(QEMUFile
*f
, void *pv
, size_t size
)
384 PCIDevice
*s
= container_of(pv
, PCIDevice
, irq_state
);
385 uint32_t irq_state
[PCI_NUM_PINS
];
387 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
388 irq_state
[i
] = qemu_get_be32(f
);
389 if (irq_state
[i
] != 0x1 && irq_state
[i
] != 0) {
390 fprintf(stderr
, "irq state %d: must be 0 or 1.\n",
396 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
397 pci_set_irq_state(s
, i
, irq_state
[i
]);
403 static void put_pci_irq_state(QEMUFile
*f
, void *pv
, size_t size
)
406 PCIDevice
*s
= container_of(pv
, PCIDevice
, irq_state
);
408 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
409 qemu_put_be32(f
, pci_irq_state(s
, i
));
413 static VMStateInfo vmstate_info_pci_irq_state
= {
414 .name
= "pci irq state",
415 .get
= get_pci_irq_state
,
416 .put
= put_pci_irq_state
,
419 const VMStateDescription vmstate_pci_device
= {
422 .minimum_version_id
= 1,
423 .minimum_version_id_old
= 1,
424 .fields
= (VMStateField
[]) {
425 VMSTATE_INT32_LE(version_id
, PCIDevice
),
426 VMSTATE_BUFFER_UNSAFE_INFO(config
, PCIDevice
, 0,
427 vmstate_info_pci_config
,
428 PCI_CONFIG_SPACE_SIZE
),
429 VMSTATE_BUFFER_UNSAFE_INFO(irq_state
, PCIDevice
, 2,
430 vmstate_info_pci_irq_state
,
431 PCI_NUM_PINS
* sizeof(int32_t)),
432 VMSTATE_END_OF_LIST()
436 const VMStateDescription vmstate_pcie_device
= {
439 .minimum_version_id
= 1,
440 .minimum_version_id_old
= 1,
441 .fields
= (VMStateField
[]) {
442 VMSTATE_INT32_LE(version_id
, PCIDevice
),
443 VMSTATE_BUFFER_UNSAFE_INFO(config
, PCIDevice
, 0,
444 vmstate_info_pci_config
,
445 PCIE_CONFIG_SPACE_SIZE
),
446 VMSTATE_BUFFER_UNSAFE_INFO(irq_state
, PCIDevice
, 2,
447 vmstate_info_pci_irq_state
,
448 PCI_NUM_PINS
* sizeof(int32_t)),
449 VMSTATE_END_OF_LIST()
453 static inline const VMStateDescription
*pci_get_vmstate(PCIDevice
*s
)
455 return pci_is_express(s
) ? &vmstate_pcie_device
: &vmstate_pci_device
;
458 void pci_device_save(PCIDevice
*s
, QEMUFile
*f
)
460 /* Clear interrupt status bit: it is implicit
461 * in irq_state which we are saving.
462 * This makes us compatible with old devices
463 * which never set or clear this bit. */
464 s
->config
[PCI_STATUS
] &= ~PCI_STATUS_INTERRUPT
;
465 vmstate_save_state(f
, pci_get_vmstate(s
), s
);
466 /* Restore the interrupt status bit. */
467 pci_update_irq_status(s
);
470 int pci_device_load(PCIDevice
*s
, QEMUFile
*f
)
473 ret
= vmstate_load_state(f
, pci_get_vmstate(s
), s
, s
->version_id
);
474 /* Restore the interrupt status bit. */
475 pci_update_irq_status(s
);
479 static void pci_set_default_subsystem_id(PCIDevice
*pci_dev
)
481 pci_set_word(pci_dev
->config
+ PCI_SUBSYSTEM_VENDOR_ID
,
482 pci_default_sub_vendor_id
);
483 pci_set_word(pci_dev
->config
+ PCI_SUBSYSTEM_ID
,
484 pci_default_sub_device_id
);
488 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL
489 * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error
491 static int pci_parse_devaddr(const char *addr
, int *domp
, int *busp
,
492 unsigned int *slotp
, unsigned int *funcp
)
497 unsigned long dom
= 0, bus
= 0;
498 unsigned int slot
= 0;
499 unsigned int func
= 0;
502 val
= strtoul(p
, &e
, 16);
508 val
= strtoul(p
, &e
, 16);
515 val
= strtoul(p
, &e
, 16);
528 val
= strtoul(p
, &e
, 16);
535 /* if funcp == NULL func is 0 */
536 if (dom
> 0xffff || bus
> 0xff || slot
> 0x1f || func
> 7)
550 int pci_read_devaddr(Monitor
*mon
, const char *addr
, int *domp
, int *busp
,
553 /* strip legacy tag */
554 if (!strncmp(addr
, "pci_addr=", 9)) {
557 if (pci_parse_devaddr(addr
, domp
, busp
, slotp
, NULL
)) {
558 monitor_printf(mon
, "Invalid pci address\n");
564 PCIBus
*pci_get_bus_devfn(int *devfnp
, const char *devaddr
)
571 return pci_find_bus_nr(pci_find_root_bus(0), 0);
574 if (pci_parse_devaddr(devaddr
, &dom
, &bus
, &slot
, NULL
) < 0) {
578 *devfnp
= PCI_DEVFN(slot
, 0);
579 return pci_find_bus_nr(pci_find_root_bus(dom
), bus
);
582 static void pci_init_cmask(PCIDevice
*dev
)
584 pci_set_word(dev
->cmask
+ PCI_VENDOR_ID
, 0xffff);
585 pci_set_word(dev
->cmask
+ PCI_DEVICE_ID
, 0xffff);
586 dev
->cmask
[PCI_STATUS
] = PCI_STATUS_CAP_LIST
;
587 dev
->cmask
[PCI_REVISION_ID
] = 0xff;
588 dev
->cmask
[PCI_CLASS_PROG
] = 0xff;
589 pci_set_word(dev
->cmask
+ PCI_CLASS_DEVICE
, 0xffff);
590 dev
->cmask
[PCI_HEADER_TYPE
] = 0xff;
591 dev
->cmask
[PCI_CAPABILITY_LIST
] = 0xff;
594 static void pci_init_wmask(PCIDevice
*dev
)
596 int config_size
= pci_config_size(dev
);
598 dev
->wmask
[PCI_CACHE_LINE_SIZE
] = 0xff;
599 dev
->wmask
[PCI_INTERRUPT_LINE
] = 0xff;
600 pci_set_word(dev
->wmask
+ PCI_COMMAND
,
601 PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
602 PCI_COMMAND_INTX_DISABLE
);
603 if (dev
->cap_present
& QEMU_PCI_CAP_SERR
) {
604 pci_word_test_and_set_mask(dev
->wmask
+ PCI_COMMAND
, PCI_COMMAND_SERR
);
607 memset(dev
->wmask
+ PCI_CONFIG_HEADER_SIZE
, 0xff,
608 config_size
- PCI_CONFIG_HEADER_SIZE
);
611 static void pci_init_w1cmask(PCIDevice
*dev
)
614 * Note: It's okay to set w1cmask even for readonly bits as
615 * long as their value is hardwired to 0.
617 pci_set_word(dev
->w1cmask
+ PCI_STATUS
,
618 PCI_STATUS_PARITY
| PCI_STATUS_SIG_TARGET_ABORT
|
619 PCI_STATUS_REC_TARGET_ABORT
| PCI_STATUS_REC_MASTER_ABORT
|
620 PCI_STATUS_SIG_SYSTEM_ERROR
| PCI_STATUS_DETECTED_PARITY
);
623 static void pci_init_mask_bridge(PCIDevice
*d
)
625 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and
626 PCI_SEC_LETENCY_TIMER */
627 memset(d
->wmask
+ PCI_PRIMARY_BUS
, 0xff, 4);
630 d
->wmask
[PCI_IO_BASE
] = PCI_IO_RANGE_MASK
& 0xff;
631 d
->wmask
[PCI_IO_LIMIT
] = PCI_IO_RANGE_MASK
& 0xff;
632 pci_set_word(d
->wmask
+ PCI_MEMORY_BASE
,
633 PCI_MEMORY_RANGE_MASK
& 0xffff);
634 pci_set_word(d
->wmask
+ PCI_MEMORY_LIMIT
,
635 PCI_MEMORY_RANGE_MASK
& 0xffff);
636 pci_set_word(d
->wmask
+ PCI_PREF_MEMORY_BASE
,
637 PCI_PREF_RANGE_MASK
& 0xffff);
638 pci_set_word(d
->wmask
+ PCI_PREF_MEMORY_LIMIT
,
639 PCI_PREF_RANGE_MASK
& 0xffff);
641 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */
642 memset(d
->wmask
+ PCI_PREF_BASE_UPPER32
, 0xff, 8);
644 /* Supported memory and i/o types */
645 d
->config
[PCI_IO_BASE
] |= PCI_IO_RANGE_TYPE_16
;
646 d
->config
[PCI_IO_LIMIT
] |= PCI_IO_RANGE_TYPE_16
;
647 pci_word_test_and_set_mask(d
->config
+ PCI_PREF_MEMORY_BASE
,
648 PCI_PREF_RANGE_TYPE_64
);
649 pci_word_test_and_set_mask(d
->config
+ PCI_PREF_MEMORY_LIMIT
,
650 PCI_PREF_RANGE_TYPE_64
);
652 /* TODO: add this define to pci_regs.h in linux and then in qemu. */
653 #define PCI_BRIDGE_CTL_VGA_16BIT 0x10 /* VGA 16-bit decode */
654 #define PCI_BRIDGE_CTL_DISCARD 0x100 /* Primary discard timer */
655 #define PCI_BRIDGE_CTL_SEC_DISCARD 0x200 /* Secondary discard timer */
656 #define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400 /* Discard timer status */
657 #define PCI_BRIDGE_CTL_DISCARD_SERR 0x800 /* Discard timer SERR# enable */
658 pci_set_word(d
->wmask
+ PCI_BRIDGE_CONTROL
,
659 PCI_BRIDGE_CTL_PARITY
|
660 PCI_BRIDGE_CTL_SERR
|
663 PCI_BRIDGE_CTL_VGA_16BIT
|
664 PCI_BRIDGE_CTL_MASTER_ABORT
|
665 PCI_BRIDGE_CTL_BUS_RESET
|
666 PCI_BRIDGE_CTL_FAST_BACK
|
667 PCI_BRIDGE_CTL_DISCARD
|
668 PCI_BRIDGE_CTL_SEC_DISCARD
|
669 PCI_BRIDGE_CTL_DISCARD_SERR
);
670 /* Below does not do anything as we never set this bit, put here for
672 pci_set_word(d
->w1cmask
+ PCI_BRIDGE_CONTROL
,
673 PCI_BRIDGE_CTL_DISCARD_STATUS
);
674 d
->cmask
[PCI_IO_BASE
] |= PCI_IO_RANGE_TYPE_MASK
;
675 d
->cmask
[PCI_IO_LIMIT
] |= PCI_IO_RANGE_TYPE_MASK
;
676 pci_word_test_and_set_mask(d
->cmask
+ PCI_PREF_MEMORY_BASE
,
677 PCI_PREF_RANGE_TYPE_MASK
);
678 pci_word_test_and_set_mask(d
->cmask
+ PCI_PREF_MEMORY_LIMIT
,
679 PCI_PREF_RANGE_TYPE_MASK
);
682 static int pci_init_multifunction(PCIBus
*bus
, PCIDevice
*dev
)
684 uint8_t slot
= PCI_SLOT(dev
->devfn
);
687 if (dev
->cap_present
& QEMU_PCI_CAP_MULTIFUNCTION
) {
688 dev
->config
[PCI_HEADER_TYPE
] |= PCI_HEADER_TYPE_MULTI_FUNCTION
;
692 * multifunction bit is interpreted in two ways as follows.
693 * - all functions must set the bit to 1.
695 * - function 0 must set the bit, but the rest function (> 0)
696 * is allowed to leave the bit to 0.
697 * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10,
699 * So OS (at least Linux) checks the bit of only function 0,
700 * and doesn't see the bit of function > 0.
702 * The below check allows both interpretation.
704 if (PCI_FUNC(dev
->devfn
)) {
705 PCIDevice
*f0
= bus
->devices
[PCI_DEVFN(slot
, 0)];
706 if (f0
&& !(f0
->cap_present
& QEMU_PCI_CAP_MULTIFUNCTION
)) {
707 /* function 0 should set multifunction bit */
708 error_report("PCI: single function device can't be populated "
709 "in function %x.%x", slot
, PCI_FUNC(dev
->devfn
));
715 if (dev
->cap_present
& QEMU_PCI_CAP_MULTIFUNCTION
) {
718 /* function 0 indicates single function, so function > 0 must be NULL */
719 for (func
= 1; func
< PCI_FUNC_MAX
; ++func
) {
720 if (bus
->devices
[PCI_DEVFN(slot
, func
)]) {
721 error_report("PCI: %x.0 indicates single function, "
722 "but %x.%x is already populated.",
730 static void pci_config_alloc(PCIDevice
*pci_dev
)
732 int config_size
= pci_config_size(pci_dev
);
734 pci_dev
->config
= g_malloc0(config_size
);
735 pci_dev
->cmask
= g_malloc0(config_size
);
736 pci_dev
->wmask
= g_malloc0(config_size
);
737 pci_dev
->w1cmask
= g_malloc0(config_size
);
738 pci_dev
->used
= g_malloc0(config_size
);
741 static void pci_config_free(PCIDevice
*pci_dev
)
743 g_free(pci_dev
->config
);
744 g_free(pci_dev
->cmask
);
745 g_free(pci_dev
->wmask
);
746 g_free(pci_dev
->w1cmask
);
747 g_free(pci_dev
->used
);
750 /* -1 for devfn means auto assign */
751 static PCIDevice
*do_pci_register_device(PCIDevice
*pci_dev
, PCIBus
*bus
,
752 const char *name
, int devfn
)
754 PCIDeviceClass
*pc
= PCI_DEVICE_GET_CLASS(pci_dev
);
755 PCIConfigReadFunc
*config_read
= pc
->config_read
;
756 PCIConfigWriteFunc
*config_write
= pc
->config_write
;
759 for(devfn
= bus
->devfn_min
; devfn
< ARRAY_SIZE(bus
->devices
);
760 devfn
+= PCI_FUNC_MAX
) {
761 if (!bus
->devices
[devfn
])
764 error_report("PCI: no slot/function available for %s, all in use", name
);
767 } else if (bus
->devices
[devfn
]) {
768 error_report("PCI: slot %d function %d not available for %s, in use by %s",
769 PCI_SLOT(devfn
), PCI_FUNC(devfn
), name
, bus
->devices
[devfn
]->name
);
773 pci_dev
->devfn
= devfn
;
774 pstrcpy(pci_dev
->name
, sizeof(pci_dev
->name
), name
);
775 pci_dev
->irq_state
= 0;
776 pci_config_alloc(pci_dev
);
778 pci_config_set_vendor_id(pci_dev
->config
, pc
->vendor_id
);
779 pci_config_set_device_id(pci_dev
->config
, pc
->device_id
);
780 pci_config_set_revision(pci_dev
->config
, pc
->revision
);
781 pci_config_set_class(pci_dev
->config
, pc
->class_id
);
783 if (!pc
->is_bridge
) {
784 if (pc
->subsystem_vendor_id
|| pc
->subsystem_id
) {
785 pci_set_word(pci_dev
->config
+ PCI_SUBSYSTEM_VENDOR_ID
,
786 pc
->subsystem_vendor_id
);
787 pci_set_word(pci_dev
->config
+ PCI_SUBSYSTEM_ID
,
790 pci_set_default_subsystem_id(pci_dev
);
793 /* subsystem_vendor_id/subsystem_id are only for header type 0 */
794 assert(!pc
->subsystem_vendor_id
);
795 assert(!pc
->subsystem_id
);
797 pci_init_cmask(pci_dev
);
798 pci_init_wmask(pci_dev
);
799 pci_init_w1cmask(pci_dev
);
801 pci_init_mask_bridge(pci_dev
);
803 if (pci_init_multifunction(bus
, pci_dev
)) {
804 pci_config_free(pci_dev
);
809 config_read
= pci_default_read_config
;
811 config_write
= pci_default_write_config
;
812 pci_dev
->config_read
= config_read
;
813 pci_dev
->config_write
= config_write
;
814 bus
->devices
[devfn
] = pci_dev
;
815 pci_dev
->irq
= qemu_allocate_irqs(pci_set_irq
, pci_dev
, PCI_NUM_PINS
);
816 pci_dev
->version_id
= 2; /* Current pci device vmstate version */
820 static void do_pci_unregister_device(PCIDevice
*pci_dev
)
822 qemu_free_irqs(pci_dev
->irq
);
823 pci_dev
->bus
->devices
[pci_dev
->devfn
] = NULL
;
824 pci_config_free(pci_dev
);
827 static void pci_unregister_io_regions(PCIDevice
*pci_dev
)
832 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
833 r
= &pci_dev
->io_regions
[i
];
834 if (!r
->size
|| r
->addr
== PCI_BAR_UNMAPPED
)
836 memory_region_del_subregion(r
->address_space
, r
->memory
);
840 static int pci_unregister_device(DeviceState
*dev
)
842 PCIDevice
*pci_dev
= PCI_DEVICE(dev
);
843 PCIDeviceClass
*pc
= PCI_DEVICE_GET_CLASS(pci_dev
);
847 ret
= pc
->exit(pci_dev
);
851 pci_unregister_io_regions(pci_dev
);
852 pci_del_option_rom(pci_dev
);
853 do_pci_unregister_device(pci_dev
);
857 void pci_register_bar(PCIDevice
*pci_dev
, int region_num
,
858 uint8_t type
, MemoryRegion
*memory
)
863 pcibus_t size
= memory_region_size(memory
);
865 assert(region_num
>= 0);
866 assert(region_num
< PCI_NUM_REGIONS
);
867 if (size
& (size
-1)) {
868 fprintf(stderr
, "ERROR: PCI region size must be pow2 "
869 "type=0x%x, size=0x%"FMT_PCIBUS
"\n", type
, size
);
873 r
= &pci_dev
->io_regions
[region_num
];
874 r
->addr
= PCI_BAR_UNMAPPED
;
880 addr
= pci_bar(pci_dev
, region_num
);
881 if (region_num
== PCI_ROM_SLOT
) {
882 /* ROM enable bit is writable */
883 wmask
|= PCI_ROM_ADDRESS_ENABLE
;
885 pci_set_long(pci_dev
->config
+ addr
, type
);
886 if (!(r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) &&
887 r
->type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) {
888 pci_set_quad(pci_dev
->wmask
+ addr
, wmask
);
889 pci_set_quad(pci_dev
->cmask
+ addr
, ~0ULL);
891 pci_set_long(pci_dev
->wmask
+ addr
, wmask
& 0xffffffff);
892 pci_set_long(pci_dev
->cmask
+ addr
, 0xffffffff);
894 pci_dev
->io_regions
[region_num
].memory
= memory
;
895 pci_dev
->io_regions
[region_num
].address_space
896 = type
& PCI_BASE_ADDRESS_SPACE_IO
897 ? pci_dev
->bus
->address_space_io
898 : pci_dev
->bus
->address_space_mem
;
901 pcibus_t
pci_get_bar_addr(PCIDevice
*pci_dev
, int region_num
)
903 return pci_dev
->io_regions
[region_num
].addr
;
906 static pcibus_t
pci_bar_address(PCIDevice
*d
,
907 int reg
, uint8_t type
, pcibus_t size
)
909 pcibus_t new_addr
, last_addr
;
910 int bar
= pci_bar(d
, reg
);
911 uint16_t cmd
= pci_get_word(d
->config
+ PCI_COMMAND
);
913 if (type
& PCI_BASE_ADDRESS_SPACE_IO
) {
914 if (!(cmd
& PCI_COMMAND_IO
)) {
915 return PCI_BAR_UNMAPPED
;
917 new_addr
= pci_get_long(d
->config
+ bar
) & ~(size
- 1);
918 last_addr
= new_addr
+ size
- 1;
919 /* NOTE: we have only 64K ioports on PC */
920 if (last_addr
<= new_addr
|| new_addr
== 0 || last_addr
> UINT16_MAX
) {
921 return PCI_BAR_UNMAPPED
;
926 if (!(cmd
& PCI_COMMAND_MEMORY
)) {
927 return PCI_BAR_UNMAPPED
;
929 if (type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) {
930 new_addr
= pci_get_quad(d
->config
+ bar
);
932 new_addr
= pci_get_long(d
->config
+ bar
);
934 /* the ROM slot has a specific enable bit */
935 if (reg
== PCI_ROM_SLOT
&& !(new_addr
& PCI_ROM_ADDRESS_ENABLE
)) {
936 return PCI_BAR_UNMAPPED
;
938 new_addr
&= ~(size
- 1);
939 last_addr
= new_addr
+ size
- 1;
940 /* NOTE: we do not support wrapping */
941 /* XXX: as we cannot support really dynamic
942 mappings, we handle specific values as invalid
944 if (last_addr
<= new_addr
|| new_addr
== 0 ||
945 last_addr
== PCI_BAR_UNMAPPED
) {
946 return PCI_BAR_UNMAPPED
;
949 /* Now pcibus_t is 64bit.
950 * Check if 32 bit BAR wraps around explicitly.
951 * Without this, PC ide doesn't work well.
952 * TODO: remove this work around.
954 if (!(type
& PCI_BASE_ADDRESS_MEM_TYPE_64
) && last_addr
>= UINT32_MAX
) {
955 return PCI_BAR_UNMAPPED
;
959 * OS is allowed to set BAR beyond its addressable
960 * bits. For example, 32 bit OS can set 64bit bar
961 * to >4G. Check it. TODO: we might need to support
962 * it in the future for e.g. PAE.
964 if (last_addr
>= TARGET_PHYS_ADDR_MAX
) {
965 return PCI_BAR_UNMAPPED
;
971 static void pci_update_mappings(PCIDevice
*d
)
977 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
978 r
= &d
->io_regions
[i
];
980 /* this region isn't registered */
984 new_addr
= pci_bar_address(d
, i
, r
->type
, r
->size
);
986 /* This bar isn't changed */
987 if (new_addr
== r
->addr
)
990 /* now do the real mapping */
991 if (r
->addr
!= PCI_BAR_UNMAPPED
) {
992 memory_region_del_subregion(r
->address_space
, r
->memory
);
995 if (r
->addr
!= PCI_BAR_UNMAPPED
) {
996 memory_region_add_subregion_overlap(r
->address_space
,
997 r
->addr
, r
->memory
, 1);
1002 static inline int pci_irq_disabled(PCIDevice
*d
)
1004 return pci_get_word(d
->config
+ PCI_COMMAND
) & PCI_COMMAND_INTX_DISABLE
;
1007 /* Called after interrupt disabled field update in config space,
1008 * assert/deassert interrupts if necessary.
1009 * Gets original interrupt disable bit value (before update). */
1010 static void pci_update_irq_disabled(PCIDevice
*d
, int was_irq_disabled
)
1012 int i
, disabled
= pci_irq_disabled(d
);
1013 if (disabled
== was_irq_disabled
)
1015 for (i
= 0; i
< PCI_NUM_PINS
; ++i
) {
1016 int state
= pci_irq_state(d
, i
);
1017 pci_change_irq_level(d
, i
, disabled
? -state
: state
);
1021 uint32_t pci_default_read_config(PCIDevice
*d
,
1022 uint32_t address
, int len
)
1026 memcpy(&val
, d
->config
+ address
, len
);
1027 return le32_to_cpu(val
);
1030 void pci_default_write_config(PCIDevice
*d
, uint32_t addr
, uint32_t val
, int l
)
1032 int i
, was_irq_disabled
= pci_irq_disabled(d
);
1034 for (i
= 0; i
< l
; val
>>= 8, ++i
) {
1035 uint8_t wmask
= d
->wmask
[addr
+ i
];
1036 uint8_t w1cmask
= d
->w1cmask
[addr
+ i
];
1037 assert(!(wmask
& w1cmask
));
1038 d
->config
[addr
+ i
] = (d
->config
[addr
+ i
] & ~wmask
) | (val
& wmask
);
1039 d
->config
[addr
+ i
] &= ~(val
& w1cmask
); /* W1C: Write 1 to Clear */
1041 if (ranges_overlap(addr
, l
, PCI_BASE_ADDRESS_0
, 24) ||
1042 ranges_overlap(addr
, l
, PCI_ROM_ADDRESS
, 4) ||
1043 ranges_overlap(addr
, l
, PCI_ROM_ADDRESS1
, 4) ||
1044 range_covers_byte(addr
, l
, PCI_COMMAND
))
1045 pci_update_mappings(d
);
1047 if (range_covers_byte(addr
, l
, PCI_COMMAND
))
1048 pci_update_irq_disabled(d
, was_irq_disabled
);
1051 /***********************************************************/
1052 /* generic PCI irq support */
1054 /* 0 <= irq_num <= 3. level must be 0 or 1 */
1055 static void pci_set_irq(void *opaque
, int irq_num
, int level
)
1057 PCIDevice
*pci_dev
= opaque
;
1060 change
= level
- pci_irq_state(pci_dev
, irq_num
);
1064 pci_set_irq_state(pci_dev
, irq_num
, level
);
1065 pci_update_irq_status(pci_dev
);
1066 if (pci_irq_disabled(pci_dev
))
1068 pci_change_irq_level(pci_dev
, irq_num
, change
);
1071 /***********************************************************/
1072 /* monitor info on PCI */
1077 const char *fw_name
;
1078 uint16_t fw_ign_bits
;
1081 static const pci_class_desc pci_class_descriptions
[] =
1083 { 0x0001, "VGA controller", "display"},
1084 { 0x0100, "SCSI controller", "scsi"},
1085 { 0x0101, "IDE controller", "ide"},
1086 { 0x0102, "Floppy controller", "fdc"},
1087 { 0x0103, "IPI controller", "ipi"},
1088 { 0x0104, "RAID controller", "raid"},
1089 { 0x0106, "SATA controller"},
1090 { 0x0107, "SAS controller"},
1091 { 0x0180, "Storage controller"},
1092 { 0x0200, "Ethernet controller", "ethernet"},
1093 { 0x0201, "Token Ring controller", "token-ring"},
1094 { 0x0202, "FDDI controller", "fddi"},
1095 { 0x0203, "ATM controller", "atm"},
1096 { 0x0280, "Network controller"},
1097 { 0x0300, "VGA controller", "display", 0x00ff},
1098 { 0x0301, "XGA controller"},
1099 { 0x0302, "3D controller"},
1100 { 0x0380, "Display controller"},
1101 { 0x0400, "Video controller", "video"},
1102 { 0x0401, "Audio controller", "sound"},
1104 { 0x0403, "Audio controller", "sound"},
1105 { 0x0480, "Multimedia controller"},
1106 { 0x0500, "RAM controller", "memory"},
1107 { 0x0501, "Flash controller", "flash"},
1108 { 0x0580, "Memory controller"},
1109 { 0x0600, "Host bridge", "host"},
1110 { 0x0601, "ISA bridge", "isa"},
1111 { 0x0602, "EISA bridge", "eisa"},
1112 { 0x0603, "MC bridge", "mca"},
1113 { 0x0604, "PCI bridge", "pci"},
1114 { 0x0605, "PCMCIA bridge", "pcmcia"},
1115 { 0x0606, "NUBUS bridge", "nubus"},
1116 { 0x0607, "CARDBUS bridge", "cardbus"},
1117 { 0x0608, "RACEWAY bridge"},
1118 { 0x0680, "Bridge"},
1119 { 0x0700, "Serial port", "serial"},
1120 { 0x0701, "Parallel port", "parallel"},
1121 { 0x0800, "Interrupt controller", "interrupt-controller"},
1122 { 0x0801, "DMA controller", "dma-controller"},
1123 { 0x0802, "Timer", "timer"},
1124 { 0x0803, "RTC", "rtc"},
1125 { 0x0900, "Keyboard", "keyboard"},
1126 { 0x0901, "Pen", "pen"},
1127 { 0x0902, "Mouse", "mouse"},
1128 { 0x0A00, "Dock station", "dock", 0x00ff},
1129 { 0x0B00, "i386 cpu", "cpu", 0x00ff},
1130 { 0x0c00, "Fireware contorller", "fireware"},
1131 { 0x0c01, "Access bus controller", "access-bus"},
1132 { 0x0c02, "SSA controller", "ssa"},
1133 { 0x0c03, "USB controller", "usb"},
1134 { 0x0c04, "Fibre channel controller", "fibre-channel"},
1138 static void pci_for_each_device_under_bus(PCIBus
*bus
,
1139 void (*fn
)(PCIBus
*b
, PCIDevice
*d
))
1144 for(devfn
= 0; devfn
< ARRAY_SIZE(bus
->devices
); devfn
++) {
1145 d
= bus
->devices
[devfn
];
1152 void pci_for_each_device(PCIBus
*bus
, int bus_num
,
1153 void (*fn
)(PCIBus
*b
, PCIDevice
*d
))
1155 bus
= pci_find_bus_nr(bus
, bus_num
);
1158 pci_for_each_device_under_bus(bus
, fn
);
1162 static const pci_class_desc
*get_class_desc(int class)
1164 const pci_class_desc
*desc
;
1166 desc
= pci_class_descriptions
;
1167 while (desc
->desc
&& class != desc
->class) {
1174 static PciDeviceInfoList
*qmp_query_pci_devices(PCIBus
*bus
, int bus_num
);
1176 static PciMemoryRegionList
*qmp_query_pci_regions(const PCIDevice
*dev
)
1178 PciMemoryRegionList
*head
= NULL
, *cur_item
= NULL
;
1181 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
1182 const PCIIORegion
*r
= &dev
->io_regions
[i
];
1183 PciMemoryRegionList
*region
;
1189 region
= g_malloc0(sizeof(*region
));
1190 region
->value
= g_malloc0(sizeof(*region
->value
));
1192 if (r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) {
1193 region
->value
->type
= g_strdup("io");
1195 region
->value
->type
= g_strdup("memory");
1196 region
->value
->has_prefetch
= true;
1197 region
->value
->prefetch
= !!(r
->type
& PCI_BASE_ADDRESS_MEM_PREFETCH
);
1198 region
->value
->has_mem_type_64
= true;
1199 region
->value
->mem_type_64
= !!(r
->type
& PCI_BASE_ADDRESS_MEM_TYPE_64
);
1202 region
->value
->bar
= i
;
1203 region
->value
->address
= r
->addr
;
1204 region
->value
->size
= r
->size
;
1206 /* XXX: waiting for the qapi to support GSList */
1208 head
= cur_item
= region
;
1210 cur_item
->next
= region
;
1218 static PciBridgeInfo
*qmp_query_pci_bridge(PCIDevice
*dev
, PCIBus
*bus
,
1221 PciBridgeInfo
*info
;
1223 info
= g_malloc0(sizeof(*info
));
1225 info
->bus
.number
= dev
->config
[PCI_PRIMARY_BUS
];
1226 info
->bus
.secondary
= dev
->config
[PCI_SECONDARY_BUS
];
1227 info
->bus
.subordinate
= dev
->config
[PCI_SUBORDINATE_BUS
];
1229 info
->bus
.io_range
= g_malloc0(sizeof(*info
->bus
.io_range
));
1230 info
->bus
.io_range
->base
= pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_IO
);
1231 info
->bus
.io_range
->limit
= pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_IO
);
1233 info
->bus
.memory_range
= g_malloc0(sizeof(*info
->bus
.memory_range
));
1234 info
->bus
.memory_range
->base
= pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
);
1235 info
->bus
.memory_range
->limit
= pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
);
1237 info
->bus
.prefetchable_range
= g_malloc0(sizeof(*info
->bus
.prefetchable_range
));
1238 info
->bus
.prefetchable_range
->base
= pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_MEM_PREFETCH
);
1239 info
->bus
.prefetchable_range
->limit
= pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_MEM_PREFETCH
);
1241 if (dev
->config
[PCI_SECONDARY_BUS
] != 0) {
1242 PCIBus
*child_bus
= pci_find_bus_nr(bus
, dev
->config
[PCI_SECONDARY_BUS
]);
1244 info
->has_devices
= true;
1245 info
->devices
= qmp_query_pci_devices(child_bus
, dev
->config
[PCI_SECONDARY_BUS
]);
1252 static PciDeviceInfo
*qmp_query_pci_device(PCIDevice
*dev
, PCIBus
*bus
,
1255 const pci_class_desc
*desc
;
1256 PciDeviceInfo
*info
;
1260 info
= g_malloc0(sizeof(*info
));
1261 info
->bus
= bus_num
;
1262 info
->slot
= PCI_SLOT(dev
->devfn
);
1263 info
->function
= PCI_FUNC(dev
->devfn
);
1265 class = pci_get_word(dev
->config
+ PCI_CLASS_DEVICE
);
1266 info
->class_info
.class = class;
1267 desc
= get_class_desc(class);
1269 info
->class_info
.has_desc
= true;
1270 info
->class_info
.desc
= g_strdup(desc
->desc
);
1273 info
->id
.vendor
= pci_get_word(dev
->config
+ PCI_VENDOR_ID
);
1274 info
->id
.device
= pci_get_word(dev
->config
+ PCI_DEVICE_ID
);
1275 info
->regions
= qmp_query_pci_regions(dev
);
1276 info
->qdev_id
= g_strdup(dev
->qdev
.id
? dev
->qdev
.id
: "");
1278 if (dev
->config
[PCI_INTERRUPT_PIN
] != 0) {
1279 info
->has_irq
= true;
1280 info
->irq
= dev
->config
[PCI_INTERRUPT_LINE
];
1283 type
= dev
->config
[PCI_HEADER_TYPE
] & ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
1284 if (type
== PCI_HEADER_TYPE_BRIDGE
) {
1285 info
->has_pci_bridge
= true;
1286 info
->pci_bridge
= qmp_query_pci_bridge(dev
, bus
, bus_num
);
1292 static PciDeviceInfoList
*qmp_query_pci_devices(PCIBus
*bus
, int bus_num
)
1294 PciDeviceInfoList
*info
, *head
= NULL
, *cur_item
= NULL
;
1298 for (devfn
= 0; devfn
< ARRAY_SIZE(bus
->devices
); devfn
++) {
1299 dev
= bus
->devices
[devfn
];
1301 info
= g_malloc0(sizeof(*info
));
1302 info
->value
= qmp_query_pci_device(dev
, bus
, bus_num
);
1304 /* XXX: waiting for the qapi to support GSList */
1306 head
= cur_item
= info
;
1308 cur_item
->next
= info
;
1317 static PciInfo
*qmp_query_pci_bus(PCIBus
*bus
, int bus_num
)
1319 PciInfo
*info
= NULL
;
1321 bus
= pci_find_bus_nr(bus
, bus_num
);
1323 info
= g_malloc0(sizeof(*info
));
1324 info
->bus
= bus_num
;
1325 info
->devices
= qmp_query_pci_devices(bus
, bus_num
);
1331 PciInfoList
*qmp_query_pci(Error
**errp
)
1333 PciInfoList
*info
, *head
= NULL
, *cur_item
= NULL
;
1334 struct PCIHostBus
*host
;
1336 QLIST_FOREACH(host
, &host_buses
, next
) {
1337 info
= g_malloc0(sizeof(*info
));
1338 info
->value
= qmp_query_pci_bus(host
->bus
, 0);
1340 /* XXX: waiting for the qapi to support GSList */
1342 head
= cur_item
= info
;
1344 cur_item
->next
= info
;
1352 static const char * const pci_nic_models
[] = {
1364 static const char * const pci_nic_names
[] = {
1376 /* Initialize a PCI NIC. */
1377 /* FIXME callers should check for failure, but don't */
1378 PCIDevice
*pci_nic_init(NICInfo
*nd
, const char *default_model
,
1379 const char *default_devaddr
)
1381 const char *devaddr
= nd
->devaddr
? nd
->devaddr
: default_devaddr
;
1388 i
= qemu_find_nic_model(nd
, pci_nic_models
, default_model
);
1392 bus
= pci_get_bus_devfn(&devfn
, devaddr
);
1394 error_report("Invalid PCI device address %s for device %s",
1395 devaddr
, pci_nic_names
[i
]);
1399 pci_dev
= pci_create(bus
, devfn
, pci_nic_names
[i
]);
1400 dev
= &pci_dev
->qdev
;
1401 qdev_set_nic_properties(dev
, nd
);
1402 if (qdev_init(dev
) < 0)
1407 PCIDevice
*pci_nic_init_nofail(NICInfo
*nd
, const char *default_model
,
1408 const char *default_devaddr
)
1412 if (qemu_show_nic_models(nd
->model
, pci_nic_models
))
1415 res
= pci_nic_init(nd
, default_model
, default_devaddr
);
1421 /* Whether a given bus number is in range of the secondary
1422 * bus of the given bridge device. */
1423 static bool pci_secondary_bus_in_range(PCIDevice
*dev
, int bus_num
)
1425 return !(pci_get_word(dev
->config
+ PCI_BRIDGE_CONTROL
) &
1426 PCI_BRIDGE_CTL_BUS_RESET
) /* Don't walk the bus if it's reset. */ &&
1427 dev
->config
[PCI_SECONDARY_BUS
] < bus_num
&&
1428 bus_num
<= dev
->config
[PCI_SUBORDINATE_BUS
];
1431 static PCIBus
*pci_find_bus_nr(PCIBus
*bus
, int bus_num
)
1439 if (pci_bus_num(bus
) == bus_num
) {
1443 /* Consider all bus numbers in range for the host pci bridge. */
1444 if (bus
->parent_dev
&&
1445 !pci_secondary_bus_in_range(bus
->parent_dev
, bus_num
)) {
1450 for (; bus
; bus
= sec
) {
1451 QLIST_FOREACH(sec
, &bus
->child
, sibling
) {
1452 assert(sec
->parent_dev
);
1453 if (sec
->parent_dev
->config
[PCI_SECONDARY_BUS
] == bus_num
) {
1456 if (pci_secondary_bus_in_range(sec
->parent_dev
, bus_num
)) {
1465 PCIDevice
*pci_find_device(PCIBus
*bus
, int bus_num
, uint8_t devfn
)
1467 bus
= pci_find_bus_nr(bus
, bus_num
);
1472 return bus
->devices
[devfn
];
1475 static int pci_qdev_init(DeviceState
*qdev
)
1477 PCIDevice
*pci_dev
= (PCIDevice
*)qdev
;
1478 PCIDeviceClass
*pc
= PCI_DEVICE_GET_CLASS(pci_dev
);
1481 bool is_default_rom
;
1483 /* initialize cap_present for pci_is_express() and pci_config_size() */
1484 if (pc
->is_express
) {
1485 pci_dev
->cap_present
|= QEMU_PCI_CAP_EXPRESS
;
1488 bus
= FROM_QBUS(PCIBus
, qdev_get_parent_bus(qdev
));
1489 pci_dev
= do_pci_register_device(pci_dev
, bus
,
1490 object_get_typename(OBJECT(qdev
)),
1492 if (pci_dev
== NULL
)
1494 if (qdev
->hotplugged
&& pc
->no_hotplug
) {
1495 qerror_report(QERR_DEVICE_NO_HOTPLUG
, object_get_typename(OBJECT(pci_dev
)));
1496 do_pci_unregister_device(pci_dev
);
1500 rc
= pc
->init(pci_dev
);
1502 do_pci_unregister_device(pci_dev
);
1508 is_default_rom
= false;
1509 if (pci_dev
->romfile
== NULL
&& pc
->romfile
!= NULL
) {
1510 pci_dev
->romfile
= g_strdup(pc
->romfile
);
1511 is_default_rom
= true;
1513 pci_add_option_rom(pci_dev
, is_default_rom
);
1516 /* Let buses differentiate between hotplug and when device is
1517 * enabled during qemu machine creation. */
1518 rc
= bus
->hotplug(bus
->hotplug_qdev
, pci_dev
,
1519 qdev
->hotplugged
? PCI_HOTPLUG_ENABLED
:
1520 PCI_COLDPLUG_ENABLED
);
1522 int r
= pci_unregister_device(&pci_dev
->qdev
);
1530 static int pci_unplug_device(DeviceState
*qdev
)
1532 PCIDevice
*dev
= PCI_DEVICE(qdev
);
1533 PCIDeviceClass
*pc
= PCI_DEVICE_GET_CLASS(dev
);
1535 if (pc
->no_hotplug
) {
1536 qerror_report(QERR_DEVICE_NO_HOTPLUG
, object_get_typename(OBJECT(dev
)));
1539 return dev
->bus
->hotplug(dev
->bus
->hotplug_qdev
, dev
,
1540 PCI_HOTPLUG_DISABLED
);
1543 PCIDevice
*pci_create_multifunction(PCIBus
*bus
, int devfn
, bool multifunction
,
1548 dev
= qdev_create(&bus
->qbus
, name
);
1549 qdev_prop_set_int32(dev
, "addr", devfn
);
1550 qdev_prop_set_bit(dev
, "multifunction", multifunction
);
1551 return PCI_DEVICE(dev
);
1554 PCIDevice
*pci_create_simple_multifunction(PCIBus
*bus
, int devfn
,
1558 PCIDevice
*dev
= pci_create_multifunction(bus
, devfn
, multifunction
, name
);
1559 qdev_init_nofail(&dev
->qdev
);
1563 PCIDevice
*pci_create(PCIBus
*bus
, int devfn
, const char *name
)
1565 return pci_create_multifunction(bus
, devfn
, false, name
);
1568 PCIDevice
*pci_create_simple(PCIBus
*bus
, int devfn
, const char *name
)
1570 return pci_create_simple_multifunction(bus
, devfn
, false, name
);
1573 static int pci_find_space(PCIDevice
*pdev
, uint8_t size
)
1575 int config_size
= pci_config_size(pdev
);
1576 int offset
= PCI_CONFIG_HEADER_SIZE
;
1578 for (i
= PCI_CONFIG_HEADER_SIZE
; i
< config_size
; ++i
)
1581 else if (i
- offset
+ 1 == size
)
1586 static uint8_t pci_find_capability_list(PCIDevice
*pdev
, uint8_t cap_id
,
1591 if (!(pdev
->config
[PCI_STATUS
] & PCI_STATUS_CAP_LIST
))
1594 for (prev
= PCI_CAPABILITY_LIST
; (next
= pdev
->config
[prev
]);
1595 prev
= next
+ PCI_CAP_LIST_NEXT
)
1596 if (pdev
->config
[next
+ PCI_CAP_LIST_ID
] == cap_id
)
1604 static uint8_t pci_find_capability_at_offset(PCIDevice
*pdev
, uint8_t offset
)
1606 uint8_t next
, prev
, found
= 0;
1608 if (!(pdev
->used
[offset
])) {
1612 assert(pdev
->config
[PCI_STATUS
] & PCI_STATUS_CAP_LIST
);
1614 for (prev
= PCI_CAPABILITY_LIST
; (next
= pdev
->config
[prev
]);
1615 prev
= next
+ PCI_CAP_LIST_NEXT
) {
1616 if (next
<= offset
&& next
> found
) {
1623 /* Patch the PCI vendor and device ids in a PCI rom image if necessary.
1624 This is needed for an option rom which is used for more than one device. */
1625 static void pci_patch_ids(PCIDevice
*pdev
, uint8_t *ptr
, int size
)
1629 uint16_t rom_vendor_id
;
1630 uint16_t rom_device_id
;
1632 uint16_t pcir_offset
;
1635 /* Words in rom data are little endian (like in PCI configuration),
1636 so they can be read / written with pci_get_word / pci_set_word. */
1638 /* Only a valid rom will be patched. */
1639 rom_magic
= pci_get_word(ptr
);
1640 if (rom_magic
!= 0xaa55) {
1641 PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic
);
1644 pcir_offset
= pci_get_word(ptr
+ 0x18);
1645 if (pcir_offset
+ 8 >= size
|| memcmp(ptr
+ pcir_offset
, "PCIR", 4)) {
1646 PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset
);
1650 vendor_id
= pci_get_word(pdev
->config
+ PCI_VENDOR_ID
);
1651 device_id
= pci_get_word(pdev
->config
+ PCI_DEVICE_ID
);
1652 rom_vendor_id
= pci_get_word(ptr
+ pcir_offset
+ 4);
1653 rom_device_id
= pci_get_word(ptr
+ pcir_offset
+ 6);
1655 PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev
->romfile
,
1656 vendor_id
, device_id
, rom_vendor_id
, rom_device_id
);
1660 if (vendor_id
!= rom_vendor_id
) {
1661 /* Patch vendor id and checksum (at offset 6 for etherboot roms). */
1662 checksum
+= (uint8_t)rom_vendor_id
+ (uint8_t)(rom_vendor_id
>> 8);
1663 checksum
-= (uint8_t)vendor_id
+ (uint8_t)(vendor_id
>> 8);
1664 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr
[6], checksum
);
1666 pci_set_word(ptr
+ pcir_offset
+ 4, vendor_id
);
1669 if (device_id
!= rom_device_id
) {
1670 /* Patch device id and checksum (at offset 6 for etherboot roms). */
1671 checksum
+= (uint8_t)rom_device_id
+ (uint8_t)(rom_device_id
>> 8);
1672 checksum
-= (uint8_t)device_id
+ (uint8_t)(device_id
>> 8);
1673 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr
[6], checksum
);
1675 pci_set_word(ptr
+ pcir_offset
+ 6, device_id
);
1679 /* Add an option rom for the device */
1680 static int pci_add_option_rom(PCIDevice
*pdev
, bool is_default_rom
)
1686 const VMStateDescription
*vmsd
;
1690 if (strlen(pdev
->romfile
) == 0)
1693 if (!pdev
->rom_bar
) {
1695 * Load rom via fw_cfg instead of creating a rom bar,
1696 * for 0.11 compatibility.
1698 int class = pci_get_word(pdev
->config
+ PCI_CLASS_DEVICE
);
1699 if (class == 0x0300) {
1700 rom_add_vga(pdev
->romfile
);
1702 rom_add_option(pdev
->romfile
, -1);
1707 path
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, pdev
->romfile
);
1709 path
= g_strdup(pdev
->romfile
);
1712 size
= get_image_size(path
);
1714 error_report("%s: failed to find romfile \"%s\"",
1715 __FUNCTION__
, pdev
->romfile
);
1719 if (size
& (size
- 1)) {
1720 size
= 1 << qemu_fls(size
);
1723 vmsd
= qdev_get_vmsd(DEVICE(pdev
));
1726 snprintf(name
, sizeof(name
), "%s.rom", vmsd
->name
);
1728 snprintf(name
, sizeof(name
), "%s.rom", object_get_typename(OBJECT(pdev
)));
1730 pdev
->has_rom
= true;
1731 memory_region_init_ram(&pdev
->rom
, name
, size
);
1732 vmstate_register_ram(&pdev
->rom
, &pdev
->qdev
);
1733 ptr
= memory_region_get_ram_ptr(&pdev
->rom
);
1734 load_image(path
, ptr
);
1737 if (is_default_rom
) {
1738 /* Only the default rom images will be patched (if needed). */
1739 pci_patch_ids(pdev
, ptr
, size
);
1742 qemu_put_ram_ptr(ptr
);
1744 pci_register_bar(pdev
, PCI_ROM_SLOT
, 0, &pdev
->rom
);
1749 static void pci_del_option_rom(PCIDevice
*pdev
)
1754 vmstate_unregister_ram(&pdev
->rom
, &pdev
->qdev
);
1755 memory_region_destroy(&pdev
->rom
);
1756 pdev
->has_rom
= false;
1761 * Reserve space and add capability to the linked list in pci config space
1764 * Find and reserve space and add capability to the linked list
1765 * in pci config space */
1766 int pci_add_capability(PCIDevice
*pdev
, uint8_t cap_id
,
1767 uint8_t offset
, uint8_t size
)
1770 int i
, overlapping_cap
;
1773 offset
= pci_find_space(pdev
, size
);
1778 /* Verify that capabilities don't overlap. Note: device assignment
1779 * depends on this check to verify that the device is not broken.
1780 * Should never trigger for emulated devices, but it's helpful
1781 * for debugging these. */
1782 for (i
= offset
; i
< offset
+ size
; i
++) {
1783 overlapping_cap
= pci_find_capability_at_offset(pdev
, i
);
1784 if (overlapping_cap
) {
1785 fprintf(stderr
, "ERROR: %04x:%02x:%02x.%x "
1786 "Attempt to add PCI capability %x at offset "
1787 "%x overlaps existing capability %x at offset %x\n",
1788 pci_find_domain(pdev
->bus
), pci_bus_num(pdev
->bus
),
1789 PCI_SLOT(pdev
->devfn
), PCI_FUNC(pdev
->devfn
),
1790 cap_id
, offset
, overlapping_cap
, i
);
1796 config
= pdev
->config
+ offset
;
1797 config
[PCI_CAP_LIST_ID
] = cap_id
;
1798 config
[PCI_CAP_LIST_NEXT
] = pdev
->config
[PCI_CAPABILITY_LIST
];
1799 pdev
->config
[PCI_CAPABILITY_LIST
] = offset
;
1800 pdev
->config
[PCI_STATUS
] |= PCI_STATUS_CAP_LIST
;
1801 memset(pdev
->used
+ offset
, 0xFF, size
);
1802 /* Make capability read-only by default */
1803 memset(pdev
->wmask
+ offset
, 0, size
);
1804 /* Check capability by default */
1805 memset(pdev
->cmask
+ offset
, 0xFF, size
);
1809 /* Unlink capability from the pci config space. */
1810 void pci_del_capability(PCIDevice
*pdev
, uint8_t cap_id
, uint8_t size
)
1812 uint8_t prev
, offset
= pci_find_capability_list(pdev
, cap_id
, &prev
);
1815 pdev
->config
[prev
] = pdev
->config
[offset
+ PCI_CAP_LIST_NEXT
];
1816 /* Make capability writable again */
1817 memset(pdev
->wmask
+ offset
, 0xff, size
);
1818 memset(pdev
->w1cmask
+ offset
, 0, size
);
1819 /* Clear cmask as device-specific registers can't be checked */
1820 memset(pdev
->cmask
+ offset
, 0, size
);
1821 memset(pdev
->used
+ offset
, 0, size
);
1823 if (!pdev
->config
[PCI_CAPABILITY_LIST
])
1824 pdev
->config
[PCI_STATUS
] &= ~PCI_STATUS_CAP_LIST
;
1827 uint8_t pci_find_capability(PCIDevice
*pdev
, uint8_t cap_id
)
1829 return pci_find_capability_list(pdev
, cap_id
, NULL
);
1832 static void pcibus_dev_print(Monitor
*mon
, DeviceState
*dev
, int indent
)
1834 PCIDevice
*d
= (PCIDevice
*)dev
;
1835 const pci_class_desc
*desc
;
1840 class = pci_get_word(d
->config
+ PCI_CLASS_DEVICE
);
1841 desc
= pci_class_descriptions
;
1842 while (desc
->desc
&& class != desc
->class)
1845 snprintf(ctxt
, sizeof(ctxt
), "%s", desc
->desc
);
1847 snprintf(ctxt
, sizeof(ctxt
), "Class %04x", class);
1850 monitor_printf(mon
, "%*sclass %s, addr %02x:%02x.%x, "
1851 "pci id %04x:%04x (sub %04x:%04x)\n",
1852 indent
, "", ctxt
, pci_bus_num(d
->bus
),
1853 PCI_SLOT(d
->devfn
), PCI_FUNC(d
->devfn
),
1854 pci_get_word(d
->config
+ PCI_VENDOR_ID
),
1855 pci_get_word(d
->config
+ PCI_DEVICE_ID
),
1856 pci_get_word(d
->config
+ PCI_SUBSYSTEM_VENDOR_ID
),
1857 pci_get_word(d
->config
+ PCI_SUBSYSTEM_ID
));
1858 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
1859 r
= &d
->io_regions
[i
];
1862 monitor_printf(mon
, "%*sbar %d: %s at 0x%"FMT_PCIBUS
1863 " [0x%"FMT_PCIBUS
"]\n",
1865 i
, r
->type
& PCI_BASE_ADDRESS_SPACE_IO
? "i/o" : "mem",
1866 r
->addr
, r
->addr
+ r
->size
- 1);
1870 static char *pci_dev_fw_name(DeviceState
*dev
, char *buf
, int len
)
1872 PCIDevice
*d
= (PCIDevice
*)dev
;
1873 const char *name
= NULL
;
1874 const pci_class_desc
*desc
= pci_class_descriptions
;
1875 int class = pci_get_word(d
->config
+ PCI_CLASS_DEVICE
);
1877 while (desc
->desc
&&
1878 (class & ~desc
->fw_ign_bits
) !=
1879 (desc
->class & ~desc
->fw_ign_bits
)) {
1884 name
= desc
->fw_name
;
1888 pstrcpy(buf
, len
, name
);
1890 snprintf(buf
, len
, "pci%04x,%04x",
1891 pci_get_word(d
->config
+ PCI_VENDOR_ID
),
1892 pci_get_word(d
->config
+ PCI_DEVICE_ID
));
1898 static char *pcibus_get_fw_dev_path(DeviceState
*dev
)
1900 PCIDevice
*d
= (PCIDevice
*)dev
;
1901 char path
[50], name
[33];
1904 off
= snprintf(path
, sizeof(path
), "%s@%x",
1905 pci_dev_fw_name(dev
, name
, sizeof name
),
1906 PCI_SLOT(d
->devfn
));
1907 if (PCI_FUNC(d
->devfn
))
1908 snprintf(path
+ off
, sizeof(path
) + off
, ",%x", PCI_FUNC(d
->devfn
));
1909 return strdup(path
);
1912 static char *pcibus_get_dev_path(DeviceState
*dev
)
1914 PCIDevice
*d
= container_of(dev
, PCIDevice
, qdev
);
1917 /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function.
1918 * 00 is added here to make this format compatible with
1919 * domain:Bus:Slot.Func for systems without nested PCI bridges.
1920 * Slot.Function list specifies the slot and function numbers for all
1921 * devices on the path from root to the specific device. */
1922 char domain
[] = "DDDD:00";
1923 char slot
[] = ":SS.F";
1924 int domain_len
= sizeof domain
- 1 /* For '\0' */;
1925 int slot_len
= sizeof slot
- 1 /* For '\0' */;
1930 /* Calculate # of slots on path between device and root. */;
1932 for (t
= d
; t
; t
= t
->bus
->parent_dev
) {
1936 path_len
= domain_len
+ slot_len
* slot_depth
;
1938 /* Allocate memory, fill in the terminating null byte. */
1939 path
= g_malloc(path_len
+ 1 /* For '\0' */);
1940 path
[path_len
] = '\0';
1942 /* First field is the domain. */
1943 s
= snprintf(domain
, sizeof domain
, "%04x:00", pci_find_domain(d
->bus
));
1944 assert(s
== domain_len
);
1945 memcpy(path
, domain
, domain_len
);
1947 /* Fill in slot numbers. We walk up from device to root, so need to print
1948 * them in the reverse order, last to first. */
1949 p
= path
+ path_len
;
1950 for (t
= d
; t
; t
= t
->bus
->parent_dev
) {
1952 s
= snprintf(slot
, sizeof slot
, ":%02x.%x",
1953 PCI_SLOT(t
->devfn
), PCI_FUNC(t
->devfn
));
1954 assert(s
== slot_len
);
1955 memcpy(p
, slot
, slot_len
);
1961 static int pci_qdev_find_recursive(PCIBus
*bus
,
1962 const char *id
, PCIDevice
**pdev
)
1964 DeviceState
*qdev
= qdev_find_recursive(&bus
->qbus
, id
);
1969 /* roughly check if given qdev is pci device */
1970 if (object_dynamic_cast(OBJECT(qdev
), TYPE_PCI_DEVICE
)) {
1971 *pdev
= PCI_DEVICE(qdev
);
1977 int pci_qdev_find_device(const char *id
, PCIDevice
**pdev
)
1979 struct PCIHostBus
*host
;
1982 QLIST_FOREACH(host
, &host_buses
, next
) {
1983 int tmp
= pci_qdev_find_recursive(host
->bus
, id
, pdev
);
1988 if (tmp
!= -ENODEV
) {
1996 MemoryRegion
*pci_address_space(PCIDevice
*dev
)
1998 return dev
->bus
->address_space_mem
;
2001 MemoryRegion
*pci_address_space_io(PCIDevice
*dev
)
2003 return dev
->bus
->address_space_io
;
2006 static void pci_device_class_init(ObjectClass
*klass
, void *data
)
2008 DeviceClass
*k
= DEVICE_CLASS(klass
);
2009 k
->init
= pci_qdev_init
;
2010 k
->unplug
= pci_unplug_device
;
2011 k
->exit
= pci_unregister_device
;
2012 k
->bus_type
= TYPE_PCI_BUS
;
2013 k
->props
= pci_props
;
2016 static TypeInfo pci_device_type_info
= {
2017 .name
= TYPE_PCI_DEVICE
,
2018 .parent
= TYPE_DEVICE
,
2019 .instance_size
= sizeof(PCIDevice
),
2021 .class_size
= sizeof(PCIDeviceClass
),
2022 .class_init
= pci_device_class_init
,
2025 static void pci_register_types(void)
2027 type_register_static(&pci_bus_info
);
2028 type_register_static(&pci_device_type_info
);
2031 type_init(pci_register_types
)