mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
88861a2c2c
ISP1760/61/63 are a family of usb controllers, here the main goal is to support the ISP1763 hcd part found in the MPS3 FPGA board form Arm. This is based on the kernel driver and ported to u-boot. Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
12 lines
415 B
Makefile
12 lines
415 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2016 Freescale Semiconductor, Inc.
|
|
#
|
|
|
|
obj-$(CONFIG_$(SPL_)DM_USB) += common.o
|
|
obj-$(CONFIG_USB_ISP1760) += usb_urb.o
|
|
obj-$(CONFIG_USB_MUSB_HOST) += usb_urb.o
|
|
obj-$(CONFIG_USB_MUSB_GADGET) += usb_urb.o
|
|
obj-$(CONFIG_USB_R8A66597_HCD) += usb_urb.o
|
|
obj-$(CONFIG_USB_EHCI_FSL) += fsl-dt-fixup.o fsl-errata.o
|
|
obj-$(CONFIG_USB_XHCI_FSL) += fsl-dt-fixup.o fsl-errata.o
|