diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2011-07-03 16:00:09 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2012-03-16 00:41:28 +0200 |
commit | 4eb812f7603f57dc63f6b74e3c464a60ed5bc91b (patch) | |
tree | 9917424dda9b0695335395d66c4bcfa6b73e19d6 /Makefile.objs | |
parent | 762833b3b88b7b79af442439a8b138a04786ec3d (diff) | |
download | qemu-4eb812f7603f57dc63f6b74e3c464a60ed5bc91b.zip qemu-4eb812f7603f57dc63f6b74e3c464a60ed5bc91b.tar.gz qemu-4eb812f7603f57dc63f6b74e3c464a60ed5bc91b.tar.bz2 |
pci: add standard bridge device
This adds support for a standard pci to pci bridge,
enabling support for more than 32 PCI devices in the system.
Device hotplug is supported by means of SHPC controller.
For guests with an SHPC driver, this allows robust hotplug
and even hotplug of nested bridges, up to 31 devices
per bridge.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index 5b97871..25400e9 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -213,7 +213,7 @@ hw-obj-$(CONFIG_VIRTIO) += virtio-console.o hw-obj-y += usb/libhw.o hw-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o hw-obj-y += fw_cfg.o -hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o +hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o pci_bridge_dev.o hw-obj-$(CONFIG_PCI) += msix.o msi.o hw-obj-$(CONFIG_PCI) += shpc.o hw-obj-$(CONFIG_PCI) += slotid_cap.o |