mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:30:01 +00:00 
			
		
		
		
	 d64e5eabc4
			
		
	
	
		d64e5eabc4
		
	
	
	
	
		
			
			Add code needed to get a functional PCI subsytem when using in conjunction with upstream Linux guest (4.13+). Tested to work against "e1000e" (network adapter, using MSI interrupts) as well as "usb-ehci" (USB controller, using legacy PCI interrupts). Based on "i.MX6 Applications Processor Reference Manual" (Document Number: IMX6DQRM Rev. 4) as well as corresponding dirver in Linux kernel (circa 4.13 - 4.16 found in drivers/pci/dwc/*) Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			22 lines
		
	
	
		
			626 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			626 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| common-obj-y += pam.o
 | |
| 
 | |
| # PPC devices
 | |
| common-obj-$(CONFIG_PREP_PCI) += prep.o
 | |
| common-obj-$(CONFIG_GRACKLE_PCI) += grackle.o
 | |
| # NewWorld PowerMac
 | |
| common-obj-$(CONFIG_UNIN_PCI) += uninorth.o
 | |
| # PowerPC E500 boards
 | |
| common-obj-$(CONFIG_PPCE500_PCI) += ppce500.o
 | |
| 
 | |
| # ARM devices
 | |
| common-obj-$(CONFIG_VERSATILE_PCI) += versatile.o
 | |
| 
 | |
| common-obj-$(CONFIG_PCI_SABRE) += sabre.o
 | |
| common-obj-$(CONFIG_FULONG) += bonito.o
 | |
| common-obj-$(CONFIG_PCI_PIIX) += piix.o
 | |
| common-obj-$(CONFIG_PCI_Q35) += q35.o
 | |
| common-obj-$(CONFIG_PCI_GENERIC) += gpex.o
 | |
| common-obj-$(CONFIG_PCI_XILINX) += xilinx-pcie.o
 | |
| 
 | |
| common-obj-$(CONFIG_PCI_DESIGNWARE) += designware.o
 |