mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
c9be539e11
The NXP PTN3222 is the single-port eUSB2 to USB2 redriver that performs translation between eUSB2 and USB2 signalling schemes. It supports all three data rates: Low Speed, Full Speed and High Speed. The reset state enables autonegotiation of the PHY role and of the data rate, so no additional programming is required. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Tested-by: Konrad Dybcio <konradybcio@kernel.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Stephan Gerhold <stephan.gerhold@linaro.org> Tested-by: Stephan Gerhold <stephan.gerhold@linaro.org> Link: https://lore.kernel.org/r/20240830-nxp-ptn3222-v2-2-4c6d8535cf6c@linaro.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
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-$(CONFIG_PHY_AIROHA_PCIE) += phy-airoha-pcie.o
|
|
obj-$(CONFIG_PHY_NXP_PTN3222) += phy-nxp-ptn3222.o
|
|
obj-y += allwinner/ \
|
|
amlogic/ \
|
|
broadcom/ \
|
|
cadence/ \
|
|
freescale/ \
|
|
hisilicon/ \
|
|
ingenic/ \
|
|
intel/ \
|
|
lantiq/ \
|
|
marvell/ \
|
|
mediatek/ \
|
|
microchip/ \
|
|
motorola/ \
|
|
mscc/ \
|
|
nuvoton/ \
|
|
qualcomm/ \
|
|
ralink/ \
|
|
realtek/ \
|
|
renesas/ \
|
|
rockchip/ \
|
|
samsung/ \
|
|
socionext/ \
|
|
st/ \
|
|
starfive/ \
|
|
sunplus/ \
|
|
tegra/ \
|
|
ti/ \
|
|
xilinx/
|