mirror of
https://github.com/qemu/qemu.git
synced 2025-08-15 13:47:03 +00:00
hw/xilinx_*: Share Xilinx devices between ppc and microblaze
Speeds up the build. xilinx_ethlite uses tswap32() and is thus target-dependent. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
f756c7a723
commit
9bbfbb61af
@ -3,3 +3,4 @@
|
|||||||
CONFIG_PTIMER=y
|
CONFIG_PTIMER=y
|
||||||
CONFIG_PFLASH_CFI01=y
|
CONFIG_PFLASH_CFI01=y
|
||||||
CONFIG_SERIAL=y
|
CONFIG_SERIAL=y
|
||||||
|
CONFIG_XILINX=y
|
||||||
|
@ -3,3 +3,4 @@
|
|||||||
CONFIG_PTIMER=y
|
CONFIG_PTIMER=y
|
||||||
CONFIG_PFLASH_CFI01=y
|
CONFIG_PFLASH_CFI01=y
|
||||||
CONFIG_SERIAL=y
|
CONFIG_SERIAL=y
|
||||||
|
CONFIG_XILINX=y
|
||||||
|
@ -36,3 +36,4 @@ CONFIG_PFLASH_CFI01=y
|
|||||||
CONFIG_PFLASH_CFI02=y
|
CONFIG_PFLASH_CFI02=y
|
||||||
CONFIG_PTIMER=y
|
CONFIG_PTIMER=y
|
||||||
CONFIG_I8259=y
|
CONFIG_I8259=y
|
||||||
|
CONFIG_XILINX=y
|
||||||
|
@ -33,3 +33,4 @@ CONFIG_PFLASH_CFI01=y
|
|||||||
CONFIG_PFLASH_CFI02=y
|
CONFIG_PFLASH_CFI02=y
|
||||||
CONFIG_PTIMER=y
|
CONFIG_PTIMER=y
|
||||||
CONFIG_I8259=y
|
CONFIG_I8259=y
|
||||||
|
CONFIG_XILINX=y
|
||||||
|
@ -33,3 +33,4 @@ CONFIG_PFLASH_CFI01=y
|
|||||||
CONFIG_PFLASH_CFI02=y
|
CONFIG_PFLASH_CFI02=y
|
||||||
CONFIG_PTIMER=y
|
CONFIG_PTIMER=y
|
||||||
CONFIG_I8259=y
|
CONFIG_I8259=y
|
||||||
|
CONFIG_XILINX=y
|
||||||
|
@ -59,6 +59,11 @@ hw-obj-$(CONFIG_PIIX4) += piix4.o
|
|||||||
hw-obj-$(CONFIG_G364FB) += g364fb.o
|
hw-obj-$(CONFIG_G364FB) += g364fb.o
|
||||||
hw-obj-$(CONFIG_JAZZ_LED) += jazz_led.o
|
hw-obj-$(CONFIG_JAZZ_LED) += jazz_led.o
|
||||||
|
|
||||||
|
# Xilinx devices
|
||||||
|
hw-obj-$(CONFIG_XILINX) += xilinx_intc.o
|
||||||
|
hw-obj-$(CONFIG_XILINX) += xilinx_timer.o
|
||||||
|
hw-obj-$(CONFIG_XILINX) += xilinx_uartlite.o
|
||||||
|
|
||||||
# PCI watchdog devices
|
# PCI watchdog devices
|
||||||
hw-obj-$(CONFIG_PCI) += wdt_i6300esb.o
|
hw-obj-$(CONFIG_PCI) += wdt_i6300esb.o
|
||||||
|
|
||||||
|
@ -3,9 +3,6 @@ obj-y += petalogix_ml605_mmu.o
|
|||||||
obj-y += microblaze_boot.o
|
obj-y += microblaze_boot.o
|
||||||
|
|
||||||
obj-y += microblaze_pic_cpu.o
|
obj-y += microblaze_pic_cpu.o
|
||||||
obj-y += xilinx_intc.o
|
|
||||||
obj-y += xilinx_timer.o
|
|
||||||
obj-y += xilinx_uartlite.o
|
|
||||||
obj-y += xilinx_ethlite.o
|
obj-y += xilinx_ethlite.o
|
||||||
obj-y += xilinx_axidma.o
|
obj-y += xilinx_axidma.o
|
||||||
obj-y += xilinx_axienet.o
|
obj-y += xilinx_axienet.o
|
||||||
|
@ -23,9 +23,6 @@ obj-y += openpic.o
|
|||||||
obj-$(CONFIG_FDT) += ../device_tree.o
|
obj-$(CONFIG_FDT) += ../device_tree.o
|
||||||
|
|
||||||
# Xilinx PPC peripherals
|
# Xilinx PPC peripherals
|
||||||
obj-y += xilinx_intc.o
|
|
||||||
obj-y += xilinx_timer.o
|
|
||||||
obj-y += xilinx_uartlite.o
|
|
||||||
obj-y += xilinx_ethlite.o
|
obj-y += xilinx_ethlite.o
|
||||||
|
|
||||||
obj-y := $(addprefix ../,$(obj-y))
|
obj-y := $(addprefix ../,$(obj-y))
|
||||||
|
Loading…
Reference in New Issue
Block a user