Commit 99d9ccd9 authored by Vincent Shih's avatar Vincent Shih Committed by Vinod Koul
Browse files

phy: usb: Add USB2.0 phy driver for Sunplus SP7021



Add USB2.0 phy driver for Sunplus SP7021

Signed-off-by: default avatarVincent Shih <vincent.sunplus@gmail.com>
Link: https://lore.kernel.org/r/1658717052-26142-2-git-send-email-vincent.sunplus@gmail.com


[vkoul: remove trailing line in driver file]
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent c8c5d5e8
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -19490,6 +19490,14 @@ S: Maintained
F:	Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
F:	drivers/nvmem/sunplus-ocotp.c
SUNPLUS USB2 PHY DRIVER
M:	Vincent Shih <vincent.sunplus@gmail.com>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/phy/sunplus/Kconfig
F:	drivers/phy/sunplus/Makefile
F:	drivers/phy/sunplus/phy-sunplus-usb2.c
SUNPLUS PWM DRIVER
M:	Hammer Hsieh <hammerh0314@gmail.com>
S:	Maintained
+1 −0
Original line number Diff line number Diff line
@@ -91,6 +91,7 @@ source "drivers/phy/rockchip/Kconfig"
source "drivers/phy/samsung/Kconfig"
source "drivers/phy/socionext/Kconfig"
source "drivers/phy/st/Kconfig"
source "drivers/phy/sunplus/Kconfig"
source "drivers/phy/tegra/Kconfig"
source "drivers/phy/ti/Kconfig"
source "drivers/phy/intel/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@ obj-y += allwinner/ \
					   samsung/	\
					   socionext/	\
					   st/		\
					   sunplus/	\
					   tegra/	\
					   ti/		\
					   xilinx/
+12 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

config PHY_SUNPLUS_USB
	tristate "Sunplus SP7021 USB 2.0 PHY driver"
	depends on OF && (SOC_SP7021 || COMPILE_TEST)
	select GENERIC_PHY
	help
	  Enable this to support the USB 2.0 PHY on Sunplus SP7021
	  SoC. The USB 2.0 PHY controller supports battery charger
	  and synchronous signals, various power down modes including
	  operating, partial and suspend modes, and high-speed,
	  full-speed and low-speed data transfer.
+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_PHY_SUNPLUS_USB)	+= phy-sunplus-usb2.o
Loading