mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 7c0fa8dff8
			
		
	
	
		7c0fa8dff8
		
	
	
	
	
		
			
			This patch provides the building blocks for creating an SR/IOV PCIe Extended Capability header and register/unregister SR/IOV Virtual Functions. Signed-off-by: Knut Omang <knuto@ifi.uio.no> Message-Id: <20220217174504.1051716-2-lukasz.maniak@linux.intel.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			642 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			642 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| pci_ss = ss.source_set()
 | |
| pci_ss.add(files(
 | |
|   'msi.c',
 | |
|   'msix.c',
 | |
|   'pci.c',
 | |
|   'pci_bridge.c',
 | |
|   'pci_host.c',
 | |
|   'pcie_sriov.c',
 | |
|   'shpc.c',
 | |
|   'slotid_cap.c'
 | |
| ))
 | |
| # The functions in these modules can be used by devices too.  Since we
 | |
| # allow plugging PCIe devices into PCI buses, include them even if
 | |
| # CONFIG_PCI_EXPRESS=n.
 | |
| pci_ss.add(files('pcie.c', 'pcie_aer.c'))
 | |
| softmmu_ss.add(when: 'CONFIG_PCI_EXPRESS', if_true: files('pcie_port.c', 'pcie_host.c'))
 | |
| softmmu_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss)
 | |
| 
 | |
| softmmu_ss.add(when: 'CONFIG_PCI', if_false: files('pci-stub.c'))
 | |
| softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('pci-stub.c'))
 |