Makefile (7c925546427a0428b84bc5ba1f28b3698e492072) Makefile (dc09886bfa781e2b442301116c18199519e36f0f)
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_OMAP2PLUS) += omap2430.o
21musb_hdrc-$(CONFIG_USB_MUSB_AM35X) += am35x.o
22musb_hdrc-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o
23
20musb_hdrc-$(CONFIG_USB_MUSB_AM35X) += am35x.o
21musb_hdrc-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o
22
23obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o
24
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)

--- 14 unchanged lines hidden ---
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
32 ifeq ($(CONFIG_USB_INVENTRA_DMA),y)

--- 14 unchanged lines hidden ---