mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
888e1caeae
Add a new SERDES driver for TI's AM654x SoC which configures the SERDES only for PCIe. Support fo USB3 can be added later. SERDES in am654x has three input clocks (left input, external reference clock and right input) and two output clocks (left output and right output) in addition to a PLL mux clock which the SERDES uses for Clock Multiplier Unit (CMU refclock). The PLL mux clock can select from one of the three input clocks. The right output can select between left input and external reference clock while the left output can select between the right input and external reference clock. The driver has support to select PLL mux and left/right output mux as specified in device tree. Signed-off-by: Sekhar Nori <nsekhar@ti.com>
25 lines
1.2 KiB
Makefile
25 lines
1.2 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_AM654_PHY) += phy-ti-am654.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
|
|
obj-$(CONFIG_PHY_DA8XX_USB) += phy-da8xx-usb.o
|