-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
phy: realtek: usb: Add driver for the Realtek SoC USB 2.0 PHY
Realtek DHC (digital home center) RTD SoCs support DWC3 XHCI USB controller. Added the driver to drive the USB 2.0 PHY transceivers. Signed-off-by: Stanley Chang <stanley_chang@realtek.com> Link: https://lore.kernel.org/r/20230725033318.8361-2-stanley_chang@realtek.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Stanley Chang
authored and
Greg Kroah-Hartman
committed
Jul 26, 2023
1 parent
a08799c
commit 134e6d2
Showing
5 changed files
with
1,347 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ obj-y += allwinner/ \ | |
mscc/ \ | ||
qualcomm/ \ | ||
ralink/ \ | ||
realtek/ \ | ||
renesas/ \ | ||
rockchip/ \ | ||
samsung/ \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# | ||
# Phy drivers for Realtek platforms | ||
# | ||
config PHY_RTK_RTD_USB2PHY | ||
tristate "Realtek RTD USB2 PHY Transceiver Driver" | ||
depends on USB_SUPPORT | ||
select GENERIC_PHY | ||
select USB_PHY | ||
help | ||
Enable this to support Realtek SoC USB2 phy transceiver. | ||
The DHC (digital home center) RTD series SoCs used the Synopsys | ||
DWC3 USB IP. This driver will do the PHY initialization | ||
of the parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-$(CONFIG_PHY_RTK_RTD_USB2PHY) += phy-rtk-usb2.o |
Oops, something went wrong.