xref: /openbmc/linux/drivers/usb/musb/Makefile (revision d0b73b48)
1#
2# for USB OTG silicon based on Mentor Graphics INVENTRA designs
3#
4
5obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
6
7musb_hdrc-y := musb_core.o
8
9musb_hdrc-y					+= musb_gadget_ep0.o musb_gadget.o
10musb_hdrc-y					+= musb_virthub.o musb_host.o
11musb_hdrc-$(CONFIG_DEBUG_FS)			+= musb_debugfs.o
12
13# Hardware Glue Layer
14obj-$(CONFIG_USB_MUSB_OMAP2PLUS)		+= omap2430.o
15obj-$(CONFIG_USB_MUSB_AM35X)			+= am35x.o
16obj-$(CONFIG_USB_MUSB_DSPS)			+= musb_dsps.o
17obj-$(CONFIG_USB_MUSB_TUSB6010)			+= tusb6010.o
18obj-$(CONFIG_USB_MUSB_DAVINCI)			+= davinci.o
19obj-$(CONFIG_USB_MUSB_DA8XX)			+= da8xx.o
20obj-$(CONFIG_USB_MUSB_BLACKFIN)			+= blackfin.o
21obj-$(CONFIG_USB_MUSB_UX500)			+= ux500.o
22
23# the kconfig must guarantee that only one of the
24# possible I/O schemes will be enabled at a time ...
25# PIO only, or DMA (several potential schemes).
26# though PIO is always there to back up DMA, and for ep0
27
28musb_hdrc-$(CONFIG_USB_INVENTRA_DMA)		+= musbhsdma.o
29musb_hdrc-$(CONFIG_USB_TI_CPPI_DMA)		+= cppi_dma.o
30musb_hdrc-$(CONFIG_USB_TUSB_OMAP_DMA)		+= tusb6010_omap.o
31musb_hdrc-$(CONFIG_USB_UX500_DMA)		+= ux500_dma.o
32