Makefile 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # SPDX-License-Identifier: GPL-2.0
  2. # define_trace.h needs to know how to find our header
  3. CFLAGS_trace.o := -I$(src)
  4. CFLAGS_dwc3-msm-core.o := -I$(srctree)/drivers/usb/host
  5. obj-$(CONFIG_USB_DWC3) += dwc3.o
  6. dwc3-y := core.o
  7. ifneq ($(CONFIG_TRACING),)
  8. dwc3-y += trace.o
  9. endif
  10. ifneq ($(filter y,$(CONFIG_USB_DWC3_HOST) $(CONFIG_USB_DWC3_DUAL_ROLE)),)
  11. dwc3-y += host.o
  12. endif
  13. ifneq ($(filter y,$(CONFIG_USB_DWC3_GADGET) $(CONFIG_USB_DWC3_DUAL_ROLE)),)
  14. dwc3-y += gadget.o ep0.o
  15. endif
  16. ifneq ($(CONFIG_USB_DWC3_DUAL_ROLE),)
  17. dwc3-y += drd.o
  18. endif
  19. ifneq ($(CONFIG_USB_DWC3_ULPI),)
  20. dwc3-y += ulpi.o
  21. endif
  22. ifneq ($(CONFIG_DEBUG_FS),)
  23. dwc3-y += debugfs.o
  24. endif
  25. ##
  26. # Platform-specific glue layers go here
  27. #
  28. # NOTICE: Make sure your glue layer doesn't depend on anything
  29. # which is arch-specific and that it compiles on all situations.
  30. #
  31. # We want to keep this requirement in order to be able to compile
  32. # the entire driver (with all its glue layers) on several architectures
  33. # and make sure it compiles fine. This will also help with allmodconfig
  34. # and allyesconfig builds.
  35. ##
  36. obj-$(CONFIG_USB_DWC3_AM62) += dwc3-am62.o
  37. obj-$(CONFIG_USB_DWC3_OMAP) += dwc3-omap.o
  38. obj-$(CONFIG_USB_DWC3_EXYNOS) += dwc3-exynos.o
  39. obj-$(CONFIG_USB_DWC3_PCI) += dwc3-pci.o
  40. obj-$(CONFIG_USB_DWC3_HAPS) += dwc3-haps.o
  41. obj-$(CONFIG_USB_DWC3_KEYSTONE) += dwc3-keystone.o
  42. obj-$(CONFIG_USB_DWC3_MESON_G12A) += dwc3-meson-g12a.o
  43. obj-$(CONFIG_USB_DWC3_OF_SIMPLE) += dwc3-of-simple.o
  44. obj-$(CONFIG_USB_DWC3_ST) += dwc3-st.o
  45. obj-$(CONFIG_USB_DWC3_QCOM) += dwc3-qcom.o
  46. obj-$(CONFIG_USB_DWC3_IMX8MP) += dwc3-imx8mp.o
  47. obj-$(CONFIG_USB_DWC3_XILINX) += dwc3-xilinx.o
  48. obj-$(CONFIG_USB_DWC3_MSM) += dwc3-msm.o
  49. dwc3-msm-y := dwc3-msm-core.o debug_ipc.o
  50. ifneq ($(CONFIG_ARM64),)
  51. dwc3-msm-y += dwc3-msm-ops.o
  52. endif