mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 10:00:53 +07:00
ba8b0ee81f
It adds inno-usb2-phy driver for hi3798cv200 SoC USB 2.0 support. One inno-usb2-phy device can support up to two PHY ports. While there is device level reference clock and power reset to be controlled, each PHY port has its own utmi reset that needs to assert/de-assert as needed. Hi3798cv200 needs to access PHY port0 register via particular peripheral syscon controller register to control PHY, like turning on PHY clock. Signed-off-by: Pengcheng Li <lpc.li@hisilicon.com> Signed-off-by: Jiancheng Xue <xuejiancheng@hisilicon.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
#
|
|
# Phy drivers for Hisilicon platforms
|
|
#
|
|
config PHY_HI6220_USB
|
|
tristate "hi6220 USB PHY support"
|
|
depends on (ARCH_HISI && ARM64) || COMPILE_TEST
|
|
depends on HAS_IOMEM
|
|
select GENERIC_PHY
|
|
select MFD_SYSCON
|
|
help
|
|
Enable this to support the HISILICON HI6220 USB PHY.
|
|
|
|
To compile this driver as a module, choose M here.
|
|
|
|
config PHY_HISTB_COMBPHY
|
|
tristate "HiSilicon STB SoCs COMBPHY support"
|
|
depends on (ARCH_HISI && ARM64) || COMPILE_TEST
|
|
select GENERIC_PHY
|
|
select MFD_SYSCON
|
|
help
|
|
Enable this to support the HISILICON STB SoCs COMBPHY.
|
|
If unsure, say N.
|
|
|
|
config PHY_HISI_INNO_USB2
|
|
tristate "HiSilicon INNO USB2 PHY support"
|
|
depends on (ARCH_HISI && ARM64) || COMPILE_TEST
|
|
select GENERIC_PHY
|
|
select MFD_SYSCON
|
|
help
|
|
Support for INNO USB2 PHY on HiSilicon SoCs. This Phy supports
|
|
USB 1.5Mb/s, USB 12Mb/s, USB 480Mb/s speeds. It supports one
|
|
USB host port to accept one USB device.
|
|
|
|
config PHY_HIX5HD2_SATA
|
|
tristate "HIX5HD2 SATA PHY Driver"
|
|
depends on ARCH_HIX5HD2 && OF && HAS_IOMEM
|
|
select GENERIC_PHY
|
|
select MFD_SYSCON
|
|
help
|
|
Support for SATA PHY on Hisilicon hix5hd2 Soc.
|