Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: ralink-usb: add driver for Mediatek/Ralink

Add a driver to setup the USB phy on Mediatek/Ralink SoCs.
The driver sets up power and host mode, but also needs to
configure PHY registers for the MT7628 and MT7688.

Signed-off-by: John Crispin <john@phrozen.org>
Signed-off-by: Harvey Hunt <harvey.hunt@imgtec.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

authored by

John Crispin and committed by
Kishon Vijay Abraham I
2411a736 1cc81efe

+263
+1
drivers/phy/Kconfig
··· 48 48 source "drivers/phy/mediatek/Kconfig" 49 49 source "drivers/phy/motorola/Kconfig" 50 50 source "drivers/phy/qualcomm/Kconfig" 51 + source "drivers/phy/ralink/Kconfig" 51 52 source "drivers/phy/renesas/Kconfig" 52 53 source "drivers/phy/rockchip/Kconfig" 53 54 source "drivers/phy/samsung/Kconfig"
+1
drivers/phy/Makefile
··· 18 18 marvell/ \ 19 19 motorola/ \ 20 20 qualcomm/ \ 21 + ralink/ \ 21 22 samsung/ \ 22 23 st/ \ 23 24 ti/
+11
drivers/phy/ralink/Kconfig
··· 1 + # 2 + # PHY drivers for Ralink platforms. 3 + # 4 + config PHY_RALINK_USB 5 + tristate "Ralink USB PHY driver" 6 + depends on RALINK || COMPILE_TEST 7 + select GENERIC_PHY 8 + select MFD_SYSCON 9 + help 10 + This option enables support for the Ralink USB PHY found inside 11 + RT3352, MT7620, MT7628 and MT7688.
+1
drivers/phy/ralink/Makefile
··· 1 + obj-$(CONFIG_PHY_RALINK_USB) += phy-ralink-usb.o