Commit 16d3a71c authored by Minda Chen's avatar Minda Chen Committed by Vinod Koul
Browse files

phy: starfive: Add JH7110 USB 2.0 PHY driver



Add Starfive JH7110 SoC USB 2.0 PHY driver support.
USB 2.0 PHY default connect to Cadence USB controller.

Signed-off-by: default avatarMinda Chen <minda.chen@starfivetech.com>
Reviewed-by: default avatarRoger Quadros <rogerq@kernel.org>
Link: https://lore.kernel.org/r/20230629075115.11934-4-minda.chen@starfivetech.com


Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 69d41115
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -20335,6 +20335,12 @@ S: Supported
F:	Documentation/devicetree/bindings/watchdog/starfive*
F:	drivers/watchdog/starfive-wdt.c
STARFIVE JH71X0 USB PHY DRIVER
M:	Minda Chen <minda.chen@starfivetech.com>
S:	Supported
F:	Documentation/devicetree/bindings/phy/starfive,jh7110-usb-phy.yaml
F:	drivers/phy/starfive/phy-jh7110-usb.c
STATIC BRANCH/CALL
M:	Peter Zijlstra <peterz@infradead.org>
M:	Josh Poimboeuf <jpoimboe@kernel.org>
+1 −0
Original line number Diff line number Diff line
@@ -92,6 +92,7 @@ source "drivers/phy/rockchip/Kconfig"
source "drivers/phy/samsung/Kconfig"
source "drivers/phy/socionext/Kconfig"
source "drivers/phy/st/Kconfig"
source "drivers/phy/starfive/Kconfig"
source "drivers/phy/sunplus/Kconfig"
source "drivers/phy/tegra/Kconfig"
source "drivers/phy/ti/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@ obj-y += allwinner/ \
					   samsung/	\
					   socionext/	\
					   st/		\
					   starfive/	\
					   sunplus/	\
					   tegra/	\
					   ti/		\
+14 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Phy drivers for StarFive platforms
#

config PHY_STARFIVE_JH7110_USB
	tristate "Starfive JH7110 USB 2.0 PHY support"
	depends on USB_SUPPORT
	select GENERIC_PHY
	help
	  Enable this to support the StarFive USB 2.0 PHY,
	  used with the Cadence USB controller.
	  If M is selected, the module will be called
	  phy-jh7110-usb.ko.
+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_PHY_STARFIVE_JH7110_USB)	+= phy-jh7110-usb.o
Loading