mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
eeda494542
Realtek DHC (digital home center) RTD SoCs support DWC3 XHCI USB controller. Added the driver to drive the USB 2.0 PHY transceivers. Note: New driver,remove the port status notification on legacy USB PHY. Use the generic PHY to notify the usb device connect and disconnect. To avoid using these PHYs would require describing the very same PHY using both the generic "phy" property and the deprecated "usb-phy" property. Signed-off-by: Stanley Chang <stanley_chang@realtek.com> Link: https://lore.kernel.org/r/20231213031203.4911-2-stanley_chang@realtek.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
40 lines
946 B
Makefile
40 lines
946 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the phy drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_GENERIC_PHY) += phy-core.o
|
|
obj-$(CONFIG_GENERIC_PHY_MIPI_DPHY) += phy-core-mipi-dphy.o
|
|
obj-$(CONFIG_PHY_CAN_TRANSCEIVER) += phy-can-transceiver.o
|
|
obj-$(CONFIG_PHY_LPC18XX_USB_OTG) += phy-lpc18xx-usb-otg.o
|
|
obj-$(CONFIG_PHY_XGENE) += phy-xgene.o
|
|
obj-$(CONFIG_PHY_PISTACHIO_USB) += phy-pistachio-usb.o
|
|
obj-$(CONFIG_USB_LGM_PHY) += phy-lgm-usb.o
|
|
obj-y += allwinner/ \
|
|
amlogic/ \
|
|
broadcom/ \
|
|
cadence/ \
|
|
freescale/ \
|
|
hisilicon/ \
|
|
ingenic/ \
|
|
intel/ \
|
|
lantiq/ \
|
|
marvell/ \
|
|
mediatek/ \
|
|
microchip/ \
|
|
motorola/ \
|
|
mscc/ \
|
|
qualcomm/ \
|
|
ralink/ \
|
|
realtek/ \
|
|
renesas/ \
|
|
rockchip/ \
|
|
samsung/ \
|
|
socionext/ \
|
|
st/ \
|
|
starfive/ \
|
|
sunplus/ \
|
|
tegra/ \
|
|
ti/ \
|
|
xilinx/
|