mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
3b29121678
This patch adds phy tranceiver driver for STM32 USB PHY Controller (usbphyc) that provides dual port High-Speed phy for OTG (single port) and EHCI/OHCI host controller (two ports). One port of the phy is shared between the two USB controllers through a UTMI+ switch. Signed-off-by: Christophe Kerello <christophe.kerello@st.com> Signed-off-by: Amelie Delaunay <amelie.delaunay@st.com> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
16 lines
718 B
Makefile
16 lines
718 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
|
|
# Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
|
|
|
|
obj-$(CONFIG_$(SPL_)PHY) += phy-uclass.o
|
|
obj-$(CONFIG_$(SPL_)NOP_PHY) += nop-phy.o
|
|
obj-$(CONFIG_BCM6318_USBH_PHY) += bcm6318-usbh-phy.o
|
|
obj-$(CONFIG_BCM6348_USBH_PHY) += bcm6348-usbh-phy.o
|
|
obj-$(CONFIG_BCM6358_USBH_PHY) += bcm6358-usbh-phy.o
|
|
obj-$(CONFIG_BCM6368_USBH_PHY) += bcm6368-usbh-phy.o
|
|
obj-$(CONFIG_PHY_SANDBOX) += sandbox-phy.o
|
|
obj-$(CONFIG_$(SPL_)PIPE3_PHY) += ti-pipe3-phy.o
|
|
obj-$(CONFIG_STI_USB_PHY) += sti_usb_phy.o
|
|
obj-$(CONFIG_PHY_STM32_USBPHYC) += phy-stm32-usbphyc.o
|
|
obj-$(CONFIG_MESON_GXL_USB_PHY) += meson-gxl-usb2.o meson-gxl-usb3.o
|