Makefile (dc09886bfa781e2b442301116c18199519e36f0f) | Makefile (ce40c5767a0ea1e77ca5d0b73269cb86301a35cf) |
---|---|
1# 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 3# 4 5ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG 6 7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o 8 9musb_hdrc-y := musb_core.o 10 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 14 15# Hardware Glue Layer 16 17musb_hdrc-$(CONFIG_USB_MUSB_DAVINCI) += davinci.o 18musb_hdrc-$(CONFIG_USB_MUSB_DA8XX) += da8xx.o 19musb_hdrc-$(CONFIG_USB_MUSB_TUSB6010) += tusb6010.o | 1# 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 3# 4 5ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG 6 7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o 8 9musb_hdrc-y := musb_core.o 10 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 14 15# Hardware Glue Layer 16 17musb_hdrc-$(CONFIG_USB_MUSB_DAVINCI) += davinci.o 18musb_hdrc-$(CONFIG_USB_MUSB_DA8XX) += da8xx.o 19musb_hdrc-$(CONFIG_USB_MUSB_TUSB6010) += tusb6010.o |
20musb_hdrc-$(CONFIG_USB_MUSB_AM35X) += am35x.o | |
21musb_hdrc-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o 22 23obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o | 20musb_hdrc-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o 21 22obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o |
23obj-$(CONFIG_USB_MUSB_AM35X) += am35x.o |
|
24 25# the kconfig must guarantee that only one of the 26# possible I/O schemes will be enabled at a time ... 27# PIO only, or DMA (several potential schemes). 28# though PIO is always there to back up DMA, and for ep0 29 30ifneq ($(CONFIG_MUSB_PIO_ONLY),y) 31 --- 15 unchanged lines hidden --- | 24 25# the kconfig must guarantee that only one of the 26# possible I/O schemes will be enabled at a time ... 27# PIO only, or DMA (several potential schemes). 28# though PIO is always there to back up DMA, and for ep0 29 30ifneq ($(CONFIG_MUSB_PIO_ONLY),y) 31 --- 15 unchanged lines hidden --- |