Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2#
3# Phy drivers for Realtek platforms
4#
5
6if ARCH_REALTEK || COMPILE_TEST
7
8config PHY_RTK_RTD_USB2PHY
9 tristate "Realtek RTD USB2 PHY Transceiver Driver"
10 depends on USB_SUPPORT
11 select GENERIC_PHY
12 select USB_PHY
13 select USB_COMMON
14 help
15 Enable this to support Realtek SoC USB2 phy transceiver.
16 The DHC (digital home center) RTD series SoCs used the Synopsys
17 DWC3 USB IP. This driver will do the PHY initialization
18 of the parameters.
19
20config PHY_RTK_RTD_USB3PHY
21 tristate "Realtek RTD USB3 PHY Transceiver Driver"
22 depends on USB_SUPPORT
23 select GENERIC_PHY
24 select USB_PHY
25 select USB_COMMON
26 help
27 Enable this to support Realtek SoC USB3 phy transceiver.
28 The DHC (digital home center) RTD series SoCs used the Synopsys
29 DWC3 USB IP. This driver will do the PHY initialization
30 of the parameters.
31
32endif # ARCH_REALTEK || COMPILE_TEST