mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
277d9167cb
This adds support for the USB PHYs found in the Amlogic G12A SoC Family. The USB2 PHY supports Host and/or Peripheral mode, depending on it's position. The first PHY is only used as Host, but the second supports Dual modes defined by the USB Control Glue HW in front of the USB Controllers. The second driver supports USB3 Host mode or PCIE 2.0 mode, depending on the layout of the board. Selection is done by the #phy-cells, making the mode static and exclusive. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
23 lines
1.1 KiB
Makefile
23 lines
1.1 KiB
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_RCAR_GEN2) += phy-rcar-gen2.o
|
|
obj-$(CONFIG_PHY_RCAR_GEN3) += phy-rcar-gen3.o
|
|
obj-$(CONFIG_PHY_STM32_USBPHYC) += phy-stm32-usbphyc.o
|
|
obj-$(CONFIG_MESON_GXL_USB_PHY) += meson-gxl-usb2.o meson-gxl-usb3.o
|
|
obj-$(CONFIG_MESON_G12A_USB_PHY) += meson-g12a-usb2.o meson-g12a-usb3-pcie.o
|
|
obj-$(CONFIG_MSM8916_USB_PHY) += msm8916-usbh-phy.o
|
|
obj-$(CONFIG_OMAP_USB2_PHY) += omap-usb2-phy.o
|
|
obj-$(CONFIG_KEYSTONE_USB_PHY) += keystone-usb-phy.o
|
|
obj-$(CONFIG_MT76X8_USB_PHY) += mt76x8-usb-phy.o
|