mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

TYPE_CHIPIDEA models an IP block which is also used in TYPE_ZYNQ_MACHINE which
itself is not an IMX device. CONFIG_ZYNQ selects CONFIG_USB_EHCI_SYSBUS while
TYPE_CHIPIDEA is a separate compilation unit, so only works by accident if
CONFIG_IMX is given. Fix that by extracting CONFIG_USB_CHIPIDEA from CONFIG_IMX.
cc: qemu-stable@nongnu.org
Fixes: 616ec12d0f
"hw/arm/xilinx_zynq: Fix USB port instantiation"
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Message-id: 20250209103604.29545-1-shentey@gmail.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
149 lines
2 KiB
Text
149 lines
2 KiB
Text
config USB
|
|
bool
|
|
|
|
config USB_UHCI
|
|
bool
|
|
default y if PCI_DEVICES
|
|
depends on PCI
|
|
select USB
|
|
|
|
config USB_OHCI
|
|
bool
|
|
select USB
|
|
|
|
config USB_OHCI_SYSBUS
|
|
bool
|
|
select USB_OHCI
|
|
|
|
config USB_OHCI_PCI
|
|
bool
|
|
default y if PCI_DEVICES
|
|
depends on PCI
|
|
select USB_OHCI
|
|
|
|
config USB_EHCI
|
|
bool
|
|
select USB
|
|
|
|
config USB_EHCI_PCI
|
|
bool
|
|
default y if PCI_DEVICES
|
|
select USB_EHCI
|
|
|
|
config USB_EHCI_SYSBUS
|
|
bool
|
|
select USB_EHCI
|
|
|
|
config USB_XHCI
|
|
bool
|
|
select USB
|
|
|
|
config USB_XHCI_PCI
|
|
bool
|
|
default y if PCI_DEVICES || PCIE_DEVICES
|
|
depends on PCI
|
|
select USB_XHCI
|
|
|
|
config USB_XHCI_NEC
|
|
bool
|
|
default y if PCI_DEVICES
|
|
select USB_XHCI_PCI
|
|
|
|
config USB_XHCI_SYSBUS
|
|
bool
|
|
select USB_XHCI
|
|
|
|
config USB_DWC2
|
|
bool
|
|
select USB
|
|
|
|
config USB_HUB
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_HID
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_TABLET_WACOM
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_STORAGE_CORE
|
|
bool
|
|
depends on USB
|
|
select SCSI
|
|
|
|
config USB_STORAGE_CLASSIC
|
|
bool
|
|
default y
|
|
depends on USB
|
|
select USB_STORAGE_CORE
|
|
|
|
config USB_STORAGE_BOT
|
|
bool
|
|
default y
|
|
depends on USB
|
|
select USB_STORAGE_CORE
|
|
|
|
config USB_STORAGE_UAS
|
|
bool
|
|
default y
|
|
depends on USB
|
|
select SCSI
|
|
|
|
config USB_AUDIO
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_SERIAL
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_NETWORK
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_SMARTCARD
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_STORAGE_MTP
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_U2F
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_CANOKEY
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config IMX_USBPHY
|
|
bool
|
|
default y
|
|
depends on USB
|
|
|
|
config USB_DWC3
|
|
bool
|
|
select USB_XHCI_SYSBUS
|
|
select REGISTER
|
|
|
|
config XLNX_USB_SUBSYS
|
|
bool
|
|
select USB_DWC3
|
|
|
|
config USB_CHIPIDEA
|
|
bool
|
|
select USB_EHCI_SYSBUS
|