cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (1469B)


      1# SPDX-License-Identifier: GPL-2.0
      2#
      3# for USB OTG silicon based on Mentor Graphics INVENTRA designs
      4#
      5
      6# define_trace.h needs to know how to find our header
      7CFLAGS_musb_trace.o	:= -I$(src)
      8
      9obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
     10
     11musb_hdrc-y := musb_core.o musb_trace.o
     12
     13musb_hdrc-$(CONFIG_USB_MUSB_HOST)$(CONFIG_USB_MUSB_DUAL_ROLE) += musb_virthub.o musb_host.o
     14musb_hdrc-$(CONFIG_USB_MUSB_GADGET)$(CONFIG_USB_MUSB_DUAL_ROLE) += musb_gadget_ep0.o musb_gadget.o
     15musb_hdrc-$(CONFIG_DEBUG_FS)			+= musb_debugfs.o
     16
     17# Hardware Glue Layer
     18obj-$(CONFIG_USB_MUSB_OMAP2PLUS)		+= omap2430.o
     19obj-$(CONFIG_USB_MUSB_AM35X)			+= am35x.o
     20obj-$(CONFIG_USB_MUSB_DSPS)			+= musb_dsps.o
     21obj-$(CONFIG_USB_MUSB_TUSB6010)			+= tusb6010.o
     22obj-$(CONFIG_USB_MUSB_DAVINCI)			+= davinci.o
     23obj-$(CONFIG_USB_MUSB_DA8XX)			+= da8xx.o
     24obj-$(CONFIG_USB_MUSB_UX500)			+= ux500.o
     25obj-$(CONFIG_USB_MUSB_JZ4740)			+= jz4740.o
     26obj-$(CONFIG_USB_MUSB_SUNXI)			+= sunxi.o
     27obj-$(CONFIG_USB_MUSB_MEDIATEK)      		+= mediatek.o
     28
     29# the kconfig must guarantee that only one of the
     30# possible I/O schemes will be enabled at a time ...
     31# PIO only, or DMA (several potential schemes).
     32# though PIO is always there to back up DMA, and for ep0
     33
     34musb_hdrc-$(CONFIG_USB_INVENTRA_DMA)		+= musbhsdma.o
     35musb_hdrc-$(CONFIG_USB_TI_CPPI_DMA)		+= cppi_dma.o
     36musb_hdrc-$(CONFIG_USB_TUSB_OMAP_DMA)		+= tusb6010_omap.o
     37musb_hdrc-$(CONFIG_USB_UX500_DMA)		+= ux500_dma.o
     38musb_hdrc-$(CONFIG_USB_TI_CPPI41_DMA)		+= musb_cppi41.o