pci: move pci core code to hw/pci
Move files and modify makefiles to pick them at the new location. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
ca818cfbfd
commit
315a1350c4
@ -1,14 +1,10 @@
|
||||
common-obj-y = usb/ ide/
|
||||
common-obj-y = usb/ ide/ pci/
|
||||
common-obj-y += loader.o
|
||||
common-obj-$(CONFIG_VIRTIO) += virtio-console.o
|
||||
common-obj-$(CONFIG_VIRTIO) += virtio-rng.o
|
||||
common-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
|
||||
common-obj-y += fw_cfg.o
|
||||
common-obj-$(CONFIG_PCI) += pci.o pci_bridge.o pci_bridge_dev.o
|
||||
common-obj-$(CONFIG_PCI) += msix.o msi.o
|
||||
common-obj-$(CONFIG_PCI) += shpc.o
|
||||
common-obj-$(CONFIG_PCI) += slotid_cap.o
|
||||
common-obj-$(CONFIG_PCI) += pci_host.o pcie_host.o
|
||||
common-obj-$(CONFIG_PCI) += pci_bridge_dev.o
|
||||
common-obj-$(CONFIG_PCI) += ioh3420.o xio3130_upstream.o xio3130_downstream.o
|
||||
common-obj-$(CONFIG_PCI) += i82801b11.o
|
||||
common-obj-y += watchdog.o
|
||||
@ -102,8 +98,6 @@ common-obj-$(CONFIG_XGMAC) += xgmac.o
|
||||
# PCI watchdog devices
|
||||
common-obj-$(CONFIG_PCI) += wdt_i6300esb.o
|
||||
|
||||
common-obj-$(CONFIG_PCI) += pcie.o pcie_aer.o pcie_port.o
|
||||
|
||||
# PCI network cards
|
||||
common-obj-$(CONFIG_NE2000_PCI) += ne2000.o
|
||||
common-obj-$(CONFIG_EEPRO100_PCI) += eepro100.o
|
||||
@ -199,7 +193,6 @@ obj-$(CONFIG_VIRTIO) += virtio-serial-bus.o virtio-scsi.o
|
||||
obj-$(CONFIG_SOFTMMU) += vhost_net.o
|
||||
obj-$(CONFIG_VHOST_NET) += vhost.o
|
||||
obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/
|
||||
obj-$(CONFIG_NO_PCI) += pci-stub.o
|
||||
obj-$(CONFIG_VGA) += vga.o
|
||||
obj-$(CONFIG_SOFTMMU) += device-hotplug.o
|
||||
obj-$(CONFIG_XEN) += xen_domainbuild.o xen_machine_pv.o
|
||||
|
@ -2,7 +2,7 @@ obj-y += mc146818rtc.o pc.o
|
||||
obj-y += apic_common.o apic.o kvmvapic.o
|
||||
obj-y += sga.o ioapic_common.o ioapic.o piix_pci.o
|
||||
obj-y += vmport.o
|
||||
obj-y += pci-hotplug.o smbios.o wdt_ib700.o
|
||||
obj-y += pci/pci-hotplug.o smbios.o wdt_ib700.o
|
||||
obj-y += debugcon.o multiboot.o
|
||||
obj-y += pc_piix.o
|
||||
obj-y += pc_sysfw.o
|
||||
|
7
hw/pci/Makefile.objs
Normal file
7
hw/pci/Makefile.objs
Normal file
@ -0,0 +1,7 @@
|
||||
common-obj-$(CONFIG_PCI) += pci.o pci_bridge.o
|
||||
common-obj-$(CONFIG_PCI) += msix.o msi.o
|
||||
common-obj-$(CONFIG_PCI) += shpc.o
|
||||
common-obj-$(CONFIG_PCI) += slotid_cap.o
|
||||
common-obj-$(CONFIG_PCI) += pci_host.o pcie_host.o
|
||||
common-obj-$(CONFIG_PCI) += pcie.o pcie_aer.o pcie_port.o
|
||||
common-obj-$(CONFIG_NO_PCI) += pci-stub.o
|
@ -10,7 +10,7 @@ obj-y += ppc_newworld.o
|
||||
# IBM pSeries (sPAPR)
|
||||
obj-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
|
||||
obj-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
|
||||
obj-$(CONFIG_PSERIES) += spapr_pci.o pci-hotplug.o spapr_iommu.o
|
||||
obj-$(CONFIG_PSERIES) += spapr_pci.o pci/pci-hotplug.o spapr_iommu.o
|
||||
obj-$(CONFIG_PSERIES) += spapr_events.o
|
||||
# PowerPC 4xx boards
|
||||
obj-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
|
||||
|
Loading…
Reference in New Issue
Block a user