]> Git Repo - linux.git/blame - drivers/usb/musb/Makefile
mfd: mfd_cell is now implicitly available to tc6393xb drivers
[linux.git] / drivers / usb / musb / Makefile
CommitLineData
550a7375
FB
1#
2# for USB OTG silicon based on Mentor Graphics INVENTRA designs
3#
4
0a2b8a0d 5ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG
c71b1b9c 6
0a2b8a0d 7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
085ad406 8
0a2b8a0d 9musb_hdrc-y := musb_core.o
085ad406 10
0a2b8a0d 11musb_hdrc-$(CONFIG_USB_GADGET_MUSB_HDRC) += musb_gadget_ep0.o musb_gadget.o
12musb_hdrc-$(CONFIG_USB_MUSB_HDRC_HCD) += musb_virthub.o musb_host.o
13musb_hdrc-$(CONFIG_DEBUG_FS) += musb_debugfs.o
7f7f9e2a 14
7c925546 15# Hardware Glue Layer
dc09886b 16obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o
ce40c576 17obj-$(CONFIG_USB_MUSB_AM35X) += am35x.o
18688fbe 18obj-$(CONFIG_USB_MUSB_TUSB6010) += tusb6010.o
73b089b0 19obj-$(CONFIG_USB_MUSB_DAVINCI) += davinci.o
8ceae51e 20obj-$(CONFIG_USB_MUSB_DA8XX) += da8xx.o
9cb0308e 21obj-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o
4bc36fd3 22obj-$(CONFIG_USB_MUSB_UX500) += ux500.o
dc09886b 23
550a7375
FB
24# the kconfig must guarantee that only one of the
25# possible I/O schemes will be enabled at a time ...
26# PIO only, or DMA (several potential schemes).
27# though PIO is always there to back up DMA, and for ep0
28
29ifneq ($(CONFIG_MUSB_PIO_ONLY),y)
30
31 ifeq ($(CONFIG_USB_INVENTRA_DMA),y)
0a2b8a0d 32 musb_hdrc-y += musbhsdma.o
550a7375
FB
33
34 else
35 ifeq ($(CONFIG_USB_TI_CPPI_DMA),y)
0a2b8a0d 36 musb_hdrc-y += cppi_dma.o
550a7375
FB
37
38 else
39 ifeq ($(CONFIG_USB_TUSB_OMAP_DMA),y)
0a2b8a0d 40 musb_hdrc-y += tusb6010_omap.o
550a7375
FB
41
42 endif
43 endif
44 endif
45endif
This page took 0.349916 seconds and 4 git commands to generate.