hw/dma: Add SiFive platform DMA controller emulation
[qemu/ar7.git] / hw / usb / meson.build
blobb7c7ff23bfbd605469cc6b7b01772149d97c4b3d
1 hw_usb_modules = {}
3 # usb subsystem core
4 softmmu_ss.add(files(
5   'bus.c',
6   'combined-packet.c',
7   'core.c',
8   'libhw.c'
9 ))
11 softmmu_ss.add(when: 'CONFIG_USB', if_true: files(
12   'desc.c',
13   'desc-msos.c',
16 # usb host adapters
17 softmmu_ss.add(when: 'CONFIG_USB_UHCI', if_true: files('hcd-uhci.c'))
18 softmmu_ss.add(when: 'CONFIG_USB_OHCI', if_true: files('hcd-ohci.c'))
19 softmmu_ss.add(when: 'CONFIG_USB_OHCI_PCI', if_true: files('hcd-ohci-pci.c'))
20 softmmu_ss.add(when: 'CONFIG_USB_EHCI', if_true: files('hcd-ehci.c'))
21 softmmu_ss.add(when: 'CONFIG_USB_EHCI_PCI', if_true: files('hcd-ehci-pci.c'))
22 softmmu_ss.add(when: 'CONFIG_USB_EHCI_SYSBUS', if_true: files('hcd-ehci.c', 'hcd-ehci-sysbus.c'))
23 softmmu_ss.add(when: 'CONFIG_USB_XHCI', if_true: files('hcd-xhci.c'))
24 softmmu_ss.add(when: 'CONFIG_USB_XHCI_NEC', if_true: files('hcd-xhci-nec.c'))
25 softmmu_ss.add(when: 'CONFIG_USB_MUSB', if_true: files('hcd-musb.c'))
26 softmmu_ss.add(when: 'CONFIG_USB_DWC2', if_true: files('hcd-dwc2.c'))
28 softmmu_ss.add(when: 'CONFIG_TUSB6010', if_true: files('tusb6010.c'))
29 softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('chipidea.c'))
30 softmmu_ss.add(when: 'CONFIG_IMX_USBPHY', if_true: files('imx-usb-phy.c'))
32 # emulated usb devices
33 softmmu_ss.add(when: 'CONFIG_USB', if_true: files('dev-hub.c'))
34 softmmu_ss.add(when: 'CONFIG_USB', if_true: files('dev-hid.c'))
35 softmmu_ss.add(when: 'CONFIG_USB_TABLET_WACOM', if_true: files('dev-wacom.c'))
36 softmmu_ss.add(when: 'CONFIG_USB_STORAGE_BOT', if_true: files('dev-storage.c'))
37 softmmu_ss.add(when: 'CONFIG_USB_STORAGE_UAS', if_true: files('dev-uas.c'))
38 softmmu_ss.add(when: 'CONFIG_USB_AUDIO', if_true: files('dev-audio.c'))
39 softmmu_ss.add(when: 'CONFIG_USB_SERIAL', if_true: files('dev-serial.c'))
40 softmmu_ss.add(when: 'CONFIG_USB_NETWORK', if_true: files('dev-network.c'))
41 softmmu_ss.add(when: ['CONFIG_POSIX', 'CONFIG_USB_STORAGE_MTP'], if_true: files('dev-mtp.c'))
43 # smartcard
44 softmmu_ss.add(when: 'CONFIG_USB_SMARTCARD', if_true: files('dev-smartcard-reader.c'))
46 if config_host.has_key('CONFIG_SMARTCARD')
47   usbsmartcard_ss = ss.source_set()
48   usbsmartcard_ss.add(when: 'CONFIG_USB_SMARTCARD',
49                       if_true: [cacard, files('ccid-card-emulated.c', 'ccid-card-passthru.c')])
50   hw_usb_modules += {'smartcard': usbsmartcard_ss}
51 endif
53 # U2F
54 softmmu_ss.add(when: 'CONFIG_USB_U2F', if_true: files('u2f.c'))
55 softmmu_ss.add(when: ['CONFIG_LINUX', 'CONFIG_USB_U2F'], if_true: [libudev, files('u2f-passthru.c')])
56 if u2f.found()
57   softmmu_ss.add(when: 'CONFIG_USB_U2F', if_true: [u2f, files('u2f-emulated.c')])
58 endif
60 # usb redirect
61 if config_host.has_key('CONFIG_USB_REDIR')
62   usbredir_ss = ss.source_set()
63   usbredir_ss.add(when: 'CONFIG_USB',
64                   if_true: [usbredir, files('redirect.c', 'quirks.c')])
65   hw_usb_modules += {'redirect': usbredir_ss}
66 endif
68 # usb pass-through
69 softmmu_ss.add(when: ['CONFIG_USB', 'CONFIG_USB_LIBUSB', libusb],
70                if_true: files('host-libusb.c'),
71                if_false: files('host-stub.c'))
72 softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('host-stub.c'))
74 softmmu_ss.add(when: ['CONFIG_USB', 'CONFIG_XEN', libusb], if_true: files('xen-usb.c'))
76 modules += { 'hw-usb': hw_usb_modules }