2020-08-06 13:07:39 +02:00
|
|
|
hw_usb_modules = {}
|
|
|
|
|
|
|
|
# usb subsystem core
|
2021-04-25 00:41:10 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB', if_true: files(
|
2020-08-06 13:07:39 +02:00
|
|
|
'bus.c',
|
|
|
|
'combined-packet.c',
|
|
|
|
'core.c',
|
|
|
|
'desc.c',
|
|
|
|
'desc-msos.c',
|
2021-04-25 00:41:10 +02:00
|
|
|
'libhw.c',
|
|
|
|
'pcap.c',
|
2020-08-06 13:07:39 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
# usb host adapters
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_UHCI', if_true: files('hcd-uhci.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_OHCI', if_true: files('hcd-ohci.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_OHCI_PCI', if_true: files('hcd-ohci-pci.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_EHCI', if_true: files('hcd-ehci.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_EHCI_PCI', if_true: files('hcd-ehci-pci.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_EHCI_SYSBUS', if_true: files('hcd-ehci.c', 'hcd-ehci-sysbus.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_XHCI', if_true: files('hcd-xhci.c'))
|
2020-09-24 16:20:51 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_XHCI_PCI', if_true: files('hcd-xhci-pci.c'))
|
2020-09-24 16:20:53 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_XHCI_SYSBUS', if_true: files('hcd-xhci-sysbus.c'))
|
2020-08-06 13:07:39 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_XHCI_NEC', if_true: files('hcd-xhci-nec.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_MUSB', if_true: files('hcd-musb.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_DWC2', if_true: files('hcd-dwc2.c'))
|
2020-12-03 20:22:35 +01:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_DWC3', if_true: files('hcd-dwc3.c'))
|
2020-08-06 13:07:39 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(when: 'CONFIG_TUSB6010', if_true: files('tusb6010.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('chipidea.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_IMX_USBPHY', if_true: files('imx-usb-phy.c'))
|
2021-03-09 20:08:02 +01:00
|
|
|
softmmu_ss.add(when: 'CONFIG_VT82C686', if_true: files('vt82c686-uhci-pci.c'))
|
2020-12-03 20:22:34 +01:00
|
|
|
specific_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-usb2-ctrl-regs.c'))
|
2020-12-03 20:22:36 +01:00
|
|
|
specific_ss.add(when: 'CONFIG_XLNX_USB_SUBSYS', if_true: files('xlnx-usb-subsystem.c'))
|
2020-08-06 13:07:39 +02:00
|
|
|
|
|
|
|
# emulated usb devices
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB', if_true: files('dev-hub.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB', if_true: files('dev-hid.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_TABLET_WACOM', if_true: files('dev-wacom.c'))
|
2021-03-12 10:04:25 +01:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_STORAGE_CORE', if_true: files('dev-storage.c'))
|
2021-03-12 10:04:23 +01:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_STORAGE_BOT', if_true: files('dev-storage-bot.c'))
|
2021-03-12 10:04:25 +01:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_STORAGE_CLASSIC', if_true: files('dev-storage-classic.c'))
|
2020-08-06 13:07:39 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_STORAGE_UAS', if_true: files('dev-uas.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_AUDIO', if_true: files('dev-audio.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_SERIAL', if_true: files('dev-serial.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_NETWORK', if_true: files('dev-network.c'))
|
|
|
|
softmmu_ss.add(when: ['CONFIG_POSIX', 'CONFIG_USB_STORAGE_MTP'], if_true: files('dev-mtp.c'))
|
|
|
|
|
|
|
|
# smartcard
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_SMARTCARD', if_true: files('dev-smartcard-reader.c'))
|
|
|
|
|
2021-06-03 11:15:26 +02:00
|
|
|
if cacard.found()
|
2020-08-06 13:07:39 +02:00
|
|
|
usbsmartcard_ss = ss.source_set()
|
|
|
|
usbsmartcard_ss.add(when: 'CONFIG_USB_SMARTCARD',
|
|
|
|
if_true: [cacard, files('ccid-card-emulated.c', 'ccid-card-passthru.c')])
|
|
|
|
hw_usb_modules += {'smartcard': usbsmartcard_ss}
|
|
|
|
endif
|
|
|
|
|
2020-08-26 13:42:04 +02:00
|
|
|
# U2F
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_U2F', if_true: files('u2f.c'))
|
2020-08-26 13:42:09 +02:00
|
|
|
softmmu_ss.add(when: ['CONFIG_LINUX', 'CONFIG_USB_U2F'], if_true: [libudev, files('u2f-passthru.c')])
|
2020-08-26 13:42:04 +02:00
|
|
|
if u2f.found()
|
|
|
|
softmmu_ss.add(when: 'CONFIG_USB_U2F', if_true: [u2f, files('u2f-emulated.c')])
|
|
|
|
endif
|
|
|
|
|
2020-08-06 13:07:39 +02:00
|
|
|
# usb redirect
|
2021-06-03 11:15:26 +02:00
|
|
|
if usbredir.found()
|
2020-08-06 13:07:39 +02:00
|
|
|
usbredir_ss = ss.source_set()
|
|
|
|
usbredir_ss.add(when: 'CONFIG_USB',
|
|
|
|
if_true: [usbredir, files('redirect.c', 'quirks.c')])
|
|
|
|
hw_usb_modules += {'redirect': usbredir_ss}
|
|
|
|
endif
|
|
|
|
|
|
|
|
# usb pass-through
|
2021-07-21 10:17:18 +02:00
|
|
|
if libusb.found()
|
2021-06-24 12:38:35 +02:00
|
|
|
usbhost_ss = ss.source_set()
|
|
|
|
usbhost_ss.add(when: ['CONFIG_USB', libusb],
|
|
|
|
if_true: files('host-libusb.c'))
|
|
|
|
hw_usb_modules += {'host': usbhost_ss}
|
|
|
|
endif
|
2020-08-06 13:07:39 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(when: ['CONFIG_USB', 'CONFIG_XEN', libusb], if_true: files('xen-usb.c'))
|
|
|
|
|
|
|
|
modules += { 'hw-usb': hw_usb_modules }
|