meson.build 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. hw_usb_modules = {}
  2. # usb subsystem core
  3. system_ss.add(when: 'CONFIG_USB', if_true: files(
  4. 'bus.c',
  5. 'combined-packet.c',
  6. 'core.c',
  7. 'desc.c',
  8. 'desc-msos.c',
  9. 'libhw.c',
  10. 'pcap.c',
  11. ), if_false: files('bus-stub.c'))
  12. # usb host adapters
  13. system_ss.add(when: 'CONFIG_USB_UHCI', if_true: files('hcd-uhci.c'))
  14. system_ss.add(when: 'CONFIG_USB_OHCI', if_true: files('hcd-ohci.c'))
  15. system_ss.add(when: 'CONFIG_USB_OHCI_PCI', if_true: files('hcd-ohci-pci.c'))
  16. system_ss.add(when: 'CONFIG_USB_OHCI_SYSBUS', if_true: files('hcd-ohci-sysbus.c'))
  17. system_ss.add(when: 'CONFIG_USB_EHCI', if_true: files('hcd-ehci.c'))
  18. system_ss.add(when: 'CONFIG_USB_EHCI_PCI', if_true: files('hcd-ehci-pci.c'))
  19. system_ss.add(when: 'CONFIG_USB_EHCI_SYSBUS', if_true: files('hcd-ehci-sysbus.c'))
  20. system_ss.add(when: 'CONFIG_USB_XHCI', if_true: files('hcd-xhci.c'))
  21. system_ss.add(when: 'CONFIG_USB_XHCI_PCI', if_true: files('hcd-xhci-pci.c'))
  22. system_ss.add(when: 'CONFIG_USB_XHCI_SYSBUS', if_true: files('hcd-xhci-sysbus.c'))
  23. system_ss.add(when: 'CONFIG_USB_XHCI_NEC', if_true: files('hcd-xhci-nec.c'))
  24. system_ss.add(when: 'CONFIG_USB_DWC2', if_true: files('hcd-dwc2.c'))
  25. system_ss.add(when: 'CONFIG_USB_DWC3', if_true: files('hcd-dwc3.c'))
  26. system_ss.add(when: 'CONFIG_USB_CHIPIDEA', if_true: files('chipidea.c'))
  27. system_ss.add(when: 'CONFIG_IMX_USBPHY', if_true: files('imx-usb-phy.c'))
  28. system_ss.add(when: 'CONFIG_VT82C686', if_true: files('vt82c686-uhci-pci.c'))
  29. system_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-usb2-ctrl-regs.c'))
  30. system_ss.add(when: 'CONFIG_XLNX_USB_SUBSYS', if_true: files('xlnx-usb-subsystem.c'))
  31. # emulated usb devices
  32. system_ss.add(when: 'CONFIG_USB_HUB', if_true: files('dev-hub.c'))
  33. system_ss.add(when: 'CONFIG_USB_HID', if_true: files('dev-hid.c'))
  34. system_ss.add(when: 'CONFIG_USB_TABLET_WACOM', if_true: files('dev-wacom.c'))
  35. system_ss.add(when: 'CONFIG_USB_STORAGE_CORE', if_true: files('dev-storage.c'))
  36. system_ss.add(when: 'CONFIG_USB_STORAGE_BOT', if_true: files('dev-storage-bot.c'))
  37. system_ss.add(when: 'CONFIG_USB_STORAGE_CLASSIC', if_true: files('dev-storage-classic.c'))
  38. system_ss.add(when: 'CONFIG_USB_STORAGE_UAS', if_true: files('dev-uas.c'))
  39. system_ss.add(when: 'CONFIG_USB_AUDIO', if_true: files('dev-audio.c'))
  40. system_ss.add(when: 'CONFIG_USB_SERIAL', if_true: files('dev-serial.c'))
  41. system_ss.add(when: 'CONFIG_USB_NETWORK', if_true: files('dev-network.c'))
  42. if host_os != 'windows'
  43. system_ss.add(when: 'CONFIG_USB_STORAGE_MTP', if_true: files('dev-mtp.c'))
  44. endif
  45. # smartcard
  46. system_ss.add(when: 'CONFIG_USB_SMARTCARD', if_true: files('dev-smartcard-reader.c'))
  47. if cacard.found()
  48. usbsmartcard_ss = ss.source_set()
  49. usbsmartcard_ss.add(when: 'CONFIG_USB_SMARTCARD',
  50. if_true: [cacard, files('ccid-card-emulated.c', 'ccid-card-passthru.c')])
  51. hw_usb_modules += {'smartcard': usbsmartcard_ss}
  52. endif
  53. # U2F
  54. system_ss.add(when: 'CONFIG_USB_U2F', if_true: files('u2f.c'))
  55. if host_os == 'linux'
  56. system_ss.add(when: 'CONFIG_USB_U2F', if_true: [libudev, files('u2f-passthru.c')])
  57. endif
  58. if u2f.found()
  59. system_ss.add(when: 'CONFIG_USB_U2F', if_true: [u2f, files('u2f-emulated.c')])
  60. endif
  61. # CanoKey
  62. if canokey.found()
  63. system_ss.add(when: 'CONFIG_USB_CANOKEY', if_true: [canokey, files('canokey.c')])
  64. endif
  65. # usb redirect
  66. if usbredir.found()
  67. usbredir_ss = ss.source_set()
  68. usbredir_ss.add(when: 'CONFIG_USB',
  69. if_true: [usbredir, files('redirect.c', 'quirks.c')])
  70. hw_usb_modules += {'redirect': usbredir_ss}
  71. endif
  72. # usb pass-through
  73. if libusb.found()
  74. usbhost_ss = ss.source_set()
  75. usbhost_ss.add(when: ['CONFIG_USB', libusb],
  76. if_true: files('host-libusb.c'))
  77. hw_usb_modules += {'host': usbhost_ss}
  78. endif
  79. system_ss.add(when: ['CONFIG_USB', 'CONFIG_XEN_BUS', libusb], if_true: files('xen-usb.c'))
  80. modules += { 'hw-usb': hw_usb_modules }